From d16b807c9eddbf7bb08e72692e2b51d44beabffa Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Wed, 30 Jul 2025 16:32:29 -0400 Subject: [PATCH 01/14] moving atn to python --- .gitignore | 7 +- .../atn_satellite_telemetry_netCDF2DwC.qmd | 10 +- .../convert_ATNnc2DwC.ipynb | 3301 +++++++++++++++++ ...seal_trajectory_20180418-20180526_emof.csv | 3 + ...eal_trajectory_20180418-20180526_event.csv | 2 + ...rajectory_20180418-20180526_occurrence.csv | 6 + .../data/dwc/137491/eml.xml | 291 ++ ...rajectory_20140426-20140426_occurrence.csv | 5 + .../data/dwc/137494/eml.xml | 291 ++ ...eal_trajectory_20110618-20120314_event.csv | 2 + ...rajectory_20110618-20120314_occurrence.csv | 1219 ++++++ .../data/dwc/38553/eml.xml | 291 ++ .../data/dwc/atn_45866_emof.csv | 2 - .../data/dwc/atn_45866_occurrence.csv | 18 - .../templates/eml.xml.j2 | 210 ++ 15 files changed, 5636 insertions(+), 22 deletions(-) create mode 100644 datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml create mode 100644 datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv create mode 100644 datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv create mode 100644 datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml delete mode 100644 datasets/atn_satellite_telemetry/data/dwc/atn_45866_emof.csv delete mode 100644 datasets/atn_satellite_telemetry/data/dwc/atn_45866_occurrence.csv create mode 100644 datasets/atn_satellite_telemetry/templates/eml.xml.j2 diff --git a/.gitignore b/.gitignore index 379ad33..0d8c027 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,9 @@ .DS_Store .Rhistory *.ipynb_checkpoints* -.idea \ No newline at end of file +.idea +datasets/atn_satellite_telemetry/data/src/ +datasets/atn_satellite_telemetry/data/dwc/* +!datasets/atn_satellite_telemetry/data/dwc/137491/ +!datasets/atn_satellite_telemetry/data/dwc/137494/ +!datasets/atn_satellite_telemetry/data/dwc/38553/ \ No newline at end of file diff --git a/datasets/atn_satellite_telemetry/atn_satellite_telemetry_netCDF2DwC.qmd b/datasets/atn_satellite_telemetry/atn_satellite_telemetry_netCDF2DwC.qmd index 12154c3..f634d9d 100644 --- a/datasets/atn_satellite_telemetry/atn_satellite_telemetry_netCDF2DwC.qmd +++ b/datasets/atn_satellite_telemetry/atn_satellite_telemetry_netCDF2DwC.qmd @@ -202,7 +202,7 @@ platform_id_tbl <- metadata %>% dplyr::filter(variable == "NC_GLOBAL") %>% dplyr platform_id <- chartr(" ", "_", platform_id_tbl$value) occurrencedf$organismID <- paste(platform_id , common_name, sep = "_") -# occurrenceID - {eventDate}_{depth}_{common_name} +# occurrenceID - ioos_atn_{eventDate}_{depth}_{common_name} occurrencedf$occurrenceID <- sub(" ", "_", paste("ioos_atn", occurrencedf$eventDate, atn_tbl$z, common_name, sep = "_")) # geodeticDatum @@ -285,13 +285,17 @@ The next step below this, we filter out only the first observation of the hour. occurrencedf <- occurrencedf %>% arrange(eventDate) occurrencedf <- occurrencedf %>% + mutate(eventDateHrs = format(as.POSIXct(eventDate, format="%Y-%m-%dT%H:%M:%SZ"),"%Y-%m-%dT%H") ) %>% + add_count(eventDateHrs) %>% + mutate(dataGeneralizations = case_when(n == 1 ~ "", TRUE ~ paste("first of ", n ,"records") ) ) %>% + select(-n) occurrencedf @@ -431,6 +435,7 @@ emof_data <- #var_names %>% c("animal_length", "animal_length_2", "animal_weight") %>% + purrr::map_df(function(x) { list(measurementValue = ncvar_get( nc, x), measurementType = ncatt_get( nc, x)$long_name, @@ -442,8 +447,11 @@ emof_data <- #var_names %>% emofdf <- occurrencedf %>% + filter(basisOfRecord == 'HumanObservation') %>% + select(organismID, eventID, occurrenceID) %>% + cbind(emof_data) str(emofdf) diff --git a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb new file mode 100644 index 0000000..b9a3b23 --- /dev/null +++ b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb @@ -0,0 +1,3301 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "NxGSbpxdStLu" + }, + "source": [ + "Gemini prompt:\n", + "\n", + "> Using python, can you download the .nc files found at https://www.ncei.noaa.gov/data/oceans/ioos/atn/california_state_university_long_beach/ and convert them to the Darwin Core standard? Assign an occurrence as the first detection per location per hour." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "id": "0JvPXasXc432" + }, + "outputs": [], + "source": [ + "import os\n", + "import glob\n", + "import requests\n", + "from bs4 import BeautifulSoup\n", + "import pandas as pd\n", + "from urllib.parse import urljoin, urlparse\n", + "import xarray as xr\n", + "import netCDF4\n", + "from geopy.geocoders import Nominatim\n", + "import re\n", + "#import pyobistools" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "xtUi2y_3cwZq" + }, + "source": [ + "## Create a function to recursively download files" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "id": "puONkrPNceM5" + }, + "outputs": [], + "source": [ + "def recursive_wget(url, output_dir):\n", + " \"\"\"\n", + " Recursively downloads files from a given URL to a specified output directory,\n", + " mirroring the directory structure of the website.\n", + "\n", + " Args:\n", + " url (str): The URL to start downloading from.\n", + " output_dir (str): The local directory to save files to.\n", + " \"\"\"\n", + " print(f\"Accessing: {url}\")\n", + " try:\n", + " # --- Create the output directory if it doesn't exist ---\n", + " if not os.path.exists(output_dir):\n", + " os.makedirs(output_dir)\n", + " print(f\"Created directory: {output_dir}\")\n", + "\n", + " # --- Send a GET request and parse the HTML ---\n", + " response = requests.get(url)\n", + " # Raise an exception for bad status codes (like 404 Not Found)\n", + " response.raise_for_status()\n", + " soup = BeautifulSoup(response.text, 'html.parser')\n", + "\n", + " # --- Find all links on the page ---\n", + " for link in soup.find_all('a'):\n", + " href = link.get('href')\n", + "\n", + " # --- Skip invalid or parent directory links ---\n", + " if not href or href.startswith('?') or href.startswith('/') or '..' in href:\n", + " continue\n", + "\n", + " # --- Construct the full, absolute URL for the link ---\n", + " absolute_url = urljoin(url, href)\n", + "\n", + " # Get the path component of the URL to create local directories/files\n", + " path = urlparse(absolute_url).path\n", + " # Create a valid local path from the last part of the URL path\n", + " local_path = os.path.join(output_dir, os.path.basename(path))\n", + "\n", + " # --- If the link points to a directory, recurse into it ---\n", + " if href.endswith('/'):\n", + " print(f\"\\nEntering directory: {absolute_url}\")\n", + " # Call the function again for the new directory\n", + " recursive_wget(absolute_url, local_path)\n", + " # --- If the link points to a file, download it ---\n", + " else:\n", + " download_file(absolute_url, local_path)\n", + "\n", + " except requests.exceptions.HTTPError as e:\n", + " print(f\"HTTP Error accessing URL {url}: {e}\")\n", + " except requests.exceptions.RequestException as e:\n", + " print(f\"Error accessing URL {url}: {e}\")\n", + " except Exception as e:\n", + " print(f\"An unexpected error occurred: {e}\")\n", + "\n", + "\n", + "def download_file(url, local_path):\n", + " \"\"\"\n", + " Downloads a single file from a URL and saves it to a local path.\n", + "\n", + " Args:\n", + " url (str): The URL of the file to download.\n", + " local_path (str): The local path where the file will be saved.\n", + " \"\"\"\n", + " try:\n", + " print(f\" Downloading file: {os.path.basename(local_path)}\")\n", + " # Use stream=True to efficiently download large files\n", + " with requests.get(url, stream=True) as r:\n", + " r.raise_for_status()\n", + " # Open the file in binary write mode\n", + " with open(local_path, 'wb') as f:\n", + " # Write the file in chunks\n", + " for chunk in r.iter_content(chunk_size=8192):\n", + " f.write(chunk)\n", + " # print(f\" Successfully downloaded {os.path.basename(local_path)}\")\n", + " except requests.exceptions.RequestException as e:\n", + " print(f\" Failed to download {url}: {e}\")\n", + " except IOError as e:\n", + " print(f\" Failed to write file {local_path}: {e}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "sCEbQSINcjQm" + }, + "source": [ + "## Execute download" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "3W39rehjcioS", + "outputId": "b1730911-fc6e-481a-c079-977dbaf17f0f" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "--- Starting Recursive Download ---\n", + "Source URL: https://www.ncei.noaa.gov/data/oceans/ioos/atn/\n", + "Local Directory: data/src/\n", + "\n", + "Accessing: https://www.ncei.noaa.gov/data/oceans/ioos/atn/\n", + " Downloading file: ACCESSION_UPDATE_LOG.TXT\n", + "\n", + "Entering directory: https://www.ncei.noaa.gov/data/oceans/ioos/atn/california_state_university_long_beach/\n", + "Accessing: https://www.ncei.noaa.gov/data/oceans/ioos/atn/california_state_university_long_beach/\n", + " Downloading file: atn_45866_great-white-shark_trajectory_20090923-20091123.nc\n", + " Downloading file: atn_45869_great-white-shark_trajectory_20090923-20091213.nc\n", + "\n", + "Entering directory: https://www.ncei.noaa.gov/data/oceans/ioos/atn/cascadia_research_collective/\n", + "Accessing: https://www.ncei.noaa.gov/data/oceans/ioos/atn/cascadia_research_collective/\n", + " Downloading file: atn_53631_false-killer-whale_trajectory_20100927-20101001.nc\n", + " Downloading file: atn_53644_false-killer-whale_trajectory_20100927-20101118.nc\n", + " Downloading file: atn_53652_false-killer-whale_trajectory_20101023-20101213.nc\n", + " Downloading file: atn_77250_false-killer-whale_trajectory_20070816-20070830.nc\n", + " Downloading file: atn_77250_false-killer-whale_trajectory_20080422-20080513.nc\n", + " Downloading file: atn_77251_false-killer-whale_trajectory_20070816-20070818.nc\n", + " Downloading file: atn_77252_false-killer-whale_trajectory_20070816-20070917.nc\n", + " Downloading file: atn_77252_false-killer-whale_trajectory_20080727-20080915.nc\n", + " Downloading file: atn_77253_false-killer-whale_trajectory_20080727-20080824.nc\n", + " Downloading file: atn_85567_false-killer-whale_trajectory_20081211-20090203.nc\n", + " Downloading file: atn_85568_short-finned-pilot-whale_trajectory_20080705-20080802.nc\n", + " Downloading file: atn_85586_false-killer-whale_trajectory_20080717-20080821.nc\n", + " Downloading file: atn_85587_false-killer-whale_trajectory_20080717-20080806.nc\n", + " Downloading file: atn_85588_false-killer-whale_trajectory_20080717-20080911.nc\n", + " Downloading file: atn_85589_false-killer-whale_trajectory_20080717-20080723.nc\n", + " Downloading file: atn_85590_false-killer-whale_trajectory_20080717-20081001.nc\n", + " Downloading file: atn_94793_false-killer-whale_trajectory_20091018-20091227.nc\n", + " Downloading file: atn_94804_false-killer-whale_trajectory_20101016-20101029.nc\n", + " Downloading file: atn_94808_false-killer-whale_trajectory_20091014-20091025.nc\n", + " Downloading file: atn_94811_false-killer-whale_trajectory_20091006-20100103.nc\n", + " Downloading file: atn_94812_false-killer-whale_trajectory_20091015-20100122.nc\n", + " Downloading file: atn_94813_false-killer-whale_trajectory_20091017-20091117.nc\n", + " Downloading file: atn_94818_false-killer-whale_trajectory_20091211-20100320.nc\n", + " Downloading file: atn_94819_false-killer-whale_trajectory_20091211-20091227.nc\n", + " Downloading file: atn_94820_false-killer-whale_trajectory_20091219-20100403.nc\n", + " Downloading file: atn_94821_blainvilles-beaked-whale_trajectory_20091221-20100111.nc\n", + " Downloading file: atn_94822_false-killer-whale_trajectory_20091219-20100129.nc\n", + " Downloading file: atn_98364_false-killer-whale_trajectory_20131023-20140223.nc\n", + " Downloading file: atn_98365_false-killer-whale_trajectory_20131023-20131107.nc\n", + "\n", + "Entering directory: https://www.ncei.noaa.gov/data/oceans/ioos/atn/marine_mammal_laboratory_noaa_alaska_fisheries_science_center/\n", + "Accessing: https://www.ncei.noaa.gov/data/oceans/ioos/atn/marine_mammal_laboratory_noaa_alaska_fisheries_science_center/\n", + " Downloading file: atn_37515_spotted-seal_trajectory_20100522-20110423.nc\n", + " Downloading file: atn_37909_spotted-seal_trajectory_20140427-20140921.nc\n", + " Downloading file: atn_38549_spotted-seal_trajectory_20140429-20140613.nc\n", + " Downloading file: atn_39482_spotted-seal_trajectory_20140427-20141022.nc\n", + " Downloading file: atn_39486_ribbon-seal_trajectory_20100517-20100917.nc\n", + " Downloading file: atn_39490_ribbon-seal_trajectory_20140426-20140526.nc\n", + " Downloading file: atn_39491_ribbon-seal_trajectory_20100516-20100518.nc\n", + " Downloading file: atn_39496_ribbon-seal_trajectory_20100523-20101216.nc\n", + " Downloading file: atn_39498_ribbon-seal_trajectory_20140427-20140509.nc\n", + " Downloading file: atn_39499_ribbon-seal_trajectory_20140419-20140428.nc\n", + " Downloading file: atn_40857_ribbon-seal_trajectory_20100523-20110408.nc\n", + " Downloading file: atn_40858_ribbon-seal_trajectory_20140421-20140426.nc\n", + " Downloading file: atn_40862_ribbon-seal_trajectory_20140420-20140428.nc\n", + " Downloading file: atn_57998_ribbon-seal_trajectory_20050525-20060508.nc\n", + " Downloading file: atn_57999_spotted-seal_trajectory_20050925-20060521.nc\n", + " Downloading file: atn_58000_ribbon-seal_trajectory_20050601-20060403.nc\n", + " Downloading file: atn_58001_spotted-seal_trajectory_20050926-20051215.nc\n", + " Downloading file: atn_58002_spotted-seal_trajectory_20050926-20051223.nc\n", + " Downloading file: atn_58003_spotted-seal_trajectory_20050928-20060428.nc\n", + " Downloading file: atn_58005_ribbon-seal_trajectory_20050601-20060508.nc\n", + " Downloading file: atn_58006_ribbon-seal_trajectory_20050602-20060220.nc\n", + " Downloading file: atn_58007_ribbon-seal_trajectory_20050602-20050603.nc\n", + " Downloading file: atn_58008_ribbon-seal_trajectory_20050602-20060508.nc\n", + " Downloading file: atn_58009_ribbon-seal_trajectory_20050606-20051215.nc\n", + " Downloading file: atn_58010_ribbon-seal_trajectory_20050607-20051213.nc\n", + " Downloading file: atn_58011_ribbon-seal_trajectory_20050602-20050604.nc\n", + " Downloading file: atn_58012_ribbon-seal_trajectory_20050607-20060421.nc\n", + " Downloading file: atn_58014_spotted-seal_trajectory_20050929-20060329.nc\n", + " Downloading file: atn_62755_spotted-seal_trajectory_20060424-20060506.nc\n", + " Downloading file: atn_62756_spotted-seal_trajectory_20060427-20060513.nc\n", + " Downloading file: atn_64451_spotted-seal_trajectory_20090518-20090612.nc\n", + " Downloading file: atn_64452_spotted-seal_trajectory_20090528-20090612.nc\n", + " Downloading file: atn_64453_ribbon-seal_trajectory_20090606-20090612.nc\n", + " Downloading file: atn_64455_spotted-seal_trajectory_20090517-20100430.nc\n", + " Downloading file: atn_64457_ribbon-seal_trajectory_20090603-20090613.nc\n", + " Downloading file: atn_64460_spotted-seal_trajectory_20090518-20090618.nc\n", + " Downloading file: atn_64461_ribbon-seal_trajectory_20090607-20100524.nc\n", + " Downloading file: atn_64463_spotted-seal_trajectory_20090528-20090620.nc\n", + " Downloading file: atn_64464_ribbon-seal_trajectory_20090531-20100506.nc\n", + " Downloading file: atn_64465_ribbon-seal_trajectory_20090602-20090607.nc\n", + " Downloading file: atn_64467_ribbon-seal_trajectory_20090606-20100531.nc\n", + " Downloading file: atn_64469_ribbon-seal_trajectory_20090607-20110526.nc\n", + " Downloading file: atn_64471_ribbon-seal_trajectory_20090605-20100522.nc\n", + " Downloading file: atn_64472_ribbon-seal_trajectory_20090602-20090607.nc\n", + " Downloading file: atn_64473_spotted-seal_trajectory_20090518-20090618.nc\n", + " Downloading file: atn_64476_ribbon-seal_trajectory_20090528-20100603.nc\n", + " Downloading file: atn_64477_spotted-seal_trajectory_20090528-20100422.nc\n", + " Downloading file: atn_64478_ribbon-seal_trajectory_20090531-20091230.nc\n", + " Downloading file: atn_64479_ribbon-seal_trajectory_20090607-20100126.nc\n", + " Downloading file: atn_64481_ribbon-seal_trajectory_20090604-20091221.nc\n", + " Downloading file: atn_64482_ribbon-seal_trajectory_20090603-20100514.nc\n", + " Downloading file: atn_64483_ribbon-seal_trajectory_20100505-20100928.nc\n", + " Downloading file: atn_64484_ribbon-seal_trajectory_20090530-20100326.nc\n", + " Downloading file: atn_64485_spotted-seal_trajectory_20090603-20091023.nc\n", + " Downloading file: atn_64486_ribbon-seal_trajectory_20090601-20100426.nc\n", + " Downloading file: atn_64488_spotted-seal_trajectory_20090606-20100310.nc\n", + " Downloading file: atn_64489_ribbon-seal_trajectory_20090529-20100502.nc\n", + " Downloading file: atn_64490_ribbon-seal_trajectory_20090531-20100105.nc\n", + " Downloading file: atn_64491_ribbon-seal_trajectory_20090529-20090617.nc\n", + " Downloading file: atn_64492_ribbon-seal_trajectory_20090602-20100116.nc\n", + " Downloading file: atn_64706_ribbon-seal_trajectory_20060427-20060520.nc\n", + " Downloading file: atn_64707_ribbon-seal_trajectory_20060502-20060505.nc\n", + " Downloading file: atn_64708_ribbon-seal_trajectory_20060503-20060527.nc\n", + " Downloading file: atn_64709_ribbon-seal_trajectory_20060502-20060511.nc\n", + " Downloading file: atn_64710_ribbon-seal_trajectory_20060503-20060520.nc\n", + " Downloading file: atn_64712_spotted-seal_trajectory_20060503-20060506.nc\n", + " Downloading file: atn_64713_spotted-seal_trajectory_20060503-20060518.nc\n", + " Downloading file: atn_64714_spotted-seal_trajectory_20060501-20060513.nc\n", + " Downloading file: atn_64715_ribbon-seal_trajectory_20060503-20060527.nc\n", + " Downloading file: atn_64717_spotted-seal_trajectory_20060503-20060516.nc\n", + " Downloading file: atn_64899_ribbon-seal_trajectory_20090604-20090612.nc\n", + " Downloading file: atn_65922_ribbon-seal_trajectory_20060506-20060508.nc\n", + " Downloading file: atn_65924_ribbon-seal_trajectory_20060502-20060618.nc\n", + " Downloading file: atn_65925_ribbon-seal_trajectory_20060505-20060525.nc\n", + " Downloading file: atn_65926_ribbon-seal_trajectory_20060503-20060516.nc\n", + " Downloading file: atn_65927_ribbon-seal_trajectory_20070522-20080107.nc\n", + " Downloading file: atn_65928_ribbon-seal_trajectory_20070517-20080402.nc\n", + " Downloading file: atn_65931_ribbon-seal_trajectory_20070522-20080130.nc\n", + " Downloading file: atn_65932_spotted-seal_trajectory_20060506-20060620.nc\n", + " Downloading file: atn_65933_spotted-seal_trajectory_20060427-20060511.nc\n", + " Downloading file: atn_66928_ribbon-seal_trajectory_20140426-20140518.nc\n", + " Downloading file: atn_66949_ribbon-seal_trajectory_20140415-20140503.nc\n", + " Downloading file: atn_66973_spotted-seal_trajectory_20140427-20141222.nc\n", + " Downloading file: atn_66978_spotted-seal_trajectory_20140429-20141201.nc\n", + " Downloading file: atn_66989_ribbon-seal_trajectory_20140428-20140518.nc\n", + " Downloading file: atn_66990_ribbon-seal_trajectory_20140428-20140501.nc\n", + " Downloading file: atn_67000_spotted-seal_trajectory_20140429-20140721.nc\n", + " Downloading file: atn_67003_ribbon-seal_trajectory_20140428-20140519.nc\n", + " Downloading file: atn_67026_ribbon-seal_trajectory_20140427-20141108.nc\n", + " Downloading file: atn_74629_ribbon-seal_trajectory_20070529-20080404.nc\n", + " Downloading file: atn_74631_spotted-seal_trajectory_20090606-20100504.nc\n", + " Downloading file: atn_74633_spotted-seal_trajectory_20090518-20090731.nc\n", + " Downloading file: atn_74634_ribbon-seal_trajectory_20090602-20100222.nc\n", + " Downloading file: atn_74635_spotted-seal_trajectory_20090523-20091028.nc\n", + " Downloading file: atn_74636_ribbon-seal_trajectory_20090528-20100209.nc\n", + " Downloading file: atn_74637_spotted-seal_trajectory_20100506-20110410.nc\n", + " Downloading file: atn_74638_ribbon-seal_trajectory_20100510-20100605.nc\n", + " Downloading file: atn_74639_ribbon-seal_trajectory_20070524-20070902.nc\n", + " Downloading file: atn_74640_ribbon-seal_trajectory_20070529-20071022.nc\n", + " Downloading file: atn_74641_ribbon-seal_trajectory_20070527-20071103.nc\n", + " Downloading file: atn_74642_spotted-seal_trajectory_20070508-20071123.nc\n", + " Downloading file: atn_74643_ribbon-seal_trajectory_20070525-20080502.nc\n", + " Downloading file: atn_74644_spotted-seal_trajectory_20070507-20080303.nc\n", + " Downloading file: atn_74645_ribbon-seal_trajectory_20070524-20070605.nc\n", + " Downloading file: atn_74646_ribbon-seal_trajectory_20070528-20100529.nc\n", + " Downloading file: atn_74647_ribbon-seal_trajectory_20070520-20080612.nc\n", + " Downloading file: atn_74648_ribbon-seal_trajectory_20070523-20080402.nc\n", + " Downloading file: atn_74649_ribbon-seal_trajectory_20070524-20070614.nc\n", + " Downloading file: atn_74650_ribbon-seal_trajectory_20070525-20080617.nc\n", + " Downloading file: atn_74651_ribbon-seal_trajectory_20070516-20080613.nc\n", + " Downloading file: atn_74652_ribbon-seal_trajectory_20070523-20080502.nc\n", + " Downloading file: atn_74653_ribbon-seal_trajectory_20070518-20100426.nc\n", + " Downloading file: atn_74654_spotted-seal_trajectory_20070520-20070713.nc\n", + " Downloading file: atn_74655_spotted-seal_trajectory_20070526-20080619.nc\n", + " Downloading file: atn_74656_spotted-seal_trajectory_20070524-20070613.nc\n", + " Downloading file: atn_74657_ribbon-seal_trajectory_20070518-20070608.nc\n", + " Downloading file: atn_74658_spotted-seal_trajectory_20070520-20070613.nc\n", + " Downloading file: atn_74662_ribbon-seal_trajectory_20070527-20070626.nc\n", + " Downloading file: atn_74664_ribbon-seal_trajectory_20070518-20080621.nc\n", + " Downloading file: atn_74665_ribbon-seal_trajectory_20070522-20080614.nc\n", + " Downloading file: atn_74666_spotted-seal_trajectory_20070524-20070629.nc\n", + " Downloading file: atn_74670_ribbon-seal_trajectory_20090609-20100607.nc\n", + " Downloading file: atn_74672_ribbon-seal_trajectory_20070527-20080622.nc\n", + " Downloading file: atn_74673_ribbon-seal_trajectory_20070510-20070611.nc\n", + " Downloading file: atn_74674_spotted-seal_trajectory_20070521-20090601.nc\n", + " Downloading file: atn_74677_ribbon-seal_trajectory_20070523-20090522.nc\n", + " Downloading file: atn_74679_ribbon-seal_trajectory_20070523-20070613.nc\n", + " Downloading file: atn_74681_spotted-seal_trajectory_20070424-20070701.nc\n", + " Downloading file: atn_74682_ribbon-seal_trajectory_20070526-20080610.nc\n", + " Downloading file: atn_74685_spotted-seal_trajectory_20070424-20070625.nc\n", + " Downloading file: atn_74688_ribbon-seal_trajectory_20070527-20071115.nc\n", + " Downloading file: atn_74689_spotted-seal_trajectory_20070507-20070901.nc\n", + " Downloading file: atn_74690_ribbon-seal_trajectory_20070505-20070521.nc\n", + " Downloading file: atn_74693_spotted-seal_trajectory_20070526-20080301.nc\n", + " Downloading file: atn_74698_ribbon-seal_trajectory_20070522-20070605.nc\n", + " Downloading file: atn_83881_ribbon-seal_trajectory_20080429-20080514.nc\n", + " Downloading file: atn_83885_spotted-seal_trajectory_20090606-20100612.nc\n", + " Downloading file: atn_83901_spotted-seal_trajectory_20090531-20090707.nc\n", + " Downloading file: atn_83902_ribbon-seal_trajectory_20090602-20100101.nc\n", + " Downloading file: atn_83905_ribbon-seal_trajectory_20090602-20090607.nc\n", + " Downloading file: atn_83908_spotted-seal_trajectory_20090414-20100507.nc\n", + " Downloading file: atn_83912_ribbon-seal_trajectory_20090530-20100520.nc\n", + " Downloading file: atn_83913_spotted-seal_trajectory_20090606-20090902.nc\n", + " Downloading file: atn_83916_spotted-seal_trajectory_20090529-20090707.nc\n", + " Downloading file: atn_83918_ribbon-seal_trajectory_20090606-20100308.nc\n", + " Downloading file: atn_83922_spotted-seal_trajectory_20090414-20120528.nc\n", + " Downloading file: atn_83923_ribbon-seal_trajectory_20090604-20090609.nc\n", + " Downloading file: atn_83926_spotted-seal_trajectory_20090414-20100512.nc\n", + " Downloading file: atn_85853_ribbon-seal_trajectory_20090605-20100318.nc\n", + " Downloading file: atn_85854_ribbon-seal_trajectory_20090607-20090926.nc\n", + " Downloading file: atn_85855_spotted-seal_trajectory_20100508-20101031.nc\n", + " Downloading file: atn_85857_spotted-seal_trajectory_20090607-20100130.nc\n", + " Downloading file: atn_85858_spotted-seal_trajectory_20100505-20110214.nc\n", + " Downloading file: atn_85859_spotted-seal_trajectory_20090531-20100201.nc\n", + " Downloading file: atn_85860_ribbon-seal_trajectory_20090604-20090801.nc\n", + " Downloading file: atn_85861_ribbon-seal_trajectory_20090602-20090925.nc\n", + " Downloading file: atn_85862_spotted-seal_trajectory_20090519-20090810.nc\n", + " Downloading file: atn_85863_ribbon-seal_trajectory_20090602-20100127.nc\n", + " Downloading file: atn_85864_spotted-seal_trajectory_20090519-20091216.nc\n", + " Downloading file: atn_85865_ribbon-seal_trajectory_20100517-20110204.nc\n", + " Downloading file: atn_85866_spotted-seal_trajectory_20090529-20090704.nc\n", + " Downloading file: atn_85867_spotted-seal_trajectory_20090609-20090929.nc\n", + " Downloading file: atn_85868_ribbon-seal_trajectory_20090603-20100223.nc\n", + " Downloading file: atn_85869_spotted-seal_trajectory_20100506-20110108.nc\n", + " Downloading file: atn_85870_ribbon-seal_trajectory_20090609-20091228.nc\n", + " Downloading file: atn_85871_spotted-seal_trajectory_20090523-20100228.nc\n", + " Downloading file: atn_85872_ribbon-seal_trajectory_20090607-20091204.nc\n", + " Downloading file: atn_85873_ribbon-seal_trajectory_20100503-20100601.nc\n", + " Downloading file: atn_85874_ribbon-seal_trajectory_20090602-20090812.nc\n", + " Downloading file: atn_85875_spotted-seal_trajectory_20090531-20090921.nc\n", + " Downloading file: atn_85876_ribbon-seal_trajectory_20090527-20100325.nc\n", + " Downloading file: atn_85877_spotted-seal_trajectory_20100506-20100626.nc\n", + " Downloading file: atn_85878_spotted-seal_trajectory_20090608-20100320.nc\n", + " Downloading file: atn_85879_ribbon-seal_trajectory_20100509-20100630.nc\n", + " Downloading file: atn_85880_ribbon-seal_trajectory_20100514-20101224.nc\n", + " Downloading file: atn_85881_ribbon-seal_trajectory_20090604-20100330.nc\n", + " Downloading file: atn_99277_ribbon-seal_trajectory_20140412-20140503.nc\n", + " Downloading file: atn_99279_ribbon-seal_trajectory_20140426-20140513.nc\n", + " Downloading file: atn_99280_ribbon-seal_trajectory_20140428-20140506.nc\n", + " Downloading file: atn_99282_ribbon-seal_trajectory_20140428-20140514.nc\n", + " Downloading file: atn_99283_ribbon-seal_trajectory_20100509-20110518.nc\n", + " Downloading file: atn_99288_spotted-seal_trajectory_20100522-20100901.nc\n", + " Downloading file: atn_99292_ribbon-seal_trajectory_20100523-20100612.nc\n", + " Downloading file: atn_99293_ribbon-seal_trajectory_20100509-20100801.nc\n", + " Downloading file: atn_99295_spotted-seal_trajectory_20100523-20110730.nc\n", + " Downloading file: atn_99297_ribbon-seal_trajectory_20100515-20100530.nc\n", + " Downloading file: atn_99298_ribbon-seal_trajectory_20100517-20120530.nc\n", + " Downloading file: atn_99299_ribbon-seal_trajectory_20100505-20100605.nc\n", + " Downloading file: atn_99300_ribbon-seal_trajectory_20100517-20110513.nc\n", + " Downloading file: atn_99301_ribbon-seal_trajectory_20100523-20110201.nc\n", + " Downloading file: atn_99305_spotted-seal_trajectory_20100522-20100730.nc\n", + " Downloading file: atn_99306_ribbon-seal_trajectory_20100523-20100530.nc\n", + " Downloading file: atn_99308_ribbon-seal_trajectory_20100517-20110607.nc\n", + " Downloading file: atn_99309_ribbon-seal_trajectory_20100514-20101215.nc\n", + " Downloading file: atn_99312_ribbon-seal_trajectory_20100516-20100718.nc\n", + " Downloading file: atn_131373_ribbon-seal_trajectory_20140428-20141213.nc\n", + " Downloading file: atn_137487_ribbon-seal_trajectory_20140412-20140413.nc\n", + " Downloading file: atn_137490_spotted-seal_trajectory_20160414-20160414.nc\n", + " Downloading file: atn_137491_spotted-seal_trajectory_20180418-20180526.nc\n", + " Downloading file: atn_137494_ribbon-seal_trajectory_20140426-20140426.nc\n", + " Downloading file: atn_137495_ribbon-seal_trajectory_20140426-20140427.nc\n", + " Downloading file: atn_137495_spotted-seal_trajectory_20170809-20180607.nc\n", + " Downloading file: atn_137497_spotted-seal_trajectory_20160412-20170721.nc\n", + " Downloading file: atn_137500_ribbon-seal_trajectory_20140426-20140427.nc\n", + " Downloading file: atn_137506_ribbon-seal_trajectory_20140421-20140421.nc\n", + " Downloading file: atn_137514_ribbon-seal_trajectory_20140419-20140420.nc\n", + " Downloading file: atn_137516_ribbon-seal_trajectory_20140420-20140420.nc\n", + " Downloading file: atn_141929_spotted-seal_trajectory_20160425-20160514.nc\n", + " Downloading file: atn_143947_spotted-seal_trajectory_20160414-20160623.nc\n", + " Downloading file: atn_143956_spotted-seal_trajectory_20180410-20180901.nc\n", + " Downloading file: atn_143966_ribbon-seal_trajectory_20160416-20160430.nc\n", + " Downloading file: atn_143979_spotted-seal_trajectory_20160414-20160422.nc\n", + " Downloading file: atn_143982_ribbon-seal_trajectory_20160423-20160510.nc\n", + " Downloading file: atn_143991_spotted-seal_trajectory_20160415-20160509.nc\n", + " Downloading file: atn_143994_spotted-seal_trajectory_20160423-20160516.nc\n", + " Downloading file: atn_144001_ribbon-seal_trajectory_20160413-20160427.nc\n", + " Downloading file: atn_144004_ribbon-seal_trajectory_20160421-20160424.nc\n", + " Downloading file: atn_144006_spotted-seal_trajectory_20160412-20160420.nc\n", + " Downloading file: atn_144009_spotted-seal_trajectory_20160414-20160510.nc\n", + " Downloading file: atn_144015_ribbon-seal_trajectory_20160416-20160418.nc\n", + " Downloading file: atn_144017_ribbon-seal_trajectory_20160425-20160512.nc\n", + " Downloading file: atn_160948_ribbon-seal_trajectory_20160421-20170519.nc\n", + " Downloading file: atn_160951_spotted-seal_trajectory_20160817-20170828.nc\n", + " Downloading file: atn_160954_spotted-seal_trajectory_20160814-20161219.nc\n", + " Downloading file: atn_160955_ribbon-seal_trajectory_20160413-20170605.nc\n", + " Downloading file: atn_160956_spotted-seal_trajectory_20160415-20160622.nc\n", + " Downloading file: atn_160957_spotted-seal_trajectory_20170816-20171125.nc\n", + " Downloading file: atn_160960_spotted-seal_trajectory_20160817-20170729.nc\n", + " Downloading file: atn_160965_ribbon-seal_trajectory_20160416-20160725.nc\n", + " Downloading file: atn_160966_spotted-seal_trajectory_20160423-20170120.nc\n", + " Downloading file: atn_160968_ribbon-seal_trajectory_20160425-20160726.nc\n", + " Downloading file: atn_160969_ribbon-seal_trajectory_20160416-20161230.nc\n", + " Downloading file: atn_160972_spotted-seal_trajectory_20170816-20171121.nc\n", + " Downloading file: atn_160973_ribbon-seal_trajectory_20160423-20170615.nc\n", + " Downloading file: atn_160975_ribbon-seal_trajectory_20160426-20170513.nc\n", + " Downloading file: atn_160977_spotted-seal_trajectory_20160425-20161009.nc\n", + " Downloading file: atn_164869_spotted-seal_trajectory_20180420-20180514.nc\n", + " Downloading file: atn_174785_spotted-seal_trajectory_20180420-20180605.nc\n", + " Downloading file: atn_174786_spotted-seal_trajectory_20180414-20180511.nc\n", + " Downloading file: atn_174787_spotted-seal_trajectory_20180410-20180610.nc\n", + " Downloading file: atn_174790_spotted-seal_trajectory_20180418-20180527.nc\n", + " Downloading file: atn_174805_spotted-seal_trajectory_20180420-20180523.nc\n", + " Downloading file: atn_174821_spotted-seal_trajectory_20180420-20180618.nc\n", + " Downloading file: atn_174822_spotted-seal_trajectory_20180414-20181103.nc\n", + "\n", + "Entering directory: https://www.ncei.noaa.gov/data/oceans/ioos/atn/noaa_alaska_fisheries_science_center/\n", + "Accessing: https://www.ncei.noaa.gov/data/oceans/ioos/atn/noaa_alaska_fisheries_science_center/\n", + " Downloading file: atn_38553_bearded-seal_trajectory_20110618-20120314.nc\n", + " Downloading file: atn_39489_bearded-seal_trajectory_20110616-20120401.nc\n", + " Downloading file: atn_64459_bearded-seal_trajectory_20090626-20120518.nc\n", + " Downloading file: atn_64462_bearded-seal_trajectory_20090623-20120612.nc\n", + " Downloading file: atn_66971_bearded-seal_trajectory_20110617-20120131.nc\n", + " Downloading file: atn_66983_bearded-seal_trajectory_20110618-20140626.nc\n", + " Downloading file: atn_67004_bearded-seal_trajectory_20120704-20130618.nc\n", + " Downloading file: atn_67007_bearded-seal_trajectory_20110616-20120813.nc\n", + " Downloading file: atn_74626_bearded-seal_trajectory_20090625-20100128.nc\n", + " Downloading file: atn_74627_bearded-seal_trajectory_20090623-20100318.nc\n", + " Downloading file: atn_74630_bearded-seal_trajectory_20090626-20100213.nc\n", + " Downloading file: atn_83904_bearded-seal_trajectory_20090625-20120612.nc\n", + " Downloading file: atn_99287_bearded-seal_trajectory_20120704-20130312.nc\n", + " Downloading file: atn_99310_bearded-seal_trajectory_20110617-20120606.nc\n", + "\n", + "--- Recursive Download Finished ---\n" + ] + } + ], + "source": [ + "# --- Main execution block ---\n", + "start_url = \"https://www.ncei.noaa.gov/data/oceans/ioos/atn/\"\n", + "# Create a base directory for all the downloads\n", + "download_directory = \"data/src/\"\n", + "\n", + "print(\"--- Starting Recursive Download ---\")\n", + "print(f\"Source URL: {start_url}\")\n", + "print(f\"Local Directory: {download_directory}\\n\")\n", + "\n", + "recursive_wget(start_url, download_directory)\n", + "\n", + "print(\"\\n--- Recursive Download Finished ---\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "id": "c9G3a6N2bMh2" + }, + "outputs": [], + "source": [ + "def create_dwc_occurrence(ds):\n", + "\n", + " dwc_df = pd.DataFrame()\n", + " dwc_df['occurrenceID'] = \"ioos_atn_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')+\"_\"+ds['z'].astype(str)+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", + " dwc_df['occurrenceStatus'] = 'present'\n", + " dwc_df['basisOfRecord'] = ds['type']\n", + " dwc_df['organismID'] = ds.platform_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", + " dwc_df['eventDate'] = ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')\n", + " dwc_df['decimalLatitude'] = ds['lat']\n", + " dwc_df['decimalLongitude'] = ds['lon']\n", + " dwc_df['geodeticDatum'] = ds.crs.epsg_code\n", + " dwc_df['scientificName'] = ds['taxon_name'].values.tolist()\n", + " dwc_df['scientificNameID'] = ds['taxon_lsid'].values.tolist()\n", + " dwc_df['eventID'] = ds.animal_common_name.replace(\" \",\"_\") +\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')\n", + " dwc_df['samplingProtocol'] = 'satellite telemetry'\n", + " dwc_df['kingdom'] = ds['animal'].attrs['kingdom']\n", + " dwc_df['taxonRank'] = ds['animal'].attrs['rank']\n", + " dwc_df['lifeStage'] = ds['animal_life_stage'].values.tolist()\n", + " dwc_df['sex'] = ds['animal_sex'].values.tolist()\n", + " dwc_df['associatedReferences'] = \"https://doi.org/10.25921/wp4e-ph20\"\n", + " dwc_df['minimumDepthInMeters'] = ds['z'].values.tolist()\n", + " dwc_df['maximumDepthInMeters'] = ds['z'].values.tolist()\n", + "\n", + " # set basisOfRecord\n", + " dwc_df.loc[dwc_df['basisOfRecord'] == 'User','basisOfRecord'] = 'HumanObservation'\n", + " dwc_df.loc[dwc_df['basisOfRecord'] == 'Argos','basisOfRecord'] = 'MachineObservation'\n", + "\n", + " # filter to respectable locations\n", + " dwc_df['location_class'] = ds['location_class'].to_series()\n", + "\n", + " dwc_df.drop(dwc_df.loc[\n", + " (dwc_df['location_class'] == 'A') |\n", + " (dwc_df['location_class'] == 'B') |\n", + " (dwc_df['location_class'] == 'Z')].index, inplace=True)\n", + "\n", + " # test using xarray\n", + " # ds['time'].where((ds['location_class'] != 'A') &\n", + " # (ds['location_class'] != 'B') &\n", + " # (ds['location_class'] != 'Z'),drop=True).values\n", + "\n", + " print(f\" Extracted {len(dwc_df)} occurrences with valid locations.\")\n", + "\n", + " # assign value to codes\n", + " dwc_df.loc[dwc_df['location_class'] == 'nan','location_class'] = 0\n", + " dwc_df.loc[dwc_df['location_class'] == 'G','location_class'] = 200\n", + " dwc_df.loc[dwc_df['location_class'] == '3','location_class'] = 250\n", + " dwc_df.loc[dwc_df['location_class'] == '2','location_class'] = 500\n", + " dwc_df.loc[dwc_df['location_class'] == '1','location_class'] = 1500\n", + " dwc_df.loc[dwc_df['location_class'] == '0','location_class'] = 10000\n", + "\n", + " # --- Define Occurrences: First detection per location per hour ---\n", + " dwc_df['event_hour'] = pd.to_datetime(dwc_df['eventDate']).dt.strftime('%Y-%m-%dT%H')\n", + " dwc_df.sort_values('event_hour', inplace=True)\n", + " duplicate_counts = dwc_df.groupby(by='event_hour').transform('size')\n", + " dwc_df['dataGeneralizations'] = f'first of ' + duplicate_counts.astype(str) + ' records.'\n", + " dwc_df.loc[dwc_df['dataGeneralizations']=='first of 1 records.','dataGeneralizations'] = ''\n", + " dwc_df = dwc_df.drop_duplicates(subset=['event_hour'], keep='first').copy()\n", + "\n", + " print(f\" Extracted {len(dwc_df)} occurrences to first row in hour.\")\n", + "\n", + " # --- Rename a and drop few columns --\n", + " dwc_df.rename(columns={'location_class': 'coordinateUncertaintyInMeters',\n", + " },\n", + " inplace=True)\n", + "\n", + " dwc_df.drop(columns=['event_hour'], inplace=True)\n", + "\n", + " return dwc_df\n", + "\n", + "\n", + "def create_dwc_event(dwc_df):\n", + "\n", + " # --- Processing for Event ---\n", + " event_df = dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation',\n", + " ['eventID','eventDate','decimalLatitude','decimalLongitude','geodeticDatum',\n", + " 'minimumDepthInMeters','maximumDepthInMeters']]\n", + "\n", + " # # initialize Nominatim API - not trusted enough yet\n", + " # # see https://nominatim.org/release-docs/develop/api/Reverse/\n", + " # geolocator = Nominatim(user_agent=\"my_geopy_app\")\n", + "\n", + " # lat = event_df['decimalLatitude'][0].astype(str)\n", + " # lon = event_df['decimalLongitude'][0].astype(str)\n", + "\n", + " # location = geolocator.reverse(lat+\",\"+lon)\n", + "\n", + " # event_df['countryCode'] = location.raw['address'].get('country_code').upper()\n", + "\n", + " event_df['countryCode'] = 'US'\n", + "\n", + " event_df['samplingProtocol'] = 'satellite telemetry'\n", + "\n", + " return event_df\n", + "\n", + "\n", + "def create_dwc_emof(ds, dwc_df):\n", + "\n", + " # --- Processing for emof ---\n", + " vars = list(ds.keys())\n", + " animal_vars = [x for x in vars if re.match(r'animal_(?!life_stage\\b|sex\\b).*',x)]\n", + " new_rows = pd.DataFrame()\n", + "\n", + " for animal_var in animal_vars:\n", + " row = pd.DataFrame({\n", + " 'measurementValue': ds[animal_var].values.tolist(),\n", + " 'measurementType': [f'{animal_var}: {ds[animal_var].long_name}'],\n", + " 'measurementMethod': ds[animal_var].attrs[animal_var],\n", + " 'measurementUnit': [ds[animal_var].units if 'units' in ds[animal_var].attrs else ''],\n", + " })\n", + " new_rows = pd.concat([new_rows,\n", + " row])\n", + "\n", + " emof_df = dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation',\n", + " ['organismID','occurrenceID','eventID']\n", + " ].merge(\n", + " new_rows,\n", + " left_index=True,\n", + " right_index=True)\n", + "\n", + " emof_df.dropna(axis=0, subset=['measurementValue'], inplace=True)\n", + "\n", + " return emof_df" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# EML generation\n", + "\n", + "# borrowed from https://gitlab.oceantrack.org/otn-partner-nodes/ipython-utilities/-/blob/main/dbtools/publish_to_obis.py?ref_type=heads\n", + "\n", + "from jinja2 import Template\n", + "import codecs\n", + "\n", + "def save_eml_file(eml_metadata:dict) -> str:\n", + " \"\"\"\n", + " Save EML dictionary in a file\n", + " Author: Jon Pye, Angela Dini\n", + " Maintainer: Angela Dini\n", + " :param eml_metadata: dictionary of EML metadata\n", + " :return: filepath of where the EML filepath will be\n", + " \"\"\"\n", + " # Write it out to the package\n", + " template_file = codecs.open('templates/eml.xml.j2', 'r', 'UTF-8').read()\n", + " template = Template(template_file)\n", + " result_string = template.render(eml_metadata)\n", + " eml_file = 'data/dwc/{ptt_id}/eml.xml'.format(**eml_metadata)\n", + " fh = codecs.open(eml_file, 'wb+', 'UTF-8')\n", + " fh.write(result_string)\n", + " fh.close()\n", + " eml_full_path = os.path.abspath(eml_file)\n", + " print(f\"EML metadata has been written to '{eml_full_path}'.\")\n", + " return eml_full_path\n", + "\n", + "def create_eml(ds):\n", + " eml_metadata = ds.attrs\n", + "\n", + " contributors = dict()\n", + " for attr in [x for x in ds.attrs if re.match(r'contributor_(?!role_vocabulary\\b).*',x)]:\n", + " contributors[attr] = ds.attrs[attr].split(\",\")\n", + "\n", + " contributors_list = [\n", + " {key: contributors[key][i] for key in contributors}\n", + " for i in range(len(next(iter(contributors.values()))))\n", + " ]\n", + "\n", + " other_meta = {\n", + " 'dataset_ipt_id': None,\n", + " 'dataset_short_name': ds.encoding.get('source').split(\"\\\\\")[-1].replace(\".nc\",\"\"),\n", + " 'data_manager_firstname': 'Mathew',\n", + " 'data_manager_lastname': 'Biddle',\n", + " 'data_manager_title': 'Physical Scientist',\n", + " 'data_manager_phone': '',\n", + " 'data_manager_email': 'mathew.biddle@noaa.gov',\n", + " 'contributors': contributors_list,\n", + " }\n", + "\n", + " eml_metadata.update(other_meta)\n", + "\n", + " save_eml_file(eml_metadata)\n", + " \n", + " return eml_metadata" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "id": "aD62GgzSS0zu" + }, + "outputs": [], + "source": [ + "def convert_to_dwc_individual(file_paths, output_dir=\"data/dwc\"):\n", + " \"\"\"\n", + " Converts a list of NetCDF files to individual Darwin Core Occurrence CSVs.\n", + "\n", + " An \"occurrence\" is the first detection of an animal at a specific\n", + " location within a given hour.\n", + "\n", + " Args:\n", + " file_paths (list): A list of paths to the .nc files.\n", + " output_dir (str): The directory to save the individual CSV files.\n", + " \"\"\"\n", + " print(f\"\\n--- 2. Starting Darwin Core Conversion (Individual Files) ---\")\n", + " if not os.path.exists(output_dir):\n", + " os.makedirs(output_dir)\n", + " print(f\"Created output directory: {output_dir}\")\n", + "\n", + " processed_count = 0\n", + "\n", + " for nc_file in file_paths:\n", + "\n", + " base_filename = os.path.basename(nc_file)\n", + "\n", + " if not os.path.exists(f\"{output_dir}/{base_filename.split('_')[1]}\"):\n", + " os.makedirs(f\"{output_dir}/{base_filename.split('_')[1]}\")\n", + " print(f\"Created output directory: {output_dir}/{base_filename.split('_')[1]}\")\n", + "\n", + " output_csv = os.path.join(output_dir, f\"{base_filename.split('_')[1]}/{os.path.splitext(base_filename)[0]}_occurrence.csv\")\n", + " print(f\"Processing {base_filename}...\")\n", + "\n", + " try:\n", + " with xr.open_dataset(nc_file, engine='netcdf4') as ds:\n", + " df = ds.to_dataframe().reset_index()\n", + "\n", + " print(f\"Found {len(df)} records.\")\n", + "\n", + " # --- Data Cleaning and Preparation ---\n", + " if 'lat' not in df.columns or 'lon' not in df.columns:\n", + " print(f\" Skipping {base_filename}: missing location data.\")\n", + " continue\n", + "\n", + " df.dropna(subset=['lat', 'lon', 'time'], inplace=True)\n", + " if df.empty:\n", + " print(f\" Skipping {base_filename}: no valid records.\")\n", + " continue\n", + "\n", + " # --- Map to Darwin Core Occurrence Terms ---\n", + " dwc_df = create_dwc_occurrence(ds)\n", + "\n", + " # only pick specific columns to save\n", + " cols = ['occurrenceID', 'occurrenceStatus', 'basisOfRecord',\n", + " 'organismID', 'eventDate', 'decimalLatitude',\n", + " 'decimalLongitude', 'geodeticDatum',\n", + " 'scientificName', 'scientificNameID', 'eventID',\n", + " 'samplingProtocol', 'kingdom', 'taxonRank', 'lifeStage',\n", + " 'sex', 'associatedReferences',\n", + " 'coordinateUncertaintyInMeters', 'dataGeneralizations']\n", + "\n", + " # Save the individual CSV\n", + " dwc_df.to_csv(output_csv, columns=cols, index=False)\n", + " print(f\" Saved data to '{output_csv}'\")\n", + "\n", + " # Create and save eml\n", + " create_eml(ds)\n", + "\n", + " processed_count += 1\n", + "\n", + " # --- Event and eMoF ---\n", + " # bail out if there are no HumanObservations\n", + " if len(dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation']) == 0:\n", + " print(f' no HumanObservation events found')\n", + " continue\n", + " else:\n", + "\n", + " print(f\" found {len(dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation'])} HumanObservations.\")\n", + "\n", + " event_df = create_dwc_event(dwc_df)\n", + "\n", + " event_df.to_csv(output_csv.replace(\"occurrence\",\"event\"), index=False)\n", + " print(f\" Created {len(event_df)} events.\")\n", + " print(f\" Saved data to {output_csv.replace('occurrence','event')}\")\n", + "\n", + " emof_df = create_dwc_emof(ds, dwc_df)\n", + " if len(emof_df) == 0:\n", + " print(f' no emof data found')\n", + " continue\n", + " else:\n", + " emof_df.to_csv(output_csv.replace(\"occurrence\",\"emof\"), index=False)\n", + " print(f\" Created {len(emof_df)} emofs.\")\n", + " print(f\" Saved data to {output_csv.replace('occurrence','emof')}\")\n", + "\n", + " except Exception as e:\n", + " print(f\" Could not process {base_filename}: {e}\")\n", + "\n", + " print(f\"\\n--- 3. Conversion Complete ---\")\n", + " print(f\"✅ Success! Processed {processed_count} files.\")" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "MHCDd3D4dSFv" + }, + "source": [ + "Convert data to DarwinCore" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "collapsed": true, + "id": "VByr8WDedRja", + "outputId": "d210d9a1-2f5e-4059-89e7-c5fa080226f4" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- 2. Starting Darwin Core Conversion (Individual Files) ---\n", + "Created output directory: data/dwc/131373\n", + "Processing atn_131373_ribbon-seal_trajectory_20140428-20141213.nc...\n", + "Found 1215 records.\n", + " Extracted 389 occurrences with valid locations.\n", + " Extracted 179 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\131373/atn_131373_ribbon-seal_trajectory_20140428-20141213_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\131373\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/137487\n", + "Processing atn_137487_ribbon-seal_trajectory_20140412-20140413.nc...\n", + "Found 17 records.\n", + " Extracted 15 occurrences with valid locations.\n", + " Extracted 3 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137487/atn_137487_ribbon-seal_trajectory_20140412-20140413_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137487\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/137490\n", + "Processing atn_137490_spotted-seal_trajectory_20160414-20160414.nc...\n", + "Found 267 records.\n", + " Extracted 16 occurrences with valid locations.\n", + " Extracted 14 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137490/atn_137490_spotted-seal_trajectory_20160414-20160414_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137490\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/137491\n", + "Processing atn_137491_spotted-seal_trajectory_20180418-20180526.nc...\n", + "Found 107 records.\n", + " Extracted 12 occurrences with valid locations.\n", + " Extracted 5 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137491\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv\n", + " Created 2 emofs.\n", + " Saved data to data/dwc\\137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv\n", + "Created output directory: data/dwc/137494\n", + "Processing atn_137494_ribbon-seal_trajectory_20140426-20140426.nc...\n", + "Found 23 records.\n", + " Extracted 11 occurrences with valid locations.\n", + " Extracted 4 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137494\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/137495\n", + "Processing atn_137495_ribbon-seal_trajectory_20140426-20140427.nc...\n", + "Found 55 records.\n", + " Extracted 44 occurrences with valid locations.\n", + " Extracted 12 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137495/atn_137495_ribbon-seal_trajectory_20140426-20140427_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\eml.xml'.\n", + " no HumanObservation events found\n", + "Processing atn_137495_spotted-seal_trajectory_20170809-20180607.nc...\n", + "Found 362 records.\n", + " Extracted 61 occurrences with valid locations.\n", + " Extracted 42 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137495/atn_137495_spotted-seal_trajectory_20170809-20180607_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/137497\n", + "Processing atn_137497_spotted-seal_trajectory_20160412-20170721.nc...\n", + "Found 484 records.\n", + " Extracted 56 occurrences with valid locations.\n", + " Extracted 37 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137497/atn_137497_spotted-seal_trajectory_20160412-20170721_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137497\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/137500\n", + "Processing atn_137500_ribbon-seal_trajectory_20140426-20140427.nc...\n", + "Found 19 records.\n", + " Extracted 14 occurrences with valid locations.\n", + " Extracted 3 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137500/atn_137500_ribbon-seal_trajectory_20140426-20140427_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137500\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/137506\n", + "Processing atn_137506_ribbon-seal_trajectory_20140421-20140421.nc...\n", + "Found 66 records.\n", + " Extracted 35 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137506/atn_137506_ribbon-seal_trajectory_20140421-20140421_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137506\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/137514\n", + "Processing atn_137514_ribbon-seal_trajectory_20140419-20140420.nc...\n", + "Found 17 records.\n", + " Extracted 9 occurrences with valid locations.\n", + " Extracted 4 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137514/atn_137514_ribbon-seal_trajectory_20140419-20140420_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137514\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/137516\n", + "Processing atn_137516_ribbon-seal_trajectory_20140420-20140420.nc...\n", + "Found 60 records.\n", + " Extracted 42 occurrences with valid locations.\n", + " Extracted 11 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\137516/atn_137516_ribbon-seal_trajectory_20140420-20140420_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137516\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/141929\n", + "Processing atn_141929_spotted-seal_trajectory_20160425-20160514.nc...\n", + "Found 480 records.\n", + " Extracted 211 occurrences with valid locations.\n", + " Extracted 136 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\141929/atn_141929_spotted-seal_trajectory_20160425-20160514_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\141929\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/143947\n", + "Processing atn_143947_spotted-seal_trajectory_20160414-20160623.nc...\n", + "Found 139 records.\n", + " Extracted 10 occurrences with valid locations.\n", + " Extracted 5 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\143947/atn_143947_spotted-seal_trajectory_20160414-20160623_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143947\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/143956\n", + "Processing atn_143956_spotted-seal_trajectory_20180410-20180901.nc...\n", + "Found 315 records.\n", + " Extracted 28 occurrences with valid locations.\n", + " Extracted 22 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\143956/atn_143956_spotted-seal_trajectory_20180410-20180901_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143956\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\143956/atn_143956_spotted-seal_trajectory_20180410-20180901_event.csv\n", + " Created 2 emofs.\n", + " Saved data to data/dwc\\143956/atn_143956_spotted-seal_trajectory_20180410-20180901_emof.csv\n", + "Created output directory: data/dwc/143966\n", + "Processing atn_143966_ribbon-seal_trajectory_20160416-20160430.nc...\n", + "Found 247 records.\n", + " Extracted 56 occurrences with valid locations.\n", + " Extracted 38 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\143966/atn_143966_ribbon-seal_trajectory_20160416-20160430_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143966\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/143979\n", + "Processing atn_143979_spotted-seal_trajectory_20160414-20160422.nc...\n", + "Found 205 records.\n", + " Extracted 135 occurrences with valid locations.\n", + " Extracted 76 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\143979/atn_143979_spotted-seal_trajectory_20160414-20160422_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143979\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/143982\n", + "Processing atn_143982_ribbon-seal_trajectory_20160423-20160510.nc...\n", + "Found 392 records.\n", + " Extracted 106 occurrences with valid locations.\n", + " Extracted 79 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\143982/atn_143982_ribbon-seal_trajectory_20160423-20160510_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143982\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/143991\n", + "Processing atn_143991_spotted-seal_trajectory_20160415-20160509.nc...\n", + "Found 559 records.\n", + " Extracted 208 occurrences with valid locations.\n", + " Extracted 154 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\143991/atn_143991_spotted-seal_trajectory_20160415-20160509_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143991\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/143994\n", + "Processing atn_143994_spotted-seal_trajectory_20160423-20160516.nc...\n", + "Found 574 records.\n", + " Extracted 250 occurrences with valid locations.\n", + " Extracted 171 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\143994/atn_143994_spotted-seal_trajectory_20160423-20160516_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143994\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/144001\n", + "Processing atn_144001_ribbon-seal_trajectory_20160413-20160427.nc...\n", + "Found 513 records.\n", + " Extracted 31 occurrences with valid locations.\n", + " Extracted 26 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\144001/atn_144001_ribbon-seal_trajectory_20160413-20160427_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144001\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/144004\n", + "Processing atn_144004_ribbon-seal_trajectory_20160421-20160424.nc...\n", + "Found 105 records.\n", + " Extracted 27 occurrences with valid locations.\n", + " Extracted 21 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\144004/atn_144004_ribbon-seal_trajectory_20160421-20160424_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144004\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/144006\n", + "Processing atn_144006_spotted-seal_trajectory_20160412-20160420.nc...\n", + "Found 201 records.\n", + " Extracted 108 occurrences with valid locations.\n", + " Extracted 70 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\144006/atn_144006_spotted-seal_trajectory_20160412-20160420_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144006\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/144009\n", + "Processing atn_144009_spotted-seal_trajectory_20160414-20160510.nc...\n", + "Found 616 records.\n", + " Extracted 196 occurrences with valid locations.\n", + " Extracted 145 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\144009/atn_144009_spotted-seal_trajectory_20160414-20160510_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144009\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/144015\n", + "Processing atn_144015_ribbon-seal_trajectory_20160416-20160418.nc...\n", + "Found 58 records.\n", + " Extracted 24 occurrences with valid locations.\n", + " Extracted 19 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\144015/atn_144015_ribbon-seal_trajectory_20160416-20160418_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144015\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/144017\n", + "Processing atn_144017_ribbon-seal_trajectory_20160425-20160512.nc...\n", + "Found 417 records.\n", + " Extracted 118 occurrences with valid locations.\n", + " Extracted 88 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\144017/atn_144017_ribbon-seal_trajectory_20160425-20160512_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144017\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160948\n", + "Processing atn_160948_ribbon-seal_trajectory_20160421-20170519.nc...\n", + "Found 371 records.\n", + " Extracted 44 occurrences with valid locations.\n", + " Extracted 32 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160948/atn_160948_ribbon-seal_trajectory_20160421-20170519_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160948\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160951\n", + "Processing atn_160951_spotted-seal_trajectory_20160817-20170828.nc...\n", + "Found 518 records.\n", + " Extracted 48 occurrences with valid locations.\n", + " Extracted 30 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160951/atn_160951_spotted-seal_trajectory_20160817-20170828_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160951\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160954\n", + "Processing atn_160954_spotted-seal_trajectory_20160814-20161219.nc...\n", + "Found 94 records.\n", + " Extracted 20 occurrences with valid locations.\n", + " Extracted 10 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160954/atn_160954_spotted-seal_trajectory_20160814-20161219_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160954\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160955\n", + "Processing atn_160955_ribbon-seal_trajectory_20160413-20170605.nc...\n", + "Found 472 records.\n", + " Extracted 71 occurrences with valid locations.\n", + " Extracted 52 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160955/atn_160955_ribbon-seal_trajectory_20160413-20170605_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160955\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160956\n", + "Processing atn_160956_spotted-seal_trajectory_20160415-20160622.nc...\n", + "Found 241 records.\n", + " Extracted 14 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160956/atn_160956_spotted-seal_trajectory_20160415-20160622_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160956\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160957\n", + "Processing atn_160957_spotted-seal_trajectory_20170816-20171125.nc...\n", + "Found 79 records.\n", + " Extracted 23 occurrences with valid locations.\n", + " Extracted 14 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160957/atn_160957_spotted-seal_trajectory_20170816-20171125_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160957\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160960\n", + "Processing atn_160960_spotted-seal_trajectory_20160817-20170729.nc...\n", + "Found 470 records.\n", + " Extracted 55 occurrences with valid locations.\n", + " Extracted 35 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160960/atn_160960_spotted-seal_trajectory_20160817-20170729_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160960\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160965\n", + "Processing atn_160965_ribbon-seal_trajectory_20160416-20160725.nc...\n", + "Found 164 records.\n", + " Extracted 20 occurrences with valid locations.\n", + " Extracted 15 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160965/atn_160965_ribbon-seal_trajectory_20160416-20160725_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160965\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160966\n", + "Processing atn_160966_spotted-seal_trajectory_20160423-20170120.nc...\n", + "Found 342 records.\n", + " Extracted 29 occurrences with valid locations.\n", + " Extracted 19 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160966/atn_160966_spotted-seal_trajectory_20160423-20170120_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160966\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160968\n", + "Processing atn_160968_ribbon-seal_trajectory_20160425-20160726.nc...\n", + "Found 199 records.\n", + " Extracted 13 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160968/atn_160968_ribbon-seal_trajectory_20160425-20160726_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160968\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160969\n", + "Processing atn_160969_ribbon-seal_trajectory_20160416-20161230.nc...\n", + "Found 341 records.\n", + " Extracted 31 occurrences with valid locations.\n", + " Extracted 22 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160969/atn_160969_ribbon-seal_trajectory_20160416-20161230_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160969\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160972\n", + "Processing atn_160972_spotted-seal_trajectory_20170816-20171121.nc...\n", + "Found 92 records.\n", + " Extracted 10 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160972/atn_160972_spotted-seal_trajectory_20170816-20171121_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160972\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160973\n", + "Processing atn_160973_ribbon-seal_trajectory_20160423-20170615.nc...\n", + "Found 451 records.\n", + " Extracted 78 occurrences with valid locations.\n", + " Extracted 59 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160973/atn_160973_ribbon-seal_trajectory_20160423-20170615_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160973\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160975\n", + "Processing atn_160975_ribbon-seal_trajectory_20160426-20170513.nc...\n", + "Found 318 records.\n", + " Extracted 22 occurrences with valid locations.\n", + " Extracted 16 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160975/atn_160975_ribbon-seal_trajectory_20160426-20170513_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160975\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/160977\n", + "Processing atn_160977_spotted-seal_trajectory_20160425-20161009.nc...\n", + "Found 250 records.\n", + " Extracted 20 occurrences with valid locations.\n", + " Extracted 17 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\160977/atn_160977_spotted-seal_trajectory_20160425-20161009_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160977\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/164869\n", + "Processing atn_164869_spotted-seal_trajectory_20180420-20180514.nc...\n", + "Found 47 records.\n", + " Extracted 8 occurrences with valid locations.\n", + " Extracted 4 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\164869/atn_164869_spotted-seal_trajectory_20180420-20180514_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\164869\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\164869/atn_164869_spotted-seal_trajectory_20180420-20180514_event.csv\n", + " Created 2 emofs.\n", + " Saved data to data/dwc\\164869/atn_164869_spotted-seal_trajectory_20180420-20180514_emof.csv\n", + "Created output directory: data/dwc/174785\n", + "Processing atn_174785_spotted-seal_trajectory_20180420-20180605.nc...\n", + "Found 2318 records.\n", + " Extracted 873 occurrences with valid locations.\n", + " Extracted 560 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\174785/atn_174785_spotted-seal_trajectory_20180420-20180605_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174785\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\174785/atn_174785_spotted-seal_trajectory_20180420-20180605_event.csv\n", + " Created 2 emofs.\n", + " Saved data to data/dwc\\174785/atn_174785_spotted-seal_trajectory_20180420-20180605_emof.csv\n", + "Created output directory: data/dwc/174786\n", + "Processing atn_174786_spotted-seal_trajectory_20180414-20180511.nc...\n", + "Found 943 records.\n", + " Extracted 435 occurrences with valid locations.\n", + " Extracted 287 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\174786/atn_174786_spotted-seal_trajectory_20180414-20180511_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174786\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/174787\n", + "Processing atn_174787_spotted-seal_trajectory_20180410-20180610.nc...\n", + "Found 1841 records.\n", + " Extracted 713 occurrences with valid locations.\n", + " Extracted 532 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\174787/atn_174787_spotted-seal_trajectory_20180410-20180610_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174787\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\174787/atn_174787_spotted-seal_trajectory_20180410-20180610_event.csv\n", + " no emof data found\n", + "Created output directory: data/dwc/174790\n", + "Processing atn_174790_spotted-seal_trajectory_20180418-20180527.nc...\n", + "Found 1308 records.\n", + " Extracted 585 occurrences with valid locations.\n", + " Extracted 383 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\174790/atn_174790_spotted-seal_trajectory_20180418-20180527_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174790\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\174790/atn_174790_spotted-seal_trajectory_20180418-20180527_event.csv\n", + " Created 2 emofs.\n", + " Saved data to data/dwc\\174790/atn_174790_spotted-seal_trajectory_20180418-20180527_emof.csv\n", + "Created output directory: data/dwc/174805\n", + "Processing atn_174805_spotted-seal_trajectory_20180420-20180523.nc...\n", + "Found 1495 records.\n", + " Extracted 584 occurrences with valid locations.\n", + " Extracted 373 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\174805/atn_174805_spotted-seal_trajectory_20180420-20180523_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174805\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\174805/atn_174805_spotted-seal_trajectory_20180420-20180523_event.csv\n", + " no emof data found\n", + "Created output directory: data/dwc/174821\n", + "Processing atn_174821_spotted-seal_trajectory_20180420-20180618.nc...\n", + "Found 164 records.\n", + " Extracted 11 occurrences with valid locations.\n", + " Extracted 7 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\174821/atn_174821_spotted-seal_trajectory_20180420-20180618_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174821\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\174821/atn_174821_spotted-seal_trajectory_20180420-20180618_event.csv\n", + " Created 2 emofs.\n", + " Saved data to data/dwc\\174821/atn_174821_spotted-seal_trajectory_20180420-20180618_emof.csv\n", + "Created output directory: data/dwc/174822\n", + "Processing atn_174822_spotted-seal_trajectory_20180414-20181103.nc...\n", + "Found 263 records.\n", + " Extracted 25 occurrences with valid locations.\n", + " Extracted 20 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\174822/atn_174822_spotted-seal_trajectory_20180414-20181103_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174822\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/37515\n", + "Processing atn_37515_spotted-seal_trajectory_20100522-20110423.nc...\n", + "Found 7589 records.\n", + " Extracted 2166 occurrences with valid locations.\n", + " Extracted 1261 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\37515/atn_37515_spotted-seal_trajectory_20100522-20110423_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37515\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/37909\n", + "Processing atn_37909_spotted-seal_trajectory_20140427-20140921.nc...\n", + "Found 4396 records.\n", + " Extracted 1910 occurrences with valid locations.\n", + " Extracted 910 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\37909/atn_37909_spotted-seal_trajectory_20140427-20140921_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37909\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/38549\n", + "Processing atn_38549_spotted-seal_trajectory_20140429-20140613.nc...\n", + "Found 2881 records.\n", + " Extracted 1198 occurrences with valid locations.\n", + " Extracted 400 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\38549/atn_38549_spotted-seal_trajectory_20140429-20140613_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38549\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/38553\n", + "Processing atn_38553_bearded-seal_trajectory_20110618-20120314.nc...\n", + "Found 10197 records.\n", + " Extracted 1871 occurrences with valid locations.\n", + " Extracted 1218 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38553\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv\n", + " no emof data found\n", + "Created output directory: data/dwc/39482\n", + "Processing atn_39482_spotted-seal_trajectory_20140427-20141022.nc...\n", + "Found 4984 records.\n", + " Extracted 1539 occurrences with valid locations.\n", + " Extracted 806 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\39482/atn_39482_spotted-seal_trajectory_20140427-20141022_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39482\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/39486\n", + "Processing atn_39486_ribbon-seal_trajectory_20100517-20100917.nc...\n", + "Found 722 records.\n", + " Extracted 154 occurrences with valid locations.\n", + " Extracted 82 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\39486/atn_39486_ribbon-seal_trajectory_20100517-20100917_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39486\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/39489\n", + "Processing atn_39489_bearded-seal_trajectory_20110616-20120401.nc...\n", + "Found 9698 records.\n", + " Extracted 2668 occurrences with valid locations.\n", + " Extracted 1663 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\39489/atn_39489_bearded-seal_trajectory_20110616-20120401_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39489\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\39489/atn_39489_bearded-seal_trajectory_20110616-20120401_event.csv\n", + " no emof data found\n", + "Created output directory: data/dwc/39490\n", + "Processing atn_39490_ribbon-seal_trajectory_20140426-20140526.nc...\n", + "Found 1339 records.\n", + " Extracted 469 occurrences with valid locations.\n", + " Extracted 147 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\39490/atn_39490_ribbon-seal_trajectory_20140426-20140526_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39490\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/39491\n", + "Processing atn_39491_ribbon-seal_trajectory_20100516-20100518.nc...\n", + "Found 44 records.\n", + " Extracted 23 occurrences with valid locations.\n", + " Extracted 16 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\39491/atn_39491_ribbon-seal_trajectory_20100516-20100518_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39491\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/39496\n", + "Processing atn_39496_ribbon-seal_trajectory_20100523-20101216.nc...\n", + "Found 617 records.\n", + " Extracted 226 occurrences with valid locations.\n", + " Extracted 132 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\39496/atn_39496_ribbon-seal_trajectory_20100523-20101216_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39496\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/39498\n", + "Processing atn_39498_ribbon-seal_trajectory_20140427-20140509.nc...\n", + "Found 617 records.\n", + " Extracted 397 occurrences with valid locations.\n", + " Extracted 100 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\39498/atn_39498_ribbon-seal_trajectory_20140427-20140509_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39498\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/39499\n", + "Processing atn_39499_ribbon-seal_trajectory_20140419-20140428.nc...\n", + "Found 588 records.\n", + " Extracted 221 occurrences with valid locations.\n", + " Extracted 61 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\39499/atn_39499_ribbon-seal_trajectory_20140419-20140428_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39499\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/40857\n", + "Processing atn_40857_ribbon-seal_trajectory_20100523-20110408.nc...\n", + "Found 1420 records.\n", + " Extracted 445 occurrences with valid locations.\n", + " Extracted 238 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\40857/atn_40857_ribbon-seal_trajectory_20100523-20110408_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40857\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/40858\n", + "Processing atn_40858_ribbon-seal_trajectory_20140421-20140426.nc...\n", + "Found 371 records.\n", + " Extracted 194 occurrences with valid locations.\n", + " Extracted 53 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\40858/atn_40858_ribbon-seal_trajectory_20140421-20140426_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40858\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/40862\n", + "Processing atn_40862_ribbon-seal_trajectory_20140420-20140428.nc...\n", + "Found 898 records.\n", + " Extracted 442 occurrences with valid locations.\n", + " Extracted 138 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\40862/atn_40862_ribbon-seal_trajectory_20140420-20140428_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40862\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/45866\n", + "Processing atn_45866_great-white-shark_trajectory_20090923-20091123.nc...\n", + "Found 29 records.\n", + " Extracted 19 occurrences with valid locations.\n", + " Extracted 17 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\45866/atn_45866_great-white-shark_trajectory_20090923-20091123_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45866\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\45866/atn_45866_great-white-shark_trajectory_20090923-20091123_event.csv\n", + " Created 1 emofs.\n", + " Saved data to data/dwc\\45866/atn_45866_great-white-shark_trajectory_20090923-20091123_emof.csv\n", + "Created output directory: data/dwc/45869\n", + "Processing atn_45869_great-white-shark_trajectory_20090923-20091213.nc...\n", + "Found 42 records.\n", + " Extracted 8 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\45869/atn_45869_great-white-shark_trajectory_20090923-20091213_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45869\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\45869/atn_45869_great-white-shark_trajectory_20090923-20091213_event.csv\n", + " Created 1 emofs.\n", + " Saved data to data/dwc\\45869/atn_45869_great-white-shark_trajectory_20090923-20091213_emof.csv\n", + "Created output directory: data/dwc/53631\n", + "Processing atn_53631_false-killer-whale_trajectory_20100927-20101001.nc...\n", + "Found 35 records.\n", + " Extracted 29 occurrences with valid locations.\n", + " Extracted 23 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\53631/atn_53631_false-killer-whale_trajectory_20100927-20101001_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53631\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/53644\n", + "Processing atn_53644_false-killer-whale_trajectory_20100927-20101118.nc...\n", + "Found 362 records.\n", + " Extracted 244 occurrences with valid locations.\n", + " Extracted 203 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\53644/atn_53644_false-killer-whale_trajectory_20100927-20101118_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53644\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/53652\n", + "Processing atn_53652_false-killer-whale_trajectory_20101023-20101213.nc...\n", + "Found 504 records.\n", + " Extracted 394 occurrences with valid locations.\n", + " Extracted 314 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\53652/atn_53652_false-killer-whale_trajectory_20101023-20101213_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53652\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/57998\n", + "Processing atn_57998_ribbon-seal_trajectory_20050525-20060508.nc...\n", + "Found 1469 records.\n", + " Extracted 536 occurrences with valid locations.\n", + " Extracted 420 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\57998/atn_57998_ribbon-seal_trajectory_20050525-20060508_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57998\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/57999\n", + "Processing atn_57999_spotted-seal_trajectory_20050925-20060521.nc...\n", + "Found 4632 records.\n", + " Extracted 1654 occurrences with valid locations.\n", + " Extracted 1199 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\57999/atn_57999_spotted-seal_trajectory_20050925-20060521_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57999\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58000\n", + "Processing atn_58000_ribbon-seal_trajectory_20050601-20060403.nc...\n", + "Found 166 records.\n", + " Extracted 76 occurrences with valid locations.\n", + " Extracted 53 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58000/atn_58000_ribbon-seal_trajectory_20050601-20060403_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58000\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58001\n", + "Processing atn_58001_spotted-seal_trajectory_20050926-20051215.nc...\n", + "Found 1907 records.\n", + " Extracted 790 occurrences with valid locations.\n", + " Extracted 530 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58001/atn_58001_spotted-seal_trajectory_20050926-20051215_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58001\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58002\n", + "Processing atn_58002_spotted-seal_trajectory_20050926-20051223.nc...\n", + "Found 1627 records.\n", + " Extracted 567 occurrences with valid locations.\n", + " Extracted 398 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58002/atn_58002_spotted-seal_trajectory_20050926-20051223_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58002\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58003\n", + "Processing atn_58003_spotted-seal_trajectory_20050928-20060428.nc...\n", + "Found 514 records.\n", + " Extracted 237 occurrences with valid locations.\n", + " Extracted 162 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58003/atn_58003_spotted-seal_trajectory_20050928-20060428_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58003\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58005\n", + "Processing atn_58005_ribbon-seal_trajectory_20050601-20060508.nc...\n", + "Found 877 records.\n", + " Extracted 166 occurrences with valid locations.\n", + " Extracted 143 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58005/atn_58005_ribbon-seal_trajectory_20050601-20060508_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58005\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58006\n", + "Processing atn_58006_ribbon-seal_trajectory_20050602-20060220.nc...\n", + "Found 133 records.\n", + " Extracted 77 occurrences with valid locations.\n", + " Extracted 51 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58006/atn_58006_ribbon-seal_trajectory_20050602-20060220_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58006\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58007\n", + "Processing atn_58007_ribbon-seal_trajectory_20050602-20050603.nc...\n", + "Found 18 records.\n", + " Extracted 10 occurrences with valid locations.\n", + " Extracted 6 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58007/atn_58007_ribbon-seal_trajectory_20050602-20050603_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58007\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58008\n", + "Processing atn_58008_ribbon-seal_trajectory_20050602-20060508.nc...\n", + "Found 558 records.\n", + " Extracted 131 occurrences with valid locations.\n", + " Extracted 92 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58008/atn_58008_ribbon-seal_trajectory_20050602-20060508_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58008\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58009\n", + "Processing atn_58009_ribbon-seal_trajectory_20050606-20051215.nc...\n", + "Found 180 records.\n", + " Extracted 81 occurrences with valid locations.\n", + " Extracted 56 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58009/atn_58009_ribbon-seal_trajectory_20050606-20051215_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58009\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58010\n", + "Processing atn_58010_ribbon-seal_trajectory_20050607-20051213.nc...\n", + "Found 58 records.\n", + " Extracted 36 occurrences with valid locations.\n", + " Extracted 21 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58010/atn_58010_ribbon-seal_trajectory_20050607-20051213_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58010\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58011\n", + "Processing atn_58011_ribbon-seal_trajectory_20050602-20050604.nc...\n", + "Found 6 records.\n", + " Extracted 4 occurrences with valid locations.\n", + " Extracted 2 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58011/atn_58011_ribbon-seal_trajectory_20050602-20050604_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58011\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58012\n", + "Processing atn_58012_ribbon-seal_trajectory_20050607-20060421.nc...\n", + "Found 1014 records.\n", + " Extracted 384 occurrences with valid locations.\n", + " Extracted 258 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58012/atn_58012_ribbon-seal_trajectory_20050607-20060421_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58012\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/58014\n", + "Processing atn_58014_spotted-seal_trajectory_20050929-20060329.nc...\n", + "Found 1971 records.\n", + " Extracted 437 occurrences with valid locations.\n", + " Extracted 360 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\58014/atn_58014_spotted-seal_trajectory_20050929-20060329_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58014\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/62755\n", + "Processing atn_62755_spotted-seal_trajectory_20060424-20060506.nc...\n", + "Found 45 records.\n", + " Extracted 35 occurrences with valid locations.\n", + " Extracted 30 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\62755/atn_62755_spotted-seal_trajectory_20060424-20060506_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62755\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/62756\n", + "Processing atn_62756_spotted-seal_trajectory_20060427-20060513.nc...\n", + "Found 44 records.\n", + " Extracted 25 occurrences with valid locations.\n", + " Extracted 22 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\62756/atn_62756_spotted-seal_trajectory_20060427-20060513_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62756\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64451\n", + "Processing atn_64451_spotted-seal_trajectory_20090518-20090612.nc...\n", + "Found 21 records.\n", + " Extracted 14 occurrences with valid locations.\n", + " Extracted 10 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64451/atn_64451_spotted-seal_trajectory_20090518-20090612_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64451\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64452\n", + "Processing atn_64452_spotted-seal_trajectory_20090528-20090612.nc...\n", + "Found 19 records.\n", + " Extracted 13 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64452/atn_64452_spotted-seal_trajectory_20090528-20090612_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64452\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64453\n", + "Processing atn_64453_ribbon-seal_trajectory_20090606-20090612.nc...\n", + "Found 11 records.\n", + " Extracted 10 occurrences with valid locations.\n", + " Extracted 6 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64453/atn_64453_ribbon-seal_trajectory_20090606-20090612_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64453\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64455\n", + "Processing atn_64455_spotted-seal_trajectory_20090517-20100430.nc...\n", + "Found 74 records.\n", + " Extracted 49 occurrences with valid locations.\n", + " Extracted 35 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64455/atn_64455_spotted-seal_trajectory_20090517-20100430_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64455\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64457\n", + "Processing atn_64457_ribbon-seal_trajectory_20090603-20090613.nc...\n", + "Found 11 records.\n", + " Extracted 6 occurrences with valid locations.\n", + " Extracted 4 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64457/atn_64457_ribbon-seal_trajectory_20090603-20090613_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64457\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64459\n", + "Processing atn_64459_bearded-seal_trajectory_20090626-20120518.nc...\n", + "Found 61 records.\n", + " Extracted 26 occurrences with valid locations.\n", + " Extracted 21 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64459/atn_64459_bearded-seal_trajectory_20090626-20120518_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64459\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64460\n", + "Processing atn_64460_spotted-seal_trajectory_20090518-20090618.nc...\n", + "Found 22 records.\n", + " Extracted 14 occurrences with valid locations.\n", + " Extracted 10 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64460/atn_64460_spotted-seal_trajectory_20090518-20090618_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64460\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64461\n", + "Processing atn_64461_ribbon-seal_trajectory_20090607-20100524.nc...\n", + "Found 67 records.\n", + " Extracted 45 occurrences with valid locations.\n", + " Extracted 27 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64461/atn_64461_ribbon-seal_trajectory_20090607-20100524_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64461\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64462\n", + "Processing atn_64462_bearded-seal_trajectory_20090623-20120612.nc...\n", + "Found 126 records.\n", + " Extracted 53 occurrences with valid locations.\n", + " Extracted 37 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64462/atn_64462_bearded-seal_trajectory_20090623-20120612_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64462\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64463\n", + "Processing atn_64463_spotted-seal_trajectory_20090528-20090620.nc...\n", + "Found 13 records.\n", + " Extracted 9 occurrences with valid locations.\n", + " Extracted 4 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64463/atn_64463_spotted-seal_trajectory_20090528-20090620_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64463\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64464\n", + "Processing atn_64464_ribbon-seal_trajectory_20090531-20100506.nc...\n", + "Found 49 records.\n", + " Extracted 35 occurrences with valid locations.\n", + " Extracted 26 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64464/atn_64464_ribbon-seal_trajectory_20090531-20100506_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64464\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64465\n", + "Processing atn_64465_ribbon-seal_trajectory_20090602-20090607.nc...\n", + "Found 4 records.\n", + " Extracted 3 occurrences with valid locations.\n", + " Extracted 1 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64465/atn_64465_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64465\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64467\n", + "Processing atn_64467_ribbon-seal_trajectory_20090606-20100531.nc...\n", + "Found 62 records.\n", + " Extracted 42 occurrences with valid locations.\n", + " Extracted 27 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64467/atn_64467_ribbon-seal_trajectory_20090606-20100531_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64467\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64469\n", + "Processing atn_64469_ribbon-seal_trajectory_20090607-20110526.nc...\n", + "Found 155 records.\n", + " Extracted 92 occurrences with valid locations.\n", + " Extracted 57 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64469/atn_64469_ribbon-seal_trajectory_20090607-20110526_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64469\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64471\n", + "Processing atn_64471_ribbon-seal_trajectory_20090605-20100522.nc...\n", + "Found 158 records.\n", + " Extracted 93 occurrences with valid locations.\n", + " Extracted 53 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64471/atn_64471_ribbon-seal_trajectory_20090605-20100522_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64471\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64472\n", + "Processing atn_64472_ribbon-seal_trajectory_20090602-20090607.nc...\n", + "Found 6 records.\n", + " Extracted 4 occurrences with valid locations.\n", + " Extracted 2 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64472/atn_64472_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64472\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64473\n", + "Processing atn_64473_spotted-seal_trajectory_20090518-20090618.nc...\n", + "Found 31 records.\n", + " Extracted 21 occurrences with valid locations.\n", + " Extracted 14 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64473/atn_64473_spotted-seal_trajectory_20090518-20090618_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64473\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64476\n", + "Processing atn_64476_ribbon-seal_trajectory_20090528-20100603.nc...\n", + "Found 88 records.\n", + " Extracted 48 occurrences with valid locations.\n", + " Extracted 35 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64476/atn_64476_ribbon-seal_trajectory_20090528-20100603_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64476\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64477\n", + "Processing atn_64477_spotted-seal_trajectory_20090528-20100422.nc...\n", + "Found 11 records.\n", + " Extracted 7 occurrences with valid locations.\n", + " Extracted 5 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64477/atn_64477_spotted-seal_trajectory_20090528-20100422_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64477\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64478\n", + "Processing atn_64478_ribbon-seal_trajectory_20090531-20091230.nc...\n", + "Found 4 records.\n", + " Extracted 3 occurrences with valid locations.\n", + " Extracted 2 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64478/atn_64478_ribbon-seal_trajectory_20090531-20091230_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64478\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64479\n", + "Processing atn_64479_ribbon-seal_trajectory_20090607-20100126.nc...\n", + "Found 878 records.\n", + " Extracted 479 occurrences with valid locations.\n", + " Extracted 260 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64479/atn_64479_ribbon-seal_trajectory_20090607-20100126_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64479\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64481\n", + "Processing atn_64481_ribbon-seal_trajectory_20090604-20091221.nc...\n", + "Found 1219 records.\n", + " Extracted 362 occurrences with valid locations.\n", + " Extracted 239 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64481/atn_64481_ribbon-seal_trajectory_20090604-20091221_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64481\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64482\n", + "Processing atn_64482_ribbon-seal_trajectory_20090603-20100514.nc...\n", + "Found 2567 records.\n", + " Extracted 784 occurrences with valid locations.\n", + " Extracted 486 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64482/atn_64482_ribbon-seal_trajectory_20090603-20100514_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64482\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64483\n", + "Processing atn_64483_ribbon-seal_trajectory_20100505-20100928.nc...\n", + "Found 244 records.\n", + " Extracted 120 occurrences with valid locations.\n", + " Extracted 75 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64483/atn_64483_ribbon-seal_trajectory_20100505-20100928_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64483\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64484\n", + "Processing atn_64484_ribbon-seal_trajectory_20090530-20100326.nc...\n", + "Found 533 records.\n", + " Extracted 299 occurrences with valid locations.\n", + " Extracted 200 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64484/atn_64484_ribbon-seal_trajectory_20090530-20100326_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64484\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64485\n", + "Processing atn_64485_spotted-seal_trajectory_20090603-20091023.nc...\n", + "Found 2889 records.\n", + " Extracted 1080 occurrences with valid locations.\n", + " Extracted 705 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64485/atn_64485_spotted-seal_trajectory_20090603-20091023_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64485\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64486\n", + "Processing atn_64486_ribbon-seal_trajectory_20090601-20100426.nc...\n", + "Found 357 records.\n", + " Extracted 224 occurrences with valid locations.\n", + " Extracted 147 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64486/atn_64486_ribbon-seal_trajectory_20090601-20100426_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64486\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64488\n", + "Processing atn_64488_spotted-seal_trajectory_20090606-20100310.nc...\n", + "Found 4567 records.\n", + " Extracted 1326 occurrences with valid locations.\n", + " Extracted 853 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64488/atn_64488_spotted-seal_trajectory_20090606-20100310_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64488\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64489\n", + "Processing atn_64489_ribbon-seal_trajectory_20090529-20100502.nc...\n", + "Found 434 records.\n", + " Extracted 238 occurrences with valid locations.\n", + " Extracted 150 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64489/atn_64489_ribbon-seal_trajectory_20090529-20100502_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64489\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64490\n", + "Processing atn_64490_ribbon-seal_trajectory_20090531-20100105.nc...\n", + "Found 870 records.\n", + " Extracted 215 occurrences with valid locations.\n", + " Extracted 137 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64490/atn_64490_ribbon-seal_trajectory_20090531-20100105_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64490\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64491\n", + "Processing atn_64491_ribbon-seal_trajectory_20090529-20090617.nc...\n", + "Found 282 records.\n", + " Extracted 126 occurrences with valid locations.\n", + " Extracted 85 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64491/atn_64491_ribbon-seal_trajectory_20090529-20090617_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64491\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64492\n", + "Processing atn_64492_ribbon-seal_trajectory_20090602-20100116.nc...\n", + "Found 1685 records.\n", + " Extracted 262 occurrences with valid locations.\n", + " Extracted 189 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64492/atn_64492_ribbon-seal_trajectory_20090602-20100116_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64492\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64706\n", + "Processing atn_64706_ribbon-seal_trajectory_20060427-20060520.nc...\n", + "Found 16 records.\n", + " Extracted 11 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64706/atn_64706_ribbon-seal_trajectory_20060427-20060520_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64706\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64707\n", + "Processing atn_64707_ribbon-seal_trajectory_20060502-20060505.nc...\n", + "Found 3 records.\n", + " Extracted 2 occurrences with valid locations.\n", + " Extracted 1 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64707/atn_64707_ribbon-seal_trajectory_20060502-20060505_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64707\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64708\n", + "Processing atn_64708_ribbon-seal_trajectory_20060503-20060527.nc...\n", + "Found 21 records.\n", + " Extracted 7 occurrences with valid locations.\n", + " Extracted 5 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64708/atn_64708_ribbon-seal_trajectory_20060503-20060527_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64708\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64709\n", + "Processing atn_64709_ribbon-seal_trajectory_20060502-20060511.nc...\n", + "Found 9 records.\n", + " Extracted 3 occurrences with valid locations.\n", + " Extracted 2 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64709/atn_64709_ribbon-seal_trajectory_20060502-20060511_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64709\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64710\n", + "Processing atn_64710_ribbon-seal_trajectory_20060503-20060520.nc...\n", + "Found 12 records.\n", + " Extracted 7 occurrences with valid locations.\n", + " Extracted 5 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64710/atn_64710_ribbon-seal_trajectory_20060503-20060520_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64710\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64712\n", + "Processing atn_64712_spotted-seal_trajectory_20060503-20060506.nc...\n", + "Found 6 records.\n", + " Extracted 3 occurrences with valid locations.\n", + " Extracted 2 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64712/atn_64712_spotted-seal_trajectory_20060503-20060506_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64712\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64713\n", + "Processing atn_64713_spotted-seal_trajectory_20060503-20060518.nc...\n", + "Found 5 records.\n", + " Extracted 5 occurrences with valid locations.\n", + " Extracted 3 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64713/atn_64713_spotted-seal_trajectory_20060503-20060518_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64713\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64714\n", + "Processing atn_64714_spotted-seal_trajectory_20060501-20060513.nc...\n", + "Found 4 records.\n", + " Extracted 3 occurrences with valid locations.\n", + " Extracted 2 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64714/atn_64714_spotted-seal_trajectory_20060501-20060513_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64714\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64715\n", + "Processing atn_64715_ribbon-seal_trajectory_20060503-20060527.nc...\n", + "Found 16 records.\n", + " Extracted 11 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64715/atn_64715_ribbon-seal_trajectory_20060503-20060527_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64715\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64717\n", + "Processing atn_64717_spotted-seal_trajectory_20060503-20060516.nc...\n", + "Found 11 records.\n", + " Extracted 5 occurrences with valid locations.\n", + " Extracted 4 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64717/atn_64717_spotted-seal_trajectory_20060503-20060516_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64717\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/64899\n", + "Processing atn_64899_ribbon-seal_trajectory_20090604-20090612.nc...\n", + "Found 10 records.\n", + " Extracted 6 occurrences with valid locations.\n", + " Extracted 3 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\64899/atn_64899_ribbon-seal_trajectory_20090604-20090612_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64899\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/65922\n", + "Processing atn_65922_ribbon-seal_trajectory_20060506-20060508.nc...\n", + "Found 4 records.\n", + " Extracted 3 occurrences with valid locations.\n", + " Extracted 2 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\65922/atn_65922_ribbon-seal_trajectory_20060506-20060508_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65922\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/65924\n", + "Processing atn_65924_ribbon-seal_trajectory_20060502-20060618.nc...\n", + "Found 149 records.\n", + " Extracted 108 occurrences with valid locations.\n", + " Extracted 68 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\65924/atn_65924_ribbon-seal_trajectory_20060502-20060618_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65924\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/65925\n", + "Processing atn_65925_ribbon-seal_trajectory_20060505-20060525.nc...\n", + "Found 67 records.\n", + " Extracted 50 occurrences with valid locations.\n", + " Extracted 35 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\65925/atn_65925_ribbon-seal_trajectory_20060505-20060525_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65925\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/65926\n", + "Processing atn_65926_ribbon-seal_trajectory_20060503-20060516.nc...\n", + "Found 101 records.\n", + " Extracted 76 occurrences with valid locations.\n", + " Extracted 49 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\65926/atn_65926_ribbon-seal_trajectory_20060503-20060516_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65926\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/65927\n", + "Processing atn_65927_ribbon-seal_trajectory_20070522-20080107.nc...\n", + "Found 376 records.\n", + " Extracted 175 occurrences with valid locations.\n", + " Extracted 138 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\65927/atn_65927_ribbon-seal_trajectory_20070522-20080107_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65927\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/65928\n", + "Processing atn_65928_ribbon-seal_trajectory_20070517-20080402.nc...\n", + "Found 628 records.\n", + " Extracted 375 occurrences with valid locations.\n", + " Extracted 297 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\65928/atn_65928_ribbon-seal_trajectory_20070517-20080402_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65928\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/65931\n", + "Processing atn_65931_ribbon-seal_trajectory_20070522-20080130.nc...\n", + "Found 163 records.\n", + " Extracted 101 occurrences with valid locations.\n", + " Extracted 73 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\65931/atn_65931_ribbon-seal_trajectory_20070522-20080130_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65931\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/65932\n", + "Processing atn_65932_spotted-seal_trajectory_20060506-20060620.nc...\n", + "Found 754 records.\n", + " Extracted 471 occurrences with valid locations.\n", + " Extracted 349 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\65932/atn_65932_spotted-seal_trajectory_20060506-20060620_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65932\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/65933\n", + "Processing atn_65933_spotted-seal_trajectory_20060427-20060511.nc...\n", + "Found 153 records.\n", + " Extracted 120 occurrences with valid locations.\n", + " Extracted 97 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\65933/atn_65933_spotted-seal_trajectory_20060427-20060511_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65933\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/66928\n", + "Processing atn_66928_ribbon-seal_trajectory_20140426-20140518.nc...\n", + "Found 526 records.\n", + " Extracted 264 occurrences with valid locations.\n", + " Extracted 67 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\66928/atn_66928_ribbon-seal_trajectory_20140426-20140518_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66928\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/66949\n", + "Processing atn_66949_ribbon-seal_trajectory_20140415-20140503.nc...\n", + "Found 1289 records.\n", + " Extracted 521 occurrences with valid locations.\n", + " Extracted 154 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\66949/atn_66949_ribbon-seal_trajectory_20140415-20140503_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66949\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/66971\n", + "Processing atn_66971_bearded-seal_trajectory_20110617-20120131.nc...\n", + "Found 7559 records.\n", + " Extracted 2041 occurrences with valid locations.\n", + " Extracted 1303 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\66971/atn_66971_bearded-seal_trajectory_20110617-20120131_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66971\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\66971/atn_66971_bearded-seal_trajectory_20110617-20120131_event.csv\n", + " no emof data found\n", + "Created output directory: data/dwc/66973\n", + "Processing atn_66973_spotted-seal_trajectory_20140427-20141222.nc...\n", + "Found 6857 records.\n", + " Extracted 1962 occurrences with valid locations.\n", + " Extracted 1118 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\66973/atn_66973_spotted-seal_trajectory_20140427-20141222_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66973\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/66978\n", + "Processing atn_66978_spotted-seal_trajectory_20140429-20141201.nc...\n", + "Found 7325 records.\n", + " Extracted 2421 occurrences with valid locations.\n", + " Extracted 1274 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\66978/atn_66978_spotted-seal_trajectory_20140429-20141201_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66978\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/66983\n", + "Processing atn_66983_bearded-seal_trajectory_20110618-20140626.nc...\n", + "Found 146 records.\n", + " Extracted 103 occurrences with valid locations.\n", + " Extracted 53 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\66983/atn_66983_bearded-seal_trajectory_20110618-20140626_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66983\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/66989\n", + "Processing atn_66989_ribbon-seal_trajectory_20140428-20140518.nc...\n", + "Found 154 records.\n", + " Extracted 78 occurrences with valid locations.\n", + " Extracted 35 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\66989/atn_66989_ribbon-seal_trajectory_20140428-20140518_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66989\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/66990\n", + "Processing atn_66990_ribbon-seal_trajectory_20140428-20140501.nc...\n", + "Found 13 records.\n", + " Extracted 5 occurrences with valid locations.\n", + " Extracted 2 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\66990/atn_66990_ribbon-seal_trajectory_20140428-20140501_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66990\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/67000\n", + "Processing atn_67000_spotted-seal_trajectory_20140429-20140721.nc...\n", + "Found 148 records.\n", + " Extracted 74 occurrences with valid locations.\n", + " Extracted 44 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\67000/atn_67000_spotted-seal_trajectory_20140429-20140721_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67000\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/67003\n", + "Processing atn_67003_ribbon-seal_trajectory_20140428-20140519.nc...\n", + "Found 112 records.\n", + " Extracted 50 occurrences with valid locations.\n", + " Extracted 21 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\67003/atn_67003_ribbon-seal_trajectory_20140428-20140519_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67003\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/67004\n", + "Processing atn_67004_bearded-seal_trajectory_20120704-20130618.nc...\n", + "Found 100 records.\n", + " Extracted 69 occurrences with valid locations.\n", + " Extracted 31 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\67004/atn_67004_bearded-seal_trajectory_20120704-20130618_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67004\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/67007\n", + "Processing atn_67007_bearded-seal_trajectory_20110616-20120813.nc...\n", + "Found 98 records.\n", + " Extracted 66 occurrences with valid locations.\n", + " Extracted 38 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\67007/atn_67007_bearded-seal_trajectory_20110616-20120813_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67007\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/67026\n", + "Processing atn_67026_ribbon-seal_trajectory_20140427-20141108.nc...\n", + "Found 123 records.\n", + " Extracted 67 occurrences with valid locations.\n", + " Extracted 27 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\67026/atn_67026_ribbon-seal_trajectory_20140427-20141108_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67026\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74626\n", + "Processing atn_74626_bearded-seal_trajectory_20090625-20100128.nc...\n", + "Found 5660 records.\n", + " Extracted 1040 occurrences with valid locations.\n", + " Extracted 789 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74626/atn_74626_bearded-seal_trajectory_20090625-20100128_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74626\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\74626/atn_74626_bearded-seal_trajectory_20090625-20100128_event.csv\n", + " no emof data found\n", + "Created output directory: data/dwc/74627\n", + "Processing atn_74627_bearded-seal_trajectory_20090623-20100318.nc...\n", + "Found 6491 records.\n", + " Extracted 867 occurrences with valid locations.\n", + " Extracted 705 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74627/atn_74627_bearded-seal_trajectory_20090623-20100318_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74627\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\74627/atn_74627_bearded-seal_trajectory_20090623-20100318_event.csv\n", + " no emof data found\n", + "Created output directory: data/dwc/74629\n", + "Processing atn_74629_ribbon-seal_trajectory_20070529-20080404.nc...\n", + "Found 855 records.\n", + " Extracted 593 occurrences with valid locations.\n", + " Extracted 500 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74629/atn_74629_ribbon-seal_trajectory_20070529-20080404_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74629\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\74629/atn_74629_ribbon-seal_trajectory_20070529-20080404_event.csv\n", + " Created 2 emofs.\n", + " Saved data to data/dwc\\74629/atn_74629_ribbon-seal_trajectory_20070529-20080404_emof.csv\n", + "Created output directory: data/dwc/74630\n", + "Processing atn_74630_bearded-seal_trajectory_20090626-20100213.nc...\n", + "Found 4913 records.\n", + " Extracted 645 occurrences with valid locations.\n", + " Extracted 501 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74630/atn_74630_bearded-seal_trajectory_20090626-20100213_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74630\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\74630/atn_74630_bearded-seal_trajectory_20090626-20100213_event.csv\n", + " no emof data found\n", + "Created output directory: data/dwc/74631\n", + "Processing atn_74631_spotted-seal_trajectory_20090606-20100504.nc...\n", + "Found 2805 records.\n", + " Extracted 815 occurrences with valid locations.\n", + " Extracted 562 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74631/atn_74631_spotted-seal_trajectory_20090606-20100504_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74631\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74633\n", + "Processing atn_74633_spotted-seal_trajectory_20090518-20090731.nc...\n", + "Found 824 records.\n", + " Extracted 190 occurrences with valid locations.\n", + " Extracted 150 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74633/atn_74633_spotted-seal_trajectory_20090518-20090731_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74633\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74634\n", + "Processing atn_74634_ribbon-seal_trajectory_20090602-20100222.nc...\n", + "Found 174 records.\n", + " Extracted 107 occurrences with valid locations.\n", + " Extracted 78 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74634/atn_74634_ribbon-seal_trajectory_20090602-20100222_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74634\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74635\n", + "Processing atn_74635_spotted-seal_trajectory_20090523-20091028.nc...\n", + "Found 1996 records.\n", + " Extracted 600 occurrences with valid locations.\n", + " Extracted 414 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74635/atn_74635_spotted-seal_trajectory_20090523-20091028_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74635\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74636\n", + "Processing atn_74636_ribbon-seal_trajectory_20090528-20100209.nc...\n", + "Found 536 records.\n", + " Extracted 171 occurrences with valid locations.\n", + " Extracted 101 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74636/atn_74636_ribbon-seal_trajectory_20090528-20100209_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74636\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74637\n", + "Processing atn_74637_spotted-seal_trajectory_20100506-20110410.nc...\n", + "Found 5477 records.\n", + " Extracted 1459 occurrences with valid locations.\n", + " Extracted 927 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74637/atn_74637_spotted-seal_trajectory_20100506-20110410_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74637\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74638\n", + "Processing atn_74638_ribbon-seal_trajectory_20100510-20100605.nc...\n", + "Found 158 records.\n", + " Extracted 73 occurrences with valid locations.\n", + " Extracted 51 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74638/atn_74638_ribbon-seal_trajectory_20100510-20100605_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74638\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74639\n", + "Processing atn_74639_ribbon-seal_trajectory_20070524-20070902.nc...\n", + "Found 148 records.\n", + " Extracted 104 occurrences with valid locations.\n", + " Extracted 70 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74639/atn_74639_ribbon-seal_trajectory_20070524-20070902_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74639\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74640\n", + "Processing atn_74640_ribbon-seal_trajectory_20070529-20071022.nc...\n", + "Found 136 records.\n", + " Extracted 94 occurrences with valid locations.\n", + " Extracted 64 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74640/atn_74640_ribbon-seal_trajectory_20070529-20071022_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74640\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74641\n", + "Processing atn_74641_ribbon-seal_trajectory_20070527-20071103.nc...\n", + "Found 109 records.\n", + " Extracted 48 occurrences with valid locations.\n", + " Extracted 34 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74641/atn_74641_ribbon-seal_trajectory_20070527-20071103_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74641\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74642\n", + "Processing atn_74642_spotted-seal_trajectory_20070508-20071123.nc...\n", + "Found 367 records.\n", + " Extracted 101 occurrences with valid locations.\n", + " Extracted 85 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74642/atn_74642_spotted-seal_trajectory_20070508-20071123_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74642\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74643\n", + "Processing atn_74643_ribbon-seal_trajectory_20070525-20080502.nc...\n", + "Found 739 records.\n", + " Extracted 330 occurrences with valid locations.\n", + " Extracted 232 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74643/atn_74643_ribbon-seal_trajectory_20070525-20080502_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74643\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74644\n", + "Processing atn_74644_spotted-seal_trajectory_20070507-20080303.nc...\n", + "Found 1712 records.\n", + " Extracted 599 occurrences with valid locations.\n", + " Extracted 482 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74644/atn_74644_spotted-seal_trajectory_20070507-20080303_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74644\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74645\n", + "Processing atn_74645_ribbon-seal_trajectory_20070524-20070605.nc...\n", + "Found 22 records.\n", + " Extracted 11 occurrences with valid locations.\n", + " Extracted 7 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74645/atn_74645_ribbon-seal_trajectory_20070524-20070605_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74645\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74646\n", + "Processing atn_74646_ribbon-seal_trajectory_20070528-20100529.nc...\n", + "Found 102 records.\n", + " Extracted 63 occurrences with valid locations.\n", + " Extracted 51 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74646/atn_74646_ribbon-seal_trajectory_20070528-20100529_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74646\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74647\n", + "Processing atn_74647_ribbon-seal_trajectory_20070520-20080612.nc...\n", + "Found 61 records.\n", + " Extracted 41 occurrences with valid locations.\n", + " Extracted 33 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74647/atn_74647_ribbon-seal_trajectory_20070520-20080612_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74647\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74648\n", + "Processing atn_74648_ribbon-seal_trajectory_20070523-20080402.nc...\n", + "Found 24 records.\n", + " Extracted 13 occurrences with valid locations.\n", + " Extracted 10 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74648/atn_74648_ribbon-seal_trajectory_20070523-20080402_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74648\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74649\n", + "Processing atn_74649_ribbon-seal_trajectory_20070524-20070614.nc...\n", + "Found 21 records.\n", + " Extracted 12 occurrences with valid locations.\n", + " Extracted 9 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74649/atn_74649_ribbon-seal_trajectory_20070524-20070614_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74649\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74650\n", + "Processing atn_74650_ribbon-seal_trajectory_20070525-20080617.nc...\n", + "Found 54 records.\n", + " Extracted 34 occurrences with valid locations.\n", + " Extracted 26 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74650/atn_74650_ribbon-seal_trajectory_20070525-20080617_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74650\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74651\n", + "Processing atn_74651_ribbon-seal_trajectory_20070516-20080613.nc...\n", + "Found 66 records.\n", + " Extracted 35 occurrences with valid locations.\n", + " Extracted 29 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74651/atn_74651_ribbon-seal_trajectory_20070516-20080613_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74651\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74652\n", + "Processing atn_74652_ribbon-seal_trajectory_20070523-20080502.nc...\n", + "Found 27 records.\n", + " Extracted 20 occurrences with valid locations.\n", + " Extracted 13 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74652/atn_74652_ribbon-seal_trajectory_20070523-20080502_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74652\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74653\n", + "Processing atn_74653_ribbon-seal_trajectory_20070518-20100426.nc...\n", + "Found 94 records.\n", + " Extracted 49 occurrences with valid locations.\n", + " Extracted 36 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74653/atn_74653_ribbon-seal_trajectory_20070518-20100426_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74653\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74654\n", + "Processing atn_74654_spotted-seal_trajectory_20070520-20070713.nc...\n", + "Found 24 records.\n", + " Extracted 14 occurrences with valid locations.\n", + " Extracted 11 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74654/atn_74654_spotted-seal_trajectory_20070520-20070713_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74654\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74655\n", + "Processing atn_74655_spotted-seal_trajectory_20070526-20080619.nc...\n", + "Found 58 records.\n", + " Extracted 41 occurrences with valid locations.\n", + " Extracted 29 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74655/atn_74655_spotted-seal_trajectory_20070526-20080619_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74655\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74656\n", + "Processing atn_74656_spotted-seal_trajectory_20070524-20070613.nc...\n", + "Found 22 records.\n", + " Extracted 18 occurrences with valid locations.\n", + " Extracted 15 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74656/atn_74656_spotted-seal_trajectory_20070524-20070613_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74656\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74657\n", + "Processing atn_74657_ribbon-seal_trajectory_20070518-20070608.nc...\n", + "Found 28 records.\n", + " Extracted 14 occurrences with valid locations.\n", + " Extracted 12 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74657/atn_74657_ribbon-seal_trajectory_20070518-20070608_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74657\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74658\n", + "Processing atn_74658_spotted-seal_trajectory_20070520-20070613.nc...\n", + "Found 24 records.\n", + " Extracted 15 occurrences with valid locations.\n", + " Extracted 10 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74658/atn_74658_spotted-seal_trajectory_20070520-20070613_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74658\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74662\n", + "Processing atn_74662_ribbon-seal_trajectory_20070527-20070626.nc...\n", + "Found 33 records.\n", + " Extracted 23 occurrences with valid locations.\n", + " Extracted 11 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74662/atn_74662_ribbon-seal_trajectory_20070527-20070626_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74662\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74664\n", + "Processing atn_74664_ribbon-seal_trajectory_20070518-20080621.nc...\n", + "Found 59 records.\n", + " Extracted 31 occurrences with valid locations.\n", + " Extracted 29 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74664/atn_74664_ribbon-seal_trajectory_20070518-20080621_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74664\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74665\n", + "Processing atn_74665_ribbon-seal_trajectory_20070522-20080614.nc...\n", + "Found 40 records.\n", + " Extracted 26 occurrences with valid locations.\n", + " Extracted 19 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74665/atn_74665_ribbon-seal_trajectory_20070522-20080614_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74665\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74666\n", + "Processing atn_74666_spotted-seal_trajectory_20070524-20070629.nc...\n", + "Found 9 records.\n", + " Extracted 6 occurrences with valid locations.\n", + " Extracted 4 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74666/atn_74666_spotted-seal_trajectory_20070524-20070629_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74666\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74670\n", + "Processing atn_74670_ribbon-seal_trajectory_20090609-20100607.nc...\n", + "Found 87 records.\n", + " Extracted 51 occurrences with valid locations.\n", + " Extracted 33 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74670/atn_74670_ribbon-seal_trajectory_20090609-20100607_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74670\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74672\n", + "Processing atn_74672_ribbon-seal_trajectory_20070527-20080622.nc...\n", + "Found 58 records.\n", + " Extracted 40 occurrences with valid locations.\n", + " Extracted 31 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74672/atn_74672_ribbon-seal_trajectory_20070527-20080622_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74672\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74673\n", + "Processing atn_74673_ribbon-seal_trajectory_20070510-20070611.nc...\n", + "Found 37 records.\n", + " Extracted 25 occurrences with valid locations.\n", + " Extracted 21 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74673/atn_74673_ribbon-seal_trajectory_20070510-20070611_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74673\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74674\n", + "Processing atn_74674_spotted-seal_trajectory_20070521-20090601.nc...\n", + "Found 80 records.\n", + " Extracted 43 occurrences with valid locations.\n", + " Extracted 35 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74674/atn_74674_spotted-seal_trajectory_20070521-20090601_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74674\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74677\n", + "Processing atn_74677_ribbon-seal_trajectory_20070523-20090522.nc...\n", + "Found 106 records.\n", + " Extracted 58 occurrences with valid locations.\n", + " Extracted 45 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74677/atn_74677_ribbon-seal_trajectory_20070523-20090522_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74677\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74679\n", + "Processing atn_74679_ribbon-seal_trajectory_20070523-20070613.nc...\n", + "Found 25 records.\n", + " Extracted 16 occurrences with valid locations.\n", + " Extracted 11 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74679/atn_74679_ribbon-seal_trajectory_20070523-20070613_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74679\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74681\n", + "Processing atn_74681_spotted-seal_trajectory_20070424-20070701.nc...\n", + "Found 46 records.\n", + " Extracted 26 occurrences with valid locations.\n", + " Extracted 22 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74681/atn_74681_spotted-seal_trajectory_20070424-20070701_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74681\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74682\n", + "Processing atn_74682_ribbon-seal_trajectory_20070526-20080610.nc...\n", + "Found 54 records.\n", + " Extracted 36 occurrences with valid locations.\n", + " Extracted 27 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74682/atn_74682_ribbon-seal_trajectory_20070526-20080610_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74682\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74685\n", + "Processing atn_74685_spotted-seal_trajectory_20070424-20070625.nc...\n", + "Found 12 records.\n", + " Extracted 12 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74685/atn_74685_spotted-seal_trajectory_20070424-20070625_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74685\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74688\n", + "Processing atn_74688_ribbon-seal_trajectory_20070527-20071115.nc...\n", + "Found 18 records.\n", + " Extracted 14 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74688/atn_74688_ribbon-seal_trajectory_20070527-20071115_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74688\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74689\n", + "Processing atn_74689_spotted-seal_trajectory_20070507-20070901.nc...\n", + "Found 28 records.\n", + " Extracted 19 occurrences with valid locations.\n", + " Extracted 13 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74689/atn_74689_spotted-seal_trajectory_20070507-20070901_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74689\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74690\n", + "Processing atn_74690_ribbon-seal_trajectory_20070505-20070521.nc...\n", + "Found 16 records.\n", + " Extracted 12 occurrences with valid locations.\n", + " Extracted 10 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74690/atn_74690_ribbon-seal_trajectory_20070505-20070521_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74690\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74693\n", + "Processing atn_74693_spotted-seal_trajectory_20070526-20080301.nc...\n", + "Found 26 records.\n", + " Extracted 15 occurrences with valid locations.\n", + " Extracted 12 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74693/atn_74693_spotted-seal_trajectory_20070526-20080301_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74693\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/74698\n", + "Processing atn_74698_ribbon-seal_trajectory_20070522-20070605.nc...\n", + "Found 12 records.\n", + " Extracted 5 occurrences with valid locations.\n", + " Extracted 2 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\74698/atn_74698_ribbon-seal_trajectory_20070522-20070605_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74698\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/77250\n", + "Processing atn_77250_false-killer-whale_trajectory_20070816-20070830.nc...\n", + "Found 66 records.\n", + " Extracted 50 occurrences with valid locations.\n", + " Extracted 40 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\77250/atn_77250_false-killer-whale_trajectory_20070816-20070830_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\eml.xml'.\n", + " no HumanObservation events found\n", + "Processing atn_77250_false-killer-whale_trajectory_20080422-20080513.nc...\n", + "Found 10 records.\n", + " Extracted 2 occurrences with valid locations.\n", + " Extracted 1 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\77250/atn_77250_false-killer-whale_trajectory_20080422-20080513_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/77251\n", + "Processing atn_77251_false-killer-whale_trajectory_20070816-20070818.nc...\n", + "Found 16 records.\n", + " Extracted 13 occurrences with valid locations.\n", + " Extracted 9 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\77251/atn_77251_false-killer-whale_trajectory_20070816-20070818_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77251\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/77252\n", + "Processing atn_77252_false-killer-whale_trajectory_20070816-20070917.nc...\n", + "Found 150 records.\n", + " Extracted 132 occurrences with valid locations.\n", + " Extracted 104 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\77252/atn_77252_false-killer-whale_trajectory_20070816-20070917_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\eml.xml'.\n", + " no HumanObservation events found\n", + "Processing atn_77252_false-killer-whale_trajectory_20080727-20080915.nc...\n", + "Found 518 records.\n", + " Extracted 417 occurrences with valid locations.\n", + " Extracted 329 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\77252/atn_77252_false-killer-whale_trajectory_20080727-20080915_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/77253\n", + "Processing atn_77253_false-killer-whale_trajectory_20080727-20080824.nc...\n", + "Found 320 records.\n", + " Extracted 277 occurrences with valid locations.\n", + " Extracted 210 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\77253/atn_77253_false-killer-whale_trajectory_20080727-20080824_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77253\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83881\n", + "Processing atn_83881_ribbon-seal_trajectory_20080429-20080514.nc...\n", + "Found 52 records.\n", + " Extracted 34 occurrences with valid locations.\n", + " Extracted 24 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83881/atn_83881_ribbon-seal_trajectory_20080429-20080514_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83881\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83885\n", + "Processing atn_83885_spotted-seal_trajectory_20090606-20100612.nc...\n", + "Found 178 records.\n", + " Extracted 108 occurrences with valid locations.\n", + " Extracted 74 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83885/atn_83885_spotted-seal_trajectory_20090606-20100612_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83885\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83901\n", + "Processing atn_83901_spotted-seal_trajectory_20090531-20090707.nc...\n", + "Found 7 records.\n", + " Extracted 6 occurrences with valid locations.\n", + " Extracted 3 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83901/atn_83901_spotted-seal_trajectory_20090531-20090707_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83901\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83902\n", + "Processing atn_83902_ribbon-seal_trajectory_20090602-20100101.nc...\n", + "Found 18 records.\n", + " Extracted 12 occurrences with valid locations.\n", + " Extracted 8 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83902/atn_83902_ribbon-seal_trajectory_20090602-20100101_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83902\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83904\n", + "Processing atn_83904_bearded-seal_trajectory_20090625-20120612.nc...\n", + "Found 98 records.\n", + " Extracted 37 occurrences with valid locations.\n", + " Extracted 32 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83904/atn_83904_bearded-seal_trajectory_20090625-20120612_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83904\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83905\n", + "Processing atn_83905_ribbon-seal_trajectory_20090602-20090607.nc...\n", + "Found 7 records.\n", + " Extracted 3 occurrences with valid locations.\n", + " Extracted 2 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83905/atn_83905_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83905\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83908\n", + "Processing atn_83908_spotted-seal_trajectory_20090414-20100507.nc...\n", + "Found 16 records.\n", + " Extracted 9 occurrences with valid locations.\n", + " Extracted 6 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83908/atn_83908_spotted-seal_trajectory_20090414-20100507_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83908\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83912\n", + "Processing atn_83912_ribbon-seal_trajectory_20090530-20100520.nc...\n", + "Found 113 records.\n", + " Extracted 64 occurrences with valid locations.\n", + " Extracted 43 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83912/atn_83912_ribbon-seal_trajectory_20090530-20100520_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83912\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83913\n", + "Processing atn_83913_spotted-seal_trajectory_20090606-20090902.nc...\n", + "Found 25 records.\n", + " Extracted 11 occurrences with valid locations.\n", + " Extracted 9 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83913/atn_83913_spotted-seal_trajectory_20090606-20090902_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83913\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83916\n", + "Processing atn_83916_spotted-seal_trajectory_20090529-20090707.nc...\n", + "Found 6 records.\n", + " Extracted 5 occurrences with valid locations.\n", + " Extracted 1 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83916/atn_83916_spotted-seal_trajectory_20090529-20090707_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83916\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83918\n", + "Processing atn_83918_ribbon-seal_trajectory_20090606-20100308.nc...\n", + "Found 31 records.\n", + " Extracted 20 occurrences with valid locations.\n", + " Extracted 14 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83918/atn_83918_ribbon-seal_trajectory_20090606-20100308_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83918\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83922\n", + "Processing atn_83922_spotted-seal_trajectory_20090414-20120528.nc...\n", + "Found 54 records.\n", + " Extracted 18 occurrences with valid locations.\n", + " Extracted 16 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83922/atn_83922_spotted-seal_trajectory_20090414-20120528_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83922\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83923\n", + "Processing atn_83923_ribbon-seal_trajectory_20090604-20090609.nc...\n", + "Found 13 records.\n", + " Extracted 9 occurrences with valid locations.\n", + " Extracted 7 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83923/atn_83923_ribbon-seal_trajectory_20090604-20090609_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83923\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/83926\n", + "Processing atn_83926_spotted-seal_trajectory_20090414-20100512.nc...\n", + "Found 21 records.\n", + " Extracted 8 occurrences with valid locations.\n", + " Extracted 6 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\83926/atn_83926_spotted-seal_trajectory_20090414-20100512_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83926\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85567\n", + "Processing atn_85567_false-killer-whale_trajectory_20081211-20090203.nc...\n", + "Found 448 records.\n", + " Extracted 391 occurrences with valid locations.\n", + " Extracted 292 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85567/atn_85567_false-killer-whale_trajectory_20081211-20090203_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85567\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85568\n", + "Processing atn_85568_short-finned-pilot-whale_trajectory_20080705-20080802.nc...\n", + "Found 397 records.\n", + " Extracted 344 occurrences with valid locations.\n", + " Extracted 277 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85568/atn_85568_short-finned-pilot-whale_trajectory_20080705-20080802_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85568\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85586\n", + "Processing atn_85586_false-killer-whale_trajectory_20080717-20080821.nc...\n", + "Found 447 records.\n", + " Extracted 412 occurrences with valid locations.\n", + " Extracted 315 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85586/atn_85586_false-killer-whale_trajectory_20080717-20080821_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85586\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85587\n", + "Processing atn_85587_false-killer-whale_trajectory_20080717-20080806.nc...\n", + "Found 202 records.\n", + " Extracted 180 occurrences with valid locations.\n", + " Extracted 137 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85587/atn_85587_false-killer-whale_trajectory_20080717-20080806_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85587\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85588\n", + "Processing atn_85588_false-killer-whale_trajectory_20080717-20080911.nc...\n", + "Found 727 records.\n", + " Extracted 672 occurrences with valid locations.\n", + " Extracted 499 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85588/atn_85588_false-killer-whale_trajectory_20080717-20080911_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85588\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85589\n", + "Processing atn_85589_false-killer-whale_trajectory_20080717-20080723.nc...\n", + "Found 63 records.\n", + " Extracted 55 occurrences with valid locations.\n", + " Extracted 41 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85589/atn_85589_false-killer-whale_trajectory_20080717-20080723_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85589\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85590\n", + "Processing atn_85590_false-killer-whale_trajectory_20080717-20081001.nc...\n", + "Found 281 records.\n", + " Extracted 207 occurrences with valid locations.\n", + " Extracted 168 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85590/atn_85590_false-killer-whale_trajectory_20080717-20081001_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85590\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85853\n", + "Processing atn_85853_ribbon-seal_trajectory_20090605-20100318.nc...\n", + "Found 2706 records.\n", + " Extracted 518 occurrences with valid locations.\n", + " Extracted 293 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85853/atn_85853_ribbon-seal_trajectory_20090605-20100318_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85853\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85854\n", + "Processing atn_85854_ribbon-seal_trajectory_20090607-20090926.nc...\n", + "Found 281 records.\n", + " Extracted 113 occurrences with valid locations.\n", + " Extracted 73 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85854/atn_85854_ribbon-seal_trajectory_20090607-20090926_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85854\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85855\n", + "Processing atn_85855_spotted-seal_trajectory_20100508-20101031.nc...\n", + "Found 2743 records.\n", + " Extracted 1311 occurrences with valid locations.\n", + " Extracted 746 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85855/atn_85855_spotted-seal_trajectory_20100508-20101031_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85855\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85857\n", + "Processing atn_85857_spotted-seal_trajectory_20090607-20100130.nc...\n", + "Found 4932 records.\n", + " Extracted 1871 occurrences with valid locations.\n", + " Extracted 1097 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85857/atn_85857_spotted-seal_trajectory_20090607-20100130_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85857\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85858\n", + "Processing atn_85858_spotted-seal_trajectory_20100505-20110214.nc...\n", + "Found 4459 records.\n", + " Extracted 1325 occurrences with valid locations.\n", + " Extracted 836 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85858/atn_85858_spotted-seal_trajectory_20100505-20110214_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85858\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85859\n", + "Processing atn_85859_spotted-seal_trajectory_20090531-20100201.nc...\n", + "Found 2504 records.\n", + " Extracted 1129 occurrences with valid locations.\n", + " Extracted 785 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85859/atn_85859_spotted-seal_trajectory_20090531-20100201_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85859\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85860\n", + "Processing atn_85860_ribbon-seal_trajectory_20090604-20090801.nc...\n", + "Found 148 records.\n", + " Extracted 31 occurrences with valid locations.\n", + " Extracted 25 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85860/atn_85860_ribbon-seal_trajectory_20090604-20090801_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85860\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85861\n", + "Processing atn_85861_ribbon-seal_trajectory_20090602-20090925.nc...\n", + "Found 490 records.\n", + " Extracted 205 occurrences with valid locations.\n", + " Extracted 138 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85861/atn_85861_ribbon-seal_trajectory_20090602-20090925_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85861\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85862\n", + "Processing atn_85862_spotted-seal_trajectory_20090519-20090810.nc...\n", + "Found 1282 records.\n", + " Extracted 381 occurrences with valid locations.\n", + " Extracted 273 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85862/atn_85862_spotted-seal_trajectory_20090519-20090810_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85862\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85863\n", + "Processing atn_85863_ribbon-seal_trajectory_20090602-20100127.nc...\n", + "Found 3682 records.\n", + " Extracted 750 occurrences with valid locations.\n", + " Extracted 559 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85863/atn_85863_ribbon-seal_trajectory_20090602-20100127_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85863\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85864\n", + "Processing atn_85864_spotted-seal_trajectory_20090519-20091216.nc...\n", + "Found 3781 records.\n", + " Extracted 1531 occurrences with valid locations.\n", + " Extracted 942 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85864/atn_85864_spotted-seal_trajectory_20090519-20091216_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85864\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85865\n", + "Processing atn_85865_ribbon-seal_trajectory_20100517-20110204.nc...\n", + "Found 528 records.\n", + " Extracted 178 occurrences with valid locations.\n", + " Extracted 105 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85865/atn_85865_ribbon-seal_trajectory_20100517-20110204_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85865\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85866\n", + "Processing atn_85866_spotted-seal_trajectory_20090529-20090704.nc...\n", + "Found 529 records.\n", + " Extracted 174 occurrences with valid locations.\n", + " Extracted 120 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85866/atn_85866_spotted-seal_trajectory_20090529-20090704_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85866\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85867\n", + "Processing atn_85867_spotted-seal_trajectory_20090609-20090929.nc...\n", + "Found 1164 records.\n", + " Extracted 255 occurrences with valid locations.\n", + " Extracted 175 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85867/atn_85867_spotted-seal_trajectory_20090609-20090929_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85867\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85868\n", + "Processing atn_85868_ribbon-seal_trajectory_20090603-20100223.nc...\n", + "Found 356 records.\n", + " Extracted 153 occurrences with valid locations.\n", + " Extracted 102 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85868/atn_85868_ribbon-seal_trajectory_20090603-20100223_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85868\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85869\n", + "Processing atn_85869_spotted-seal_trajectory_20100506-20110108.nc...\n", + "Found 3842 records.\n", + " Extracted 1198 occurrences with valid locations.\n", + " Extracted 736 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85869/atn_85869_spotted-seal_trajectory_20100506-20110108_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85869\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85870\n", + "Processing atn_85870_ribbon-seal_trajectory_20090609-20091228.nc...\n", + "Found 961 records.\n", + " Extracted 255 occurrences with valid locations.\n", + " Extracted 145 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85870/atn_85870_ribbon-seal_trajectory_20090609-20091228_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85870\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85871\n", + "Processing atn_85871_spotted-seal_trajectory_20090523-20100228.nc...\n", + "Found 4134 records.\n", + " Extracted 938 occurrences with valid locations.\n", + " Extracted 670 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85871/atn_85871_spotted-seal_trajectory_20090523-20100228_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85871\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85872\n", + "Processing atn_85872_ribbon-seal_trajectory_20090607-20091204.nc...\n", + "Found 774 records.\n", + " Extracted 252 occurrences with valid locations.\n", + " Extracted 153 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85872/atn_85872_ribbon-seal_trajectory_20090607-20091204_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85872\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85873\n", + "Processing atn_85873_ribbon-seal_trajectory_20100503-20100601.nc...\n", + "Found 253 records.\n", + " Extracted 135 occurrences with valid locations.\n", + " Extracted 90 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85873/atn_85873_ribbon-seal_trajectory_20100503-20100601_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85873\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85874\n", + "Processing atn_85874_ribbon-seal_trajectory_20090602-20090812.nc...\n", + "Found 249 records.\n", + " Extracted 99 occurrences with valid locations.\n", + " Extracted 70 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85874/atn_85874_ribbon-seal_trajectory_20090602-20090812_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85874\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85875\n", + "Processing atn_85875_spotted-seal_trajectory_20090531-20090921.nc...\n", + "Found 908 records.\n", + " Extracted 338 occurrences with valid locations.\n", + " Extracted 207 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85875/atn_85875_spotted-seal_trajectory_20090531-20090921_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85875\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85876\n", + "Processing atn_85876_ribbon-seal_trajectory_20090527-20100325.nc...\n", + "Found 578 records.\n", + " Extracted 324 occurrences with valid locations.\n", + " Extracted 192 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85876/atn_85876_ribbon-seal_trajectory_20090527-20100325_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85876\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85877\n", + "Processing atn_85877_spotted-seal_trajectory_20100506-20100626.nc...\n", + "Found 1649 records.\n", + " Extracted 961 occurrences with valid locations.\n", + " Extracted 523 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85877/atn_85877_spotted-seal_trajectory_20100506-20100626_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85877\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85878\n", + "Processing atn_85878_spotted-seal_trajectory_20090608-20100320.nc...\n", + "Found 5689 records.\n", + " Extracted 1826 occurrences with valid locations.\n", + " Extracted 1090 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85878/atn_85878_spotted-seal_trajectory_20090608-20100320_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85878\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85879\n", + "Processing atn_85879_ribbon-seal_trajectory_20100509-20100630.nc...\n", + "Found 244 records.\n", + " Extracted 102 occurrences with valid locations.\n", + " Extracted 71 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85879/atn_85879_ribbon-seal_trajectory_20100509-20100630_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85879\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85880\n", + "Processing atn_85880_ribbon-seal_trajectory_20100514-20101224.nc...\n", + "Found 261 records.\n", + " Extracted 82 occurrences with valid locations.\n", + " Extracted 59 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85880/atn_85880_ribbon-seal_trajectory_20100514-20101224_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85880\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/85881\n", + "Processing atn_85881_ribbon-seal_trajectory_20090604-20100330.nc...\n", + "Found 576 records.\n", + " Extracted 161 occurrences with valid locations.\n", + " Extracted 112 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\85881/atn_85881_ribbon-seal_trajectory_20090604-20100330_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85881\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94793\n", + "Processing atn_94793_false-killer-whale_trajectory_20091018-20091227.nc...\n", + "Found 413 records.\n", + " Extracted 354 occurrences with valid locations.\n", + " Extracted 281 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94793/atn_94793_false-killer-whale_trajectory_20091018-20091227_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94793\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94804\n", + "Processing atn_94804_false-killer-whale_trajectory_20101016-20101029.nc...\n", + "Found 166 records.\n", + " Extracted 116 occurrences with valid locations.\n", + " Extracted 100 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94804/atn_94804_false-killer-whale_trajectory_20101016-20101029_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94804\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94808\n", + "Processing atn_94808_false-killer-whale_trajectory_20091014-20091025.nc...\n", + "Found 108 records.\n", + " Extracted 96 occurrences with valid locations.\n", + " Extracted 72 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94808/atn_94808_false-killer-whale_trajectory_20091014-20091025_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94808\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94811\n", + "Processing atn_94811_false-killer-whale_trajectory_20091006-20100103.nc...\n", + "Found 676 records.\n", + " Extracted 589 occurrences with valid locations.\n", + " Extracted 448 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94811/atn_94811_false-killer-whale_trajectory_20091006-20100103_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94811\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94812\n", + "Processing atn_94812_false-killer-whale_trajectory_20091015-20100122.nc...\n", + "Found 678 records.\n", + " Extracted 596 occurrences with valid locations.\n", + " Extracted 449 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94812/atn_94812_false-killer-whale_trajectory_20091015-20100122_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94812\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94813\n", + "Processing atn_94813_false-killer-whale_trajectory_20091017-20091117.nc...\n", + "Found 287 records.\n", + " Extracted 241 occurrences with valid locations.\n", + " Extracted 184 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94813/atn_94813_false-killer-whale_trajectory_20091017-20091117_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94813\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94818\n", + "Processing atn_94818_false-killer-whale_trajectory_20091211-20100320.nc...\n", + "Found 704 records.\n", + " Extracted 598 occurrences with valid locations.\n", + " Extracted 471 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94818/atn_94818_false-killer-whale_trajectory_20091211-20100320_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94818\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94819\n", + "Processing atn_94819_false-killer-whale_trajectory_20091211-20091227.nc...\n", + "Found 131 records.\n", + " Extracted 88 occurrences with valid locations.\n", + " Extracted 73 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94819/atn_94819_false-killer-whale_trajectory_20091211-20091227_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94819\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94820\n", + "Processing atn_94820_false-killer-whale_trajectory_20091219-20100403.nc...\n", + "Found 596 records.\n", + " Extracted 410 occurrences with valid locations.\n", + " Extracted 356 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94820/atn_94820_false-killer-whale_trajectory_20091219-20100403_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94820\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94821\n", + "Processing atn_94821_blainvilles-beaked-whale_trajectory_20091221-20100111.nc...\n", + "Found 111 records.\n", + " Extracted 80 occurrences with valid locations.\n", + " Extracted 71 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94821/atn_94821_blainvilles-beaked-whale_trajectory_20091221-20100111_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94821\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/94822\n", + "Processing atn_94822_false-killer-whale_trajectory_20091219-20100129.nc...\n", + "Found 345 records.\n", + " Extracted 249 occurrences with valid locations.\n", + " Extracted 209 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\94822/atn_94822_false-killer-whale_trajectory_20091219-20100129_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94822\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/98364\n", + "Processing atn_98364_false-killer-whale_trajectory_20131023-20140223.nc...\n", + "Found 824 records.\n", + " Extracted 522 occurrences with valid locations.\n", + " Extracted 373 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\98364/atn_98364_false-killer-whale_trajectory_20131023-20140223_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98364\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\98364/atn_98364_false-killer-whale_trajectory_20131023-20140223_event.csv\n", + " no emof data found\n", + "Created output directory: data/dwc/98365\n", + "Processing atn_98365_false-killer-whale_trajectory_20131023-20131107.nc...\n", + "Found 151 records.\n", + " Extracted 94 occurrences with valid locations.\n", + " Extracted 73 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\98365/atn_98365_false-killer-whale_trajectory_20131023-20131107_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98365\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99277\n", + "Processing atn_99277_ribbon-seal_trajectory_20140412-20140503.nc...\n", + "Found 2531 records.\n", + " Extracted 777 occurrences with valid locations.\n", + " Extracted 241 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99277/atn_99277_ribbon-seal_trajectory_20140412-20140503_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99277\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99279\n", + "Processing atn_99279_ribbon-seal_trajectory_20140426-20140513.nc...\n", + "Found 484 records.\n", + " Extracted 46 occurrences with valid locations.\n", + " Extracted 14 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99279/atn_99279_ribbon-seal_trajectory_20140426-20140513_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99279\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99280\n", + "Processing atn_99280_ribbon-seal_trajectory_20140428-20140506.nc...\n", + "Found 731 records.\n", + " Extracted 365 occurrences with valid locations.\n", + " Extracted 101 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99280/atn_99280_ribbon-seal_trajectory_20140428-20140506_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99280\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99282\n", + "Processing atn_99282_ribbon-seal_trajectory_20140428-20140514.nc...\n", + "Found 507 records.\n", + " Extracted 153 occurrences with valid locations.\n", + " Extracted 40 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99282/atn_99282_ribbon-seal_trajectory_20140428-20140514_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99282\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99283\n", + "Processing atn_99283_ribbon-seal_trajectory_20100509-20110518.nc...\n", + "Found 5637 records.\n", + " Extracted 684 occurrences with valid locations.\n", + " Extracted 420 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99283/atn_99283_ribbon-seal_trajectory_20100509-20110518_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99283\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99287\n", + "Processing atn_99287_bearded-seal_trajectory_20120704-20130312.nc...\n", + "Found 9936 records.\n", + " Extracted 839 occurrences with valid locations.\n", + " Extracted 539 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99287/atn_99287_bearded-seal_trajectory_20120704-20130312_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99287\\eml.xml'.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data/dwc\\99287/atn_99287_bearded-seal_trajectory_20120704-20130312_event.csv\n", + " no emof data found\n", + "Created output directory: data/dwc/99288\n", + "Processing atn_99288_spotted-seal_trajectory_20100522-20100901.nc...\n", + "Found 27 records.\n", + " Extracted 15 occurrences with valid locations.\n", + " Extracted 10 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99288/atn_99288_spotted-seal_trajectory_20100522-20100901_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99288\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99292\n", + "Processing atn_99292_ribbon-seal_trajectory_20100523-20100612.nc...\n", + "Found 19 records.\n", + " Extracted 11 occurrences with valid locations.\n", + " Extracted 9 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99292/atn_99292_ribbon-seal_trajectory_20100523-20100612_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99292\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99293\n", + "Processing atn_99293_ribbon-seal_trajectory_20100509-20100801.nc...\n", + "Found 49 records.\n", + " Extracted 32 occurrences with valid locations.\n", + " Extracted 16 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99293/atn_99293_ribbon-seal_trajectory_20100509-20100801_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99293\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99295\n", + "Processing atn_99295_spotted-seal_trajectory_20100523-20110730.nc...\n", + "Found 169 records.\n", + " Extracted 82 occurrences with valid locations.\n", + " Extracted 54 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99295/atn_99295_spotted-seal_trajectory_20100523-20110730_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99295\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99297\n", + "Processing atn_99297_ribbon-seal_trajectory_20100515-20100530.nc...\n", + "Found 13 records.\n", + " Extracted 5 occurrences with valid locations.\n", + " Extracted 4 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99297/atn_99297_ribbon-seal_trajectory_20100515-20100530_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99297\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99298\n", + "Processing atn_99298_ribbon-seal_trajectory_20100517-20120530.nc...\n", + "Found 199 records.\n", + " Extracted 104 occurrences with valid locations.\n", + " Extracted 66 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99298/atn_99298_ribbon-seal_trajectory_20100517-20120530_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99298\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99299\n", + "Processing atn_99299_ribbon-seal_trajectory_20100505-20100605.nc...\n", + "Found 39 records.\n", + " Extracted 20 occurrences with valid locations.\n", + " Extracted 12 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99299/atn_99299_ribbon-seal_trajectory_20100505-20100605_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99299\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99300\n", + "Processing atn_99300_ribbon-seal_trajectory_20100517-20110513.nc...\n", + "Found 50 records.\n", + " Extracted 30 occurrences with valid locations.\n", + " Extracted 19 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99300/atn_99300_ribbon-seal_trajectory_20100517-20110513_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99300\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99301\n", + "Processing atn_99301_ribbon-seal_trajectory_20100523-20110201.nc...\n", + "Found 33 records.\n", + " Extracted 19 occurrences with valid locations.\n", + " Extracted 12 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99301/atn_99301_ribbon-seal_trajectory_20100523-20110201_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99301\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99305\n", + "Processing atn_99305_spotted-seal_trajectory_20100522-20100730.nc...\n", + "Found 55 records.\n", + " Extracted 32 occurrences with valid locations.\n", + " Extracted 20 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99305/atn_99305_spotted-seal_trajectory_20100522-20100730_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99305\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99306\n", + "Processing atn_99306_ribbon-seal_trajectory_20100523-20100530.nc...\n", + "Found 8 records.\n", + " Extracted 6 occurrences with valid locations.\n", + " Extracted 4 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99306/atn_99306_ribbon-seal_trajectory_20100523-20100530_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99306\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99308\n", + "Processing atn_99308_ribbon-seal_trajectory_20100517-20110607.nc...\n", + "Found 29 records.\n", + " Extracted 0 occurrences with valid locations.\n", + " Extracted 0 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99308/atn_99308_ribbon-seal_trajectory_20100517-20110607_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99308\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99309\n", + "Processing atn_99309_ribbon-seal_trajectory_20100514-20101215.nc...\n", + "Found 28 records.\n", + " Extracted 19 occurrences with valid locations.\n", + " Extracted 7 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99309/atn_99309_ribbon-seal_trajectory_20100514-20101215_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99309\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99310\n", + "Processing atn_99310_bearded-seal_trajectory_20110617-20120606.nc...\n", + "Found 155 records.\n", + " Extracted 109 occurrences with valid locations.\n", + " Extracted 54 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99310/atn_99310_bearded-seal_trajectory_20110617-20120606_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99310\\eml.xml'.\n", + " no HumanObservation events found\n", + "Created output directory: data/dwc/99312\n", + "Processing atn_99312_ribbon-seal_trajectory_20100516-20100718.nc...\n", + "Found 53 records.\n", + " Extracted 32 occurrences with valid locations.\n", + " Extracted 20 occurrences to first row in hour.\n", + " Saved data to 'data/dwc\\99312/atn_99312_ribbon-seal_trajectory_20100516-20100718_occurrence.csv'\n", + "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99312\\eml.xml'.\n", + " no HumanObservation events found\n", + "\n", + "--- 3. Conversion Complete ---\n", + "✅ Success! Processed 289 files.\n" + ] + } + ], + "source": [ + "import glob\n", + "\n", + "# Step 1: Download all .nc files from the URL\n", + "local_files = glob.glob('data/src/*.nc')\n", + "\n", + "# Step 2: Convert the downloaded files to individual Darwin Core CSVs\n", + "if local_files:\n", + " convert_to_dwc_individual(local_files)\n", + "else:\n", + " print(\"No files were downloaded, so conversion cannot proceed.\")" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "lTB7xe4ESri4" + }, + "source": [ + "Testing" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "ZLbEYyfXeF_U", + "outputId": "e442e372-c592-4957-8b9e-2f9b28fba37d" + }, + "outputs": [], + "source": [ + "# import xarray as xr\n", + "# import pandas as pd\n", + "\n", + "\n", + "# ds = xr.open_dataset('data/src/atn_74626_bearded-seal_trajectory_20090625-20100128.nc', engine='netcdf4')\n", + "# #ds = xr.open_dataset('data/src/atn_174787_spotted-seal_trajectory_20180410-20180610.nc', engine='netcdf4')\n", + "\n", + "# dwc_df = create_dwc_occurrence(ds)\n", + "\n", + "# event_df = create_dwc_event(dwc_df)\n", + "\n", + "# emof_df = create_dwc_emof(ds, dwc_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# convert_to_dwc_individual(['data/src/atn_137491_spotted-seal_trajectory_20180418-20180526.nc'])" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'eml_metadata' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[1;32mIn[10], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m save_eml_file(\u001b[43meml_metadata\u001b[49m)\n", + "\u001b[1;31mNameError\u001b[0m: name 'eml_metadata' is not defined" + ] + } + ], + "source": [ + "save_eml_file(eml_metadata)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "display_name": "IOOS", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.0" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv new file mode 100644 index 0000000..17c069a --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv @@ -0,0 +1,3 @@ +organismID,occurrenceID,eventID,measurementValue,measurementType,measurementMethod,measurementUnit +255021_spotted_seal,ioos_atn_2018-04-18T04:45:00Z_0.0_spotted_seal,spotted_seal_2018-04-18T04:45:00Z,69.0,animal_weight: mass of the animal as measured or estimated at deployment,69.0 (kg),kg +255021_spotted_seal,ioos_atn_2018-04-18T04:45:00Z_0.0_spotted_seal,spotted_seal_2018-04-18T04:45:00Z,129.0,animal_length: length of the animal as measured or estimated at deployment,129.0 (cm) standard length,cm diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv new file mode 100644 index 0000000..c6bb996 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv @@ -0,0 +1,2 @@ +eventID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,minimumDepthInMeters,maximumDepthInMeters,countryCode,samplingProtocol +spotted_seal_2018-04-18T04:45:00Z,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,0.0,0.0,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv new file mode 100644 index 0000000..832cf49 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv @@ -0,0 +1,6 @@ +occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,eventID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,dataGeneralizations +ioos_atn_2018-04-18T04:45:00Z_0.0_spotted_seal,present,HumanObservation,255021_spotted_seal,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,spotted_seal_2018-04-18T04:45:00Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,0, +ioos_atn_2018-04-18T06:09:20Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-18T06:09:20Z,63.6399,-165.0595,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,spotted_seal_2018-04-18T06:09:20Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2018-04-29T07:05:19Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-29T07:05:19Z,60.0415,-164.4277,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,spotted_seal_2018-04-29T07:05:19Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2018-05-13T20:07:00Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-13T20:07:00Z,63.365,-164.0013,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,spotted_seal_2018-05-13T20:07:00Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_2018-05-20T19:26:36Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-20T19:26:36Z,64.6676,-161.5203,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,spotted_seal_2018-05-20T19:26:36Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000, diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml new file mode 100644 index 0000000..32e6ead --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml @@ -0,0 +1,291 @@ + + + + https://ipt-obis.gbif.us/resource.do?r=atn_137491_spotted-seal_trajectory_20180418-20180526 + Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77 + + + Mathew + Biddle + + Animal Tracking Network + Physical Scientist +
+ U.S. Integrated Ocean Observing System Program + Silver Spring + Maryland + 20910 + US +
+ + mathew.biddle@noaa.gov + https://atn.ioos.us/ +
+ + + + US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + + US Integrated Ocean Observing System Office + Data Manager +
+ USA +
+ atndata@ioos.us + https://atn.ioos.us +
+ + + + + Stacie Koslovsky + Stacie Koslovsky + + NOAA Alaska Fisheries Science Center + stacie.koslovsky@noaa.gov + https://orcid.org/0000-0002-9476-5383 + author + + + + + Michael Cameron + Michael Cameron + + NOAA Alaska Fisheries Science Center + michael.cameron@noaa.gov + + author + + + + + Peter Boveng + Peter Boveng + + NOAA Alaska Fisheries Science Center + peter.boveng@noaa.gov + https://orcid.org/0000-0003-2732-4833 + author + + + + + Heather Ziel + Heather Ziel + + NOAA Alaska Fisheries Science Center + heather.ziel@noaa.gov + https://orcid.org/0000-0001-7068-4418 + author + + + +2025-05-27T21:27:32Z +eng + + Wildlife Computers SPOT tag (ptt id 137491) deployed on a spotted seal (Phoca largha) by Josh London in the Bering Sea from 2018-04-18 to 2018-05-26 + Abstract:A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + + + + EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > BIOSPHERE > ECOLOGICAL DYNAMICS > SPECIES/POPULATION INTERACTIONS > MIGRATORY RATES/ROUTES + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > OCEANS + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > CLIMATE INDICATORS > BIOSPHERIC INDICATORS > SPECIES MIGRATION + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > OCEANS + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > BIOLOGICAL CLASSIFICATION > ANIMALS/VERTEBRATES + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > MARINE ECOSYSTEMS + GCMD Science Keywords v15.1 + + + + PROVIDERS > GOVERNMENT AGENCIES-U.S. FEDERAL AGENCIES > DOC > NOAA > IOOS + GCMD Science Keywords v15.1 + + + + PROVIDERS > COMMERCIAL > Axiom Data Science + GCMD Science Keywords v15.1 + + + + + ATN + + Animal Telemetry Network + + IOOS + + Integrated Ocean Observing System + + trajectory + + satellite telemetry tag + + + + + + Access Constraints: none +Use Constraints: +Acknowledge the use of specific records from contributing databases in the form appearing in the 'Citation' field thereof (if any); and acknowledge the use of the OBIS facility. + +For information purposes, email to info@obis.org the full citation of any publication made (printed or electronic) that cites OBIS or any constituent part. + +Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.html#disclaimer for more details + + + + This work is licensed under a Public Domain (CC0 1.0). + + + + https://portal.atn.ioos.us/#metadata/70c76508-b252-4c3d-9f27-e4cba9300537/project + + + + + Bering Sea + + -166.0702 + -158.2506 + 64.9335 + 60.0306 + + + + + + 2018-04-18T04:45:00Z + + + 2018-05-26T02:54:22Z + + + + + + Species included below are tagged by this project and have left any embargo. Other individuals or species may later be appended to this dataset. + + species + Phoca largha + spotted seal + + + + + These data are for display on the OBIS portal and associated mapping programs and for download to personal computers for ad-hoc end-user analysis. + + + + Josh London + Josh London + + NOAA Alaska Fisheries Science Center + principalInvestigator + + + josh.london@noaa.gov + https://www.fisheries.noaa.gov/alaska/marine-mammal-protection/ice-seal-research-alaska + + + + + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the OTN database and filtered and summarized according to international agreed-upon standards. + + + + + + A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + + + + Wildlife Computers SPOT tag (ptt id 137491) deployed on a spotted seal (Phoca largha) by Josh London in the Bering Sea from 2018-04-18 to 2018-05-26 + + + + + NetCDF file created from position data obtained from Wildlife Computers API. + + + + + A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + + + Josh London + Josh London + + principalInvestigator + + A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + + +
+ + + + 2025-05-27T21:27:32Z + dataset + London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).. Accessed via the OBIS-USA IPT on INSERT DATE + + London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN). + + + A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + ASCII + + + HTM + + + + + https://portal.atn.ioos.us/#metadata/70c76508-b252-4c3d-9f27-e4cba9300537/project + + + + + + +
\ No newline at end of file diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv new file mode 100644 index 0000000..1fecd96 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv @@ -0,0 +1,5 @@ +occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,eventID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,dataGeneralizations +ioos_atn_2014-04-26T00:51:11Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T00:51:11Z,60.6317,-178.0899,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,ribbon_seal_2014-04-26T00:51:11Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2014-04-26T19:21:24Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T19:21:24Z,61.0606,-177.8437,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,ribbon_seal_2014-04-26T19:21:24Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,first of 5 records. +ioos_atn_2014-04-27T14:31:07Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T14:31:07Z,61.1814,-177.471,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,ribbon_seal_2014-04-27T14:31:07Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2014-04-27T15:30:50Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T15:30:50Z,61.1712,-177.4029,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,ribbon_seal_2014-04-27T15:30:50Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml new file mode 100644 index 0000000..48ecf27 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml @@ -0,0 +1,291 @@ + + + + https://ipt-obis.gbif.us/resource.do?r=atn_137494_ribbon-seal_trajectory_20140426-20140426 + Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135 + + + Mathew + Biddle + + Animal Tracking Network + Physical Scientist +
+ U.S. Integrated Ocean Observing System Program + Silver Spring + Maryland + 20910 + US +
+ + mathew.biddle@noaa.gov + https://atn.ioos.us/ +
+ + + + US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + + US Integrated Ocean Observing System Office + Data Manager +
+ USA +
+ atndata@ioos.us + https://atn.ioos.us +
+ + + + + Stacie Koslovsky + Stacie Koslovsky + + NOAA Alaska Fisheries Science Center + stacie.koslovsky@noaa.gov + https://orcid.org/0000-0002-9476-5383 + author + + + + + Michael Cameron + Michael Cameron + + NOAA Alaska Fisheries Science Center + michael.cameron@noaa.gov + + author + + + + + Peter Boveng + Peter Boveng + + NOAA Alaska Fisheries Science Center + peter.boveng@noaa.gov + https://orcid.org/0000-0003-2732-4833 + author + + + + + Heather Ziel + Heather Ziel + + NOAA Alaska Fisheries Science Center + heather.ziel@noaa.gov + https://orcid.org/0000-0001-7068-4418 + author + + + +2025-05-27T21:01:36Z +eng + + Wildlife Computers SPOT tag (ptt id 137494) deployed on a ribbon seal (Histriophoca fasciata) by Josh London in the Bering Sea from 2014-04-26 to 2014-04-26 + Abstract:A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + + + + EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > BIOSPHERE > ECOLOGICAL DYNAMICS > SPECIES/POPULATION INTERACTIONS > MIGRATORY RATES/ROUTES + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > OCEANS + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > CLIMATE INDICATORS > BIOSPHERIC INDICATORS > SPECIES MIGRATION + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > OCEANS + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > BIOLOGICAL CLASSIFICATION > ANIMALS/VERTEBRATES + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > MARINE ECOSYSTEMS + GCMD Science Keywords v15.1 + + + + PROVIDERS > GOVERNMENT AGENCIES-U.S. FEDERAL AGENCIES > DOC > NOAA > IOOS + GCMD Science Keywords v15.1 + + + + PROVIDERS > COMMERCIAL > Axiom Data Science + GCMD Science Keywords v15.1 + + + + + ATN + + Animal Telemetry Network + + IOOS + + Integrated Ocean Observing System + + trajectory + + satellite telemetry tag + + + + + + Access Constraints: none +Use Constraints: +Acknowledge the use of specific records from contributing databases in the form appearing in the 'Citation' field thereof (if any); and acknowledge the use of the OBIS facility. + +For information purposes, email to info@obis.org the full citation of any publication made (printed or electronic) that cites OBIS or any constituent part. + +Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.html#disclaimer for more details + + + + This work is licensed under a Public Domain (CC0 1.0). + + + + https://portal.atn.ioos.us/#metadata/70c76508-b252-4c3d-9f27-e4cba9300537/project + + + + + Bering Sea + + -178.09 + -177.397 + 61.1814 + 60.6317 + + + + + + 2014-04-26T00:51:11Z + + + 2014-04-27T15:49:06Z + + + + + + Species included below are tagged by this project and have left any embargo. Other individuals or species may later be appended to this dataset. + + species + Histriophoca fasciata + ribbon seal + + + + + These data are for display on the OBIS portal and associated mapping programs and for download to personal computers for ad-hoc end-user analysis. + + + + Josh London + Josh London + + NOAA Alaska Fisheries Science Center + principalInvestigator + + + josh.london@noaa.gov + https://www.fisheries.noaa.gov/alaska/marine-mammal-protection/ice-seal-research-alaska + + + + + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the OTN database and filtered and summarized according to international agreed-upon standards. + + + + + + A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + + + + Wildlife Computers SPOT tag (ptt id 137494) deployed on a ribbon seal (Histriophoca fasciata) by Josh London in the Bering Sea from 2014-04-26 to 2014-04-26 + + + + + NetCDF file created from position data obtained from Wildlife Computers API. + + + + + A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + + + Josh London + Josh London + + principalInvestigator + + A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + + +
+ + + + 2025-05-27T21:01:36Z + dataset + London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).. Accessed via the OBIS-USA IPT on INSERT DATE + + London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN). + + + A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + ASCII + + + HTM + + + + + https://portal.atn.ioos.us/#metadata/70c76508-b252-4c3d-9f27-e4cba9300537/project + + + + + + +
\ No newline at end of file diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv new file mode 100644 index 0000000..ab12988 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv @@ -0,0 +1,2 @@ +eventID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,minimumDepthInMeters,maximumDepthInMeters,countryCode,samplingProtocol +bearded_seal_2011-06-18T03:00:00Z,2011-06-18T03:00:00Z,66.64,-163.0,EPSG:4326,0.0,0.0,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv new file mode 100644 index 0000000..d27c0e8 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv @@ -0,0 +1,1219 @@ +occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,eventID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,dataGeneralizations +ioos_atn_2011-06-18T03:00:00Z_0.0_bearded_seal,present,HumanObservation,137079_bearded_seal,2011-06-18T03:00:00Z,66.64,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T03:00:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,0,first of 3 records. +ioos_atn_2011-06-18T04:07:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T04:07:02Z,66.62,-162.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T04:07:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-18T05:16:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T05:16:18Z,66.617,-163.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T05:16:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-06-18T07:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T07:03:35Z,66.6,-163.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T07:03:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-06-18T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T09:11:19Z,66.601,-163.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T09:11:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-18T11:13:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T11:13:42Z,66.605,-163.096,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T11:13:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-18T12:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T12:50:52Z,66.625,-163.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T12:50:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-18T14:14:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T14:14:40Z,66.64,-163.08,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T14:14:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-19T00:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T00:08:08Z,66.662,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T00:08:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 6 records. +ioos_atn_2011-06-19T01:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T01:46:52Z,66.644,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T01:46:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-19T02:17:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T02:17:16Z,66.644,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T02:17:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. +ioos_atn_2011-06-19T03:25:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T03:25:37Z,66.646,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T03:25:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-06-19T05:06:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T05:06:44Z,66.665,-162.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T05:06:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-19T07:08:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T07:08:49Z,66.652,-163.029,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T07:08:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-20T00:07:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T00:07:22Z,66.629,-163.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-20T00:07:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-06-20T03:16:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T03:16:21Z,66.58,-162.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-20T03:16:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-06-20T04:53:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T04:53:44Z,66.537,-162.937,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-20T04:53:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-20T05:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T05:04:36Z,66.559,-162.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-20T05:04:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-20T06:38:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T06:38:36Z,66.548,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-20T06:38:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-06-21T00:19:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T00:19:43Z,66.631,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-21T00:19:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-21T01:19:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T01:19:38Z,66.639,-162.983,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-21T01:19:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_2011-06-21T03:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T03:01:07Z,66.632,-162.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-21T03:01:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-06-21T04:47:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T04:47:17Z,66.583,-162.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-21T04:47:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-06-21T06:27:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T06:27:31Z,66.561,-162.848,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-21T06:27:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_2011-06-22T00:02:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T00:02:33Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T00:02:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-22T01:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T01:03:38Z,66.61,-162.94,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T01:03:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_2011-06-22T02:17:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T02:17:13Z,66.597,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T02:17:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. +ioos_atn_2011-06-22T04:10:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T04:10:21Z,66.593,-162.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T04:10:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-22T05:52:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T05:52:14Z,66.527,-162.829,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T05:52:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-22T06:06:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T06:06:27Z,66.528,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T06:06:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-22T07:45:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T07:45:44Z,66.505,-162.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T07:45:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-06-23T01:34:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T01:34:03Z,66.431,-162.697,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T01:34:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-23T03:33:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T03:33:52Z,66.457,-162.769,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T03:33:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-23T04:23:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T04:23:32Z,66.475,-162.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T04:23:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-23T07:13:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T07:13:31Z,66.501,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T07:13:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-23T08:53:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T08:53:26Z,66.508,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T08:53:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-23T13:42:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T13:42:55Z,66.56,-162.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T13:42:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-24T00:32:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T00:32:04Z,66.593,-162.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T00:32:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-24T03:07:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T03:07:08Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T03:07:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_2011-06-24T05:51:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T05:51:21Z,66.615,-162.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T05:51:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-06-24T06:51:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T06:51:41Z,66.614,-162.957,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T06:51:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-06-24T07:10:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T07:10:49Z,66.611,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T07:10:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-24T08:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T08:51:08Z,66.609,-162.933,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T08:51:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-25T00:09:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T00:09:16Z,66.614,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T00:09:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-25T01:18:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T01:18:26Z,66.625,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T01:18:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_2011-06-25T02:41:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T02:41:14Z,66.616,-163.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T02:41:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-06-25T03:29:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T03:29:42Z,66.626,-163.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T03:29:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-25T04:41:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T04:41:52Z,66.611,-163.006,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T04:41:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-25T05:04:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T05:04:57Z,66.621,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T05:04:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-25T06:26:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T06:26:11Z,66.618,-162.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T06:26:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-25T07:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T07:22:06Z,66.634,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T07:22:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-25T08:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T08:06:03Z,66.611,-163.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T08:06:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-26T00:38:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T00:38:51Z,66.612,-162.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T00:38:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-06-26T02:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T02:03:51Z,66.606,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T02:03:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-26T03:09:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T03:09:42Z,66.628,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T03:09:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-26T04:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T04:20:01Z,66.615,-162.954,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T04:20:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-26T05:25:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T05:25:22Z,66.611,-162.949,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T05:25:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-26T06:24:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T06:24:28Z,66.628,-162.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T06:24:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-26T08:06:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T08:06:47Z,66.625,-162.903,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T08:06:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-06-27T00:53:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T00:53:46Z,66.504,-163.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T00:53:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-27T01:08:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T01:08:26Z,66.527,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T01:08:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-06-27T02:18:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T02:18:56Z,66.508,-163.036,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T02:18:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-06-27T03:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T03:33:11Z,66.518,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T03:33:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-06-27T04:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T04:29:26Z,66.525,-163.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T04:29:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-06-27T05:36:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T05:36:11Z,66.532,-163.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T05:36:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-06-28T03:03:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T03:03:22Z,66.627,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T03:03:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-28T05:00:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T05:00:08Z,66.634,-163.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T05:00:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-28T06:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T06:45:07Z,66.636,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T06:45:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-06-28T07:23:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T07:23:57Z,66.631,-163.082,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T07:23:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-06-28T08:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T08:36:02Z,66.63,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T08:36:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-06-28T09:04:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T09:04:12Z,66.617,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T09:04:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-06-29T00:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T00:29:26Z,66.7,-163.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-29T00:29:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-29T03:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T03:09:48Z,66.74,-163.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-29T03:09:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-06-29T17:38:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T17:38:47Z,66.842,-163.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-29T17:38:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-29T18:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T18:06:09Z,66.86,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-29T18:06:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-30T02:06:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T02:06:33Z,66.861,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-30T02:06:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-30T04:36:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T04:36:27Z,66.937,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-30T04:36:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-06-30T10:05:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T10:05:17Z,66.988,-163.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-30T10:05:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-01T01:02:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T01:02:21Z,67.031,-164.349,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-01T01:02:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-01T07:50:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T07:50:05Z,67.042,-164.584,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-01T07:50:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-01T15:35:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T15:35:51Z,67.083,-165.046,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-01T15:35:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_2011-07-02T07:42:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T07:42:23Z,67.429,-165.827,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-02T07:42:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-02T12:06:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T12:06:46Z,67.524,-165.951,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-02T12:06:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-02T13:32:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T13:32:11Z,67.563,-166.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-02T13:32:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-02T15:24:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T15:24:00Z,67.594,-166.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-02T15:24:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-02T16:51:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T16:51:50Z,67.624,-166.111,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-02T16:51:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-03T00:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T00:42:52Z,67.724,-166.456,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-03T00:42:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-03T01:09:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T01:09:17Z,67.726,-166.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-03T01:09:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-03T03:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T03:14:13Z,67.754,-166.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-03T03:14:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-03T07:19:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T07:19:08Z,67.83,-166.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-03T07:19:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-04T10:27:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T10:27:18Z,68.531,-167.802,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-04T10:27:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-04T13:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T13:22:06Z,68.614,-167.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-04T13:22:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-05T00:48:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T00:48:34Z,68.814,-167.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-05T00:48:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-05T01:15:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T01:15:53Z,68.799,-167.21,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-05T01:15:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-05T05:46:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T05:46:44Z,68.875,-166.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-05T05:46:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-05T07:07:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T07:07:39Z,68.88,-166.703,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-05T07:07:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-05T13:16:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T13:16:41Z,69.014,-166.442,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-05T13:16:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-07-06T01:45:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T01:45:55Z,69.275,-165.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T01:45:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-06T02:05:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T02:05:39Z,69.283,-165.986,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T02:05:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-06T04:37:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T04:37:29Z,69.309,-165.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T04:37:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-06T06:18:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T06:18:21Z,69.322,-165.82,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T06:18:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-06T07:08:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T07:08:44Z,69.32,-165.812,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T07:08:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-07-06T09:40:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T09:40:17Z,69.341,-165.751,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T09:40:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-06T11:20:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T11:20:44Z,69.346,-165.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T11:20:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-07T00:54:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T00:54:05Z,69.399,-165.385,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T00:54:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-07T01:01:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T01:01:21Z,69.416,-165.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T01:01:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-07T04:54:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T04:54:31Z,69.43,-165.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T04:54:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-07T05:05:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T05:05:05Z,69.436,-165.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T05:05:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-07T13:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T13:02:46Z,69.543,-164.969,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T13:02:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-07T20:22:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T20:22:52Z,69.629,-164.92,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T20:22:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-08T12:40:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-08T12:40:55Z,69.682,-164.257,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-08T12:40:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-09T02:34:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T02:34:30Z,69.818,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T02:34:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-09T05:23:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T05:23:26Z,69.824,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T05:23:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-09T06:57:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T06:57:06Z,69.835,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T06:57:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-09T08:01:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T08:01:24Z,69.83,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T08:01:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-09T10:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T10:51:51Z,69.85,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T10:51:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-09T14:09:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T14:09:09Z,69.834,-163.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T14:09:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-09T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T15:51:15Z,69.825,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T15:51:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-10T03:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T03:51:31Z,69.836,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T03:51:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-10T06:34:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T06:34:13Z,69.857,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T06:34:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-10T07:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T07:13:38Z,69.849,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T07:13:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-10T12:21:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T12:21:32Z,69.858,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T12:21:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-10T13:59:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T13:59:06Z,69.867,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T13:59:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-10T14:02:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T14:02:19Z,69.87,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T14:02:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-10T15:15:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T15:15:43Z,69.875,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T15:15:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-11T00:11:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T00:11:33Z,69.857,-163.606,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-11T00:11:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-11T01:49:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T01:49:20Z,69.863,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-11T01:49:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2011-07-11T02:56:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T02:56:55Z,69.858,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-11T02:56:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-11T03:27:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T03:27:49Z,69.869,-163.571,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-11T03:27:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-11T13:15:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T13:15:14Z,69.874,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-11T13:15:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-12T02:11:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T02:11:32Z,69.768,-163.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T02:11:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-12T06:30:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T06:30:41Z,69.779,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T06:30:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-12T09:19:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T09:19:42Z,69.816,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T09:19:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-12T11:59:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T11:59:25Z,69.827,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T11:59:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-12T13:37:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T13:37:28Z,69.831,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T13:37:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-12T17:42:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T17:42:31Z,69.85,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T17:42:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-12T18:41:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T18:41:42Z,69.867,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T18:41:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-13T13:29:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T13:29:37Z,70.028,-163.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-13T13:29:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-07-13T14:09:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T14:09:22Z,70.03,-163.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-13T14:09:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-07-14T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T05:10:23Z,70.184,-162.602,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-14T05:10:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-14T21:56:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T21:56:00Z,70.381,-161.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-14T21:56:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-15T11:28:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T11:28:11Z,70.453,-161.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-15T11:28:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-15T13:07:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T13:07:28Z,70.456,-161.425,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-15T13:07:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-15T15:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T15:02:20Z,70.42,-161.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-15T15:02:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-15T16:25:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T16:25:24Z,70.445,-161.553,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-15T16:25:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_2011-07-15T17:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T17:03:38Z,70.415,-161.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-15T17:03:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-07-16T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T00:50:28Z,70.4,-161.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-16T00:50:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-07-16T01:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T01:32:28Z,70.403,-161.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-16T01:32:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2011-07-16T02:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T02:32:28Z,70.409,-161.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-16T02:32:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_2011-07-16T03:06:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T03:06:58Z,70.396,-161.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-16T03:06:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-07-16T04:17:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T04:17:28Z,70.398,-161.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-16T04:17:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-07-17T01:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T01:06:22Z,70.386,-161.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T01:06:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-17T02:17:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T02:17:01Z,70.405,-161.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T02:17:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-17T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T06:13:20Z,70.407,-161.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T06:13:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-17T14:32:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T14:32:02Z,70.349,-162.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T14:32:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-07-17T16:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T16:08:51Z,70.311,-162.562,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T16:08:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-17T17:45:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T17:45:06Z,70.287,-162.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T17:45:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-17T18:11:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T18:11:09Z,70.275,-162.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T18:11:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-17T19:32:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T19:32:36Z,70.234,-162.748,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T19:32:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-18T00:27:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T00:27:32Z,70.114,-162.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T00:27:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. +ioos_atn_2011-07-18T02:43:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T02:43:18Z,70.084,-162.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T02:43:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_2011-07-18T03:28:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T03:28:15Z,70.07,-163.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T03:28:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-07-18T04:04:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T04:04:15Z,70.08,-162.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T04:04:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-07-18T05:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T05:07:15Z,70.082,-162.938,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T05:07:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-07-18T06:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T06:07:15Z,70.082,-162.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T06:07:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-18T07:09:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T07:09:55Z,70.086,-162.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T07:09:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-07-19T00:51:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T00:51:20Z,69.829,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T00:51:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. +ioos_atn_2011-07-19T03:03:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T03:03:50Z,69.814,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T03:03:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2011-07-19T04:11:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T04:11:20Z,69.822,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T04:11:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-19T08:29:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T08:29:50Z,69.842,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T08:29:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-19T12:28:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T12:28:03Z,69.757,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T12:28:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-19T13:17:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T13:17:09Z,69.756,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T13:17:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-20T03:13:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T03:13:16Z,69.734,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-20T03:13:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-20T05:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T05:41:26Z,69.748,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-20T05:41:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-20T06:39:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T06:39:56Z,69.755,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-20T06:39:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-07-20T07:22:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T07:22:41Z,69.755,-163.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-20T07:22:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-07-20T08:09:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T08:09:11Z,69.761,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-20T08:09:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-07-21T12:05:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T12:05:51Z,69.711,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-21T12:05:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-21T13:46:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T13:46:00Z,69.706,-163.611,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-21T13:46:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-21T15:21:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T15:21:15Z,69.706,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-21T15:21:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-22T00:08:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T00:08:54Z,69.693,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-22T00:08:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-22T04:08:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T04:08:05Z,69.68,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-22T04:08:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-22T11:52:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T11:52:21Z,69.691,-163.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-22T11:52:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-22T13:52:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T13:52:57Z,69.667,-163.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-22T13:52:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-07-23T01:32:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T01:32:47Z,69.628,-163.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-23T01:32:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-23T06:48:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T06:48:48Z,69.6,-163.877,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-23T06:48:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-07-23T07:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T07:06:03Z,69.6,-163.875,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-23T07:06:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-23T08:31:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T08:31:13Z,69.605,-163.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-23T08:31:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-07-23T11:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T11:41:00Z,69.613,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-23T11:41:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-24T00:10:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T00:10:03Z,69.688,-163.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T00:10:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-24T01:41:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T01:41:51Z,69.7,-163.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T01:41:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-24T02:51:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T02:51:36Z,69.696,-163.899,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T02:51:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-24T06:36:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T06:36:50Z,69.728,-163.935,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T06:36:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-24T08:20:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T08:20:12Z,69.748,-163.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T08:20:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-24T13:12:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T13:12:12Z,69.72,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T13:12:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-24T14:56:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T14:56:47Z,69.717,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T14:56:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-25T02:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T02:21:25Z,69.749,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-25T02:21:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-25T06:24:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T06:24:49Z,69.78,-163.585,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-25T06:24:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-25T11:23:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T11:23:44Z,69.774,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-25T11:23:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-25T13:04:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T13:04:26Z,69.767,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-25T13:04:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-25T14:14:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T14:14:49Z,69.756,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-25T14:14:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-07-26T04:29:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T04:29:07Z,69.766,-163.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-26T04:29:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-26T06:16:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T06:16:26Z,69.775,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-26T06:16:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-26T09:26:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T09:26:49Z,69.785,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-26T09:26:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-26T12:52:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T12:52:06Z,69.8,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-26T12:52:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-26T16:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T16:06:53Z,69.798,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-26T16:06:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-27T00:42:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T00:42:15Z,69.802,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-27T00:42:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_2011-07-27T02:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T02:14:06Z,69.83,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-27T02:14:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 5 records. +ioos_atn_2011-07-27T03:11:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T03:11:21Z,69.801,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-27T03:11:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-28T03:26:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T03:26:35Z,69.744,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-28T03:26:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-28T04:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T04:03:51Z,69.735,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-28T04:03:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-07-28T05:22:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T05:22:01Z,69.736,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-28T05:22:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-07-29T12:18:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T12:18:23Z,69.729,-163.52,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-29T12:18:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-07-29T20:02:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T20:02:45Z,69.696,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-29T20:02:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-30T01:53:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T01:53:52Z,69.702,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-30T01:53:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-30T04:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T04:47:02Z,69.679,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-30T04:47:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-07-30T05:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T05:22:07Z,69.669,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-30T05:22:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-07-30T06:03:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T06:03:17Z,69.669,-163.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-30T06:03:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-07-30T07:03:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T07:03:27Z,69.668,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-30T07:03:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-07-31T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T00:07:45Z,69.666,-163.649,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-31T00:07:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-31T03:13:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T03:13:57Z,69.669,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-31T03:13:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-07-31T07:42:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T07:42:40Z,69.655,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-31T07:42:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-07-31T09:02:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T09:02:22Z,69.656,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-31T09:02:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-07-31T13:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T13:36:04Z,69.667,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-31T13:36:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-08-01T01:18:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T01:18:30Z,69.665,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-01T01:18:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-08-01T03:15:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T03:15:30Z,69.668,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-01T03:15:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-01T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T04:31:07Z,69.669,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-01T04:31:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-01T05:13:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T05:13:58Z,69.664,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-01T05:13:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-08-01T06:42:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T06:42:09Z,69.67,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-01T06:42:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-08-02T02:27:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T02:27:23Z,69.672,-163.739,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-02T02:27:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-02T03:11:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T03:11:08Z,69.678,-163.646,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-02T03:11:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-08-02T04:06:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T04:06:38Z,69.68,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-02T04:06:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-08-02T14:54:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T14:54:19Z,69.656,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-02T14:54:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-03T01:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T01:09:48Z,69.675,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-03T01:09:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-03T02:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T02:00:42Z,69.675,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-03T02:00:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-03T04:31:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T04:31:10Z,69.663,-163.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-03T04:31:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-03T05:21:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T05:21:24Z,69.67,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-03T05:21:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-03T06:16:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T06:16:19Z,69.675,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-03T06:16:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-08-04T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T04:21:21Z,69.685,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T04:21:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-04T05:45:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T05:45:49Z,69.685,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T05:45:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-04T07:26:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T07:26:17Z,69.685,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T07:26:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-04T11:06:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T11:06:32Z,69.688,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T11:06:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-04T12:58:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T12:58:21Z,69.694,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T12:58:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-04T13:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T13:33:49Z,69.699,-163.59,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T13:33:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-04T14:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T14:33:26Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T14:33:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-05T00:58:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T00:58:31Z,69.676,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T00:58:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-05T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T04:21:21Z,69.69,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T04:21:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-05T05:20:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T05:20:19Z,69.687,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T05:20:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-05T12:47:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T12:47:47Z,69.668,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T12:47:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-08-05T15:58:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T15:58:19Z,69.658,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T15:58:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-05T17:42:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T17:42:10Z,69.659,-163.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T17:42:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-06T00:00:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T00:00:25Z,69.653,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-06T00:00:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 6 records. +ioos_atn_2011-08-06T01:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T01:38:40Z,69.65,-163.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-06T01:38:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-06T02:06:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T02:06:40Z,69.644,-163.567,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-06T02:06:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. +ioos_atn_2011-08-07T04:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T04:33:23Z,69.741,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T04:33:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-07T05:24:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T05:24:22Z,69.731,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T05:24:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-07T06:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T06:53:55Z,69.732,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T06:53:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-08-07T07:10:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T07:10:55Z,69.737,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T07:10:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-07T09:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T09:38:40Z,69.743,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T09:38:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-07T10:25:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T10:25:10Z,69.747,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T10:25:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-08-08T01:45:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T01:45:33Z,69.741,-163.619,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-08T01:45:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-08T03:22:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T03:22:23Z,69.732,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-08T03:22:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-08T10:03:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T10:03:23Z,69.724,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-08T10:03:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-08-09T00:04:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T00:04:58Z,69.732,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T00:04:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-09T01:16:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T01:16:31Z,69.732,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T01:16:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-08-09T03:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T03:24:48Z,69.725,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T03:24:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-09T06:47:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T06:47:37Z,69.706,-163.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T06:47:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-09T07:10:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T07:10:20Z,69.704,-163.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T07:10:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-09T08:01:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T08:01:20Z,69.7,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T08:01:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-08-09T09:36:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T09:36:35Z,69.698,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T09:36:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-08-09T10:26:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T10:26:05Z,69.698,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T10:26:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-10T04:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T04:13:56Z,69.678,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T04:13:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-10T05:59:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T05:59:52Z,69.708,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T05:59:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-10T06:45:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T06:45:48Z,69.707,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T06:45:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-10T09:14:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T09:14:52Z,69.72,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T09:14:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-10T11:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T11:46:33Z,69.721,-163.714,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T11:46:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-10T12:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T12:49:55Z,69.725,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T12:49:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-11T02:59:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T02:59:33Z,69.711,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-11T02:59:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-11T07:14:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T07:14:21Z,69.699,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-11T07:14:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-11T18:14:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T18:14:48Z,69.642,-163.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-11T18:14:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-08-12T14:46:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T14:46:19Z,69.686,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-12T14:46:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-12T15:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T15:08:55Z,69.684,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-12T15:08:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-12T16:25:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T16:25:21Z,69.684,-163.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-12T16:25:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-13T04:14:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T04:14:44Z,69.69,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-13T04:14:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-13T12:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T12:55:34Z,69.689,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-13T12:55:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-13T17:54:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T17:54:16Z,69.689,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-13T17:54:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-13T18:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T18:07:01Z,69.689,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-13T18:07:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2011-08-14T06:47:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-14T06:47:14Z,69.681,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-14T06:47:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-15T02:09:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T02:09:24Z,69.686,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-15T02:09:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-08-15T04:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T04:46:52Z,69.69,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-15T04:46:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-15T12:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T12:34:32Z,69.689,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-15T12:34:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-15T14:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T14:09:46Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-15T14:09:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-08-16T06:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T06:08:45Z,69.68,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-16T06:08:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-16T12:37:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T12:37:44Z,69.671,-163.717,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-16T12:37:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-16T17:02:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T17:02:18Z,69.668,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-16T17:02:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. +ioos_atn_2011-08-17T07:19:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T07:19:25Z,69.674,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-17T07:19:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-17T18:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T18:20:04Z,69.693,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-17T18:20:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-17T20:32:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T20:32:27Z,69.681,-163.658,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-17T20:32:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2011-08-17T22:46:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T22:46:07Z,69.686,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-17T22:46:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-18T16:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T16:13:38Z,69.694,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-18T16:13:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-18T17:18:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T17:18:15Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-18T17:18:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-08-19T00:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T00:02:43Z,69.634,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-19T00:02:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-19T04:49:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T04:49:42Z,69.659,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-19T04:49:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-19T06:07:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T06:07:54Z,69.644,-163.706,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-19T06:07:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-19T14:10:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T14:10:48Z,69.677,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-19T14:10:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-20T09:08:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T09:08:38Z,69.696,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-20T09:08:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-20T10:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T10:12:46Z,69.701,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-20T10:12:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-20T11:38:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T11:38:32Z,69.711,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-20T11:38:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-20T12:06:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T12:06:52Z,69.712,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-20T12:06:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-21T07:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T07:06:53Z,69.688,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T07:06:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-21T08:48:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T08:48:04Z,69.689,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T08:48:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-21T16:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T16:50:54Z,69.692,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T16:50:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-21T17:45:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T17:45:54Z,69.689,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T17:45:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-21T20:02:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T20:02:14Z,69.678,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T20:02:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-21T21:30:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T21:30:56Z,69.674,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T21:30:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-22T03:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T03:29:55Z,69.686,-163.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-22T03:29:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-22T05:10:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T05:10:29Z,69.676,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-22T05:10:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-08-22T06:44:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T06:44:54Z,69.665,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-22T06:44:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-22T07:04:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T07:04:18Z,69.662,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-22T07:04:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-23T03:56:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T03:56:30Z,69.671,-163.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T03:56:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-23T16:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T16:23:01Z,69.714,-163.833,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T16:23:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-23T17:33:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T17:33:56Z,69.712,-163.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T17:33:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-23T19:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T19:43:17Z,69.711,-163.819,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T19:43:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-23T21:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T21:07:36Z,69.713,-163.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T21:07:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-23T22:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T22:33:49Z,69.71,-163.817,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T22:33:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-24T07:07:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T07:07:27Z,69.641,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-24T07:07:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-24T08:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T08:53:27Z,69.64,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-24T08:53:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-24T09:25:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T09:25:30Z,69.638,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-24T09:25:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-08-25T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T16:45:07Z,69.675,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-25T16:45:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-25T17:49:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T17:49:47Z,69.681,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-25T17:49:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-25T22:59:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T22:59:37Z,69.68,-163.692,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-25T22:59:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-26T07:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T07:02:20Z,69.736,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-26T07:02:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-26T08:43:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T08:43:55Z,69.746,-163.685,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-26T08:43:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-26T10:51:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T10:51:10Z,69.751,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-26T10:51:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-27T00:43:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T00:43:42Z,69.758,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-27T00:43:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-27T10:04:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T10:04:20Z,69.689,-163.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-27T10:04:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-08-27T12:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T12:03:00Z,69.692,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-27T12:03:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-08-28T04:38:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T04:38:52Z,69.676,-163.698,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T04:38:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-08-28T06:21:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T06:21:05Z,69.678,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T06:21:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-28T09:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T09:48:01Z,69.685,-163.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T09:48:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-28T10:12:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T10:12:16Z,69.677,-163.695,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T10:12:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-28T11:50:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T11:50:56Z,69.688,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T11:50:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-28T12:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T12:07:36Z,69.685,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T12:07:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-29T04:23:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T04:23:52Z,69.689,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-29T04:23:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-29T07:54:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T07:54:54Z,69.684,-163.709,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-29T07:54:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-29T09:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T09:19:26Z,69.666,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-29T09:19:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-08-29T10:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T10:01:01Z,69.669,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-29T10:01:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-08-30T04:28:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T04:28:16Z,69.682,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-30T04:28:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-30T05:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T05:32:28Z,69.682,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-30T05:32:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-08-30T09:01:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T09:01:06Z,69.693,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-30T09:01:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-08-30T10:09:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T10:09:41Z,69.688,-163.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-30T10:09:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-08-30T11:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T11:33:26Z,69.682,-163.726,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-30T11:33:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-08-31T00:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T00:24:48Z,69.684,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-31T00:24:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-31T08:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T08:39:37Z,69.687,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-31T08:39:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-08-31T12:59:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T12:59:16Z,69.696,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-31T12:59:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-01T00:30:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T00:30:29Z,69.686,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T00:30:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-01T02:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T02:09:46Z,69.685,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T02:09:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-01T03:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T03:43:17Z,69.682,-163.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T03:43:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-01T06:45:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T06:45:01Z,69.683,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T06:45:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-01T07:12:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T07:12:04Z,69.682,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T07:12:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-01T08:09:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T08:09:57Z,69.668,-163.705,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T08:09:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-09-01T09:48:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T09:48:12Z,69.68,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T09:48:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-01T10:06:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T10:06:57Z,69.68,-163.69,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T10:06:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-02T07:58:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T07:58:57Z,69.691,-163.657,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-02T07:58:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-02T09:40:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T09:40:52Z,69.687,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-02T09:40:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-09-02T10:56:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T10:56:57Z,69.693,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-02T10:56:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-02T11:20:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T11:20:42Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-02T11:20:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-09-03T00:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T00:41:30Z,69.704,-163.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T00:41:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-09-03T02:18:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T02:18:07Z,69.698,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T02:18:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-03T05:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T05:39:01Z,69.688,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T05:39:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-03T07:20:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T07:20:03Z,69.68,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T07:20:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-03T08:32:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T08:32:12Z,69.683,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T08:32:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-09-03T09:03:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T09:03:57Z,69.678,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T09:03:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-09-03T10:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T10:49:16Z,69.686,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T10:49:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-03T12:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T12:49:48Z,69.676,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T12:49:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-04T02:14:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T02:14:56Z,69.682,-163.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-04T02:14:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-04T08:57:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T08:57:37Z,69.684,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-04T08:57:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-04T22:39:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T22:39:59Z,69.666,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-04T22:39:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-09-05T02:05:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T02:05:44Z,69.683,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-05T02:05:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-05T10:23:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T10:23:09Z,69.687,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-05T10:23:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-05T19:01:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T19:01:41Z,69.677,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-05T19:01:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-06T06:34:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T06:34:11Z,69.697,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-06T06:34:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-06T07:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T07:52:15Z,69.682,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-06T07:52:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-06T08:54:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T08:54:36Z,69.674,-163.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-06T08:54:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-09-06T09:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T09:34:14Z,69.683,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-06T09:34:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-07T09:15:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-07T09:15:50Z,69.816,-163.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-07T09:15:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-08T04:04:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T04:04:27Z,69.678,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-08T04:04:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-08T07:30:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T07:30:16Z,69.693,-163.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-08T07:30:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-09-08T08:44:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T08:44:44Z,69.698,-163.856,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-08T08:44:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-08T09:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T09:20:10Z,69.692,-163.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-08T09:20:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-09-08T10:15:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T10:15:04Z,69.691,-163.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-08T10:15:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-09T01:22:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T01:22:57Z,69.688,-164.088,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-09T01:22:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-09T03:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T03:53:55Z,69.69,-164.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-09T03:53:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-09T04:54:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T04:54:40Z,69.686,-164.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-09T04:54:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-09T07:16:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T07:16:53Z,69.691,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-09T07:16:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-09-09T08:53:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T08:53:14Z,69.694,-164.073,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-09T08:53:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-09-10T02:54:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T02:54:12Z,69.632,-164.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T02:54:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-10T03:41:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T03:41:02Z,69.635,-164.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T03:41:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-10T05:22:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T05:22:51Z,69.633,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T05:22:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-10T07:05:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T07:05:49Z,69.637,-164.14,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T07:05:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-10T08:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T08:34:21Z,69.63,-164.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T08:34:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-10T11:14:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T11:14:32Z,69.61,-164.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T11:14:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-11T00:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T00:34:50Z,69.607,-164.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T00:34:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-11T01:19:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T01:19:22Z,69.603,-164.151,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T01:19:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-09-11T03:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T03:15:32Z,69.596,-164.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T03:15:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-11T04:50:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T04:50:43Z,69.597,-164.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T04:50:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-11T05:53:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T05:53:29Z,69.594,-164.211,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T05:53:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-11T13:06:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T13:06:36Z,69.602,-164.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T13:06:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-11T16:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T16:01:07Z,69.608,-164.16,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T16:01:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-11T17:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T17:15:32Z,69.605,-164.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T17:15:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-12T07:52:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T07:52:25Z,69.749,-163.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-12T07:52:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-09-12T08:30:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T08:30:40Z,69.752,-163.736,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-12T08:30:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-09-13T06:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T06:34:50Z,70.054,-163.138,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-13T06:34:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-09-13T07:30:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T07:30:20Z,70.041,-163.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-13T07:30:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-09-13T08:13:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T08:13:05Z,70.038,-163.18,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-13T08:13:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-13T19:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T19:02:46Z,70.169,-162.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-13T19:02:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-09-14T20:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T20:33:23Z,70.423,-161.314,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-14T20:33:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-14T22:13:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T22:13:11Z,70.43,-161.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-14T22:13:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-14T23:52:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T23:52:41Z,70.438,-161.263,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-14T23:52:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-15T06:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T06:48:01Z,70.454,-161.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-15T06:48:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-15T07:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T07:42:11Z,70.456,-160.972,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-15T07:42:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-09-17T02:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T02:20:01Z,70.965,-158.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-17T02:20:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-17T23:07:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T23:07:30Z,71.244,-157.374,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-17T23:07:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-18T00:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T00:27:05Z,71.228,-157.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-18T00:27:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-18T15:37:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T15:37:55Z,71.43,-156.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-18T15:37:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-19T01:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T01:03:35Z,71.46,-156.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-19T01:03:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-19T03:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T03:07:01Z,71.478,-156.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-19T03:07:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-20T05:39:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T05:39:40Z,71.198,-154.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T05:39:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-09-20T09:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T09:51:31Z,71.122,-154.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T09:51:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-20T11:31:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T11:31:18Z,71.055,-154.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T11:31:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-09-20T12:45:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T12:45:28Z,71.05,-154.613,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T12:45:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-09-20T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T13:02:32Z,71.066,-154.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T13:02:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-20T14:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T14:25:16Z,71.094,-154.575,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T14:25:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-21T00:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T00:42:11Z,71.356,-156.058,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T00:42:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-21T01:28:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T01:28:02Z,71.355,-156.197,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T01:28:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-21T04:50:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T04:50:51Z,71.414,-156.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T04:50:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-21T06:23:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T06:23:45Z,71.406,-156.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T06:23:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-21T09:39:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T09:39:45Z,71.383,-156.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T09:39:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-21T10:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T10:55:34Z,71.358,-157.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T10:55:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-21T12:58:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T12:58:33Z,71.25,-157.451,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T12:58:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-21T17:34:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T17:34:06Z,71.162,-157.974,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T17:34:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-09-22T02:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T02:48:06Z,71.154,-158.309,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T02:48:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-22T04:49:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T04:49:54Z,71.154,-158.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T04:49:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-22T06:09:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T06:09:56Z,71.148,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T06:09:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-22T08:05:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T08:05:34Z,71.15,-158.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T08:05:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-22T12:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T12:25:31Z,71.156,-158.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T12:25:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-22T14:07:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T14:07:32Z,71.165,-158.281,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T14:07:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-22T15:37:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T15:37:45Z,71.165,-158.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T15:37:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-22T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T16:45:07Z,71.155,-158.327,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T16:45:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-22T17:18:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T17:18:10Z,71.151,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T17:18:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-23T00:06:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T00:06:34Z,71.157,-158.329,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-23T00:06:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-23T04:08:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T04:08:23Z,71.17,-158.325,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-23T04:08:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-23T12:10:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T12:10:45Z,71.1,-158.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-23T12:10:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-24T05:46:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-24T05:46:01Z,71.152,-158.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-24T05:46:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-25T22:21:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-25T22:21:18Z,70.489,-162.084,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-25T22:21:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-26T01:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T01:23:07Z,70.501,-162.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-26T01:23:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-26T04:47:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T04:47:46Z,70.493,-162.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-26T04:47:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-26T07:14:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T07:14:38Z,70.501,-162.583,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-26T07:14:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-26T08:01:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T08:01:56Z,70.503,-162.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-26T08:01:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-27T01:35:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T01:35:00Z,70.299,-163.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T01:35:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-27T02:44:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T02:44:50Z,70.302,-163.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T02:44:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-27T04:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T04:27:15Z,70.287,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T04:27:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-27T05:24:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T05:24:12Z,70.284,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T05:24:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-27T07:07:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T07:07:34Z,70.278,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T07:07:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-09-27T09:22:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T09:22:45Z,70.265,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T09:22:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-27T15:18:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T15:18:43Z,70.241,-164.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T15:18:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-28T00:09:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T00:09:33Z,70.205,-164.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T00:09:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-28T02:24:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T02:24:10Z,70.205,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T02:24:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-28T03:30:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T03:30:30Z,70.193,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T03:30:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-28T04:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T04:11:43Z,70.19,-164.093,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T04:11:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-28T05:12:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T05:12:11Z,70.189,-164.112,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T05:12:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-09-28T06:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T06:51:08Z,70.178,-164.142,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T06:51:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-09-28T07:20:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T07:20:30Z,70.175,-164.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T07:20:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-09-28T08:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T08:23:25Z,70.171,-164.156,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T08:23:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-28T09:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T09:02:07Z,70.168,-164.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T09:02:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-09-29T02:08:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T02:08:12Z,70.133,-164.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-29T02:08:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-29T03:48:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T03:48:43Z,70.122,-164.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-29T03:48:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-09-29T06:44:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T06:44:34Z,70.127,-164.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-29T06:44:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-09-29T07:08:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T07:08:36Z,70.125,-164.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-29T07:08:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-29T08:29:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T08:29:36Z,70.125,-164.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-29T08:29:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-30T00:17:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T00:17:46Z,70.093,-164.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T00:17:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-09-30T01:24:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T01:24:34Z,70.098,-164.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T01:24:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-09-30T03:05:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T03:05:42Z,70.081,-164.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T03:05:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-09-30T04:45:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T04:45:38Z,70.065,-164.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T04:45:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-30T05:03:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T05:03:44Z,70.071,-164.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T05:03:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-09-30T08:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T08:10:17Z,70.068,-164.452,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T08:10:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-09-30T09:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T09:47:02Z,70.068,-164.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T09:47:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-01T01:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T01:24:18Z,70.099,-164.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T01:24:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-01T03:16:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T03:16:13Z,70.108,-164.249,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T03:16:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-01T07:58:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T07:58:23Z,70.103,-164.245,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T07:58:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-01T08:10:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T08:10:13Z,70.109,-164.226,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T08:10:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-01T09:34:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T09:34:35Z,70.116,-164.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T09:34:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-01T15:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T15:20:01Z,70.1,-164.269,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T15:20:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-02T00:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T00:08:45Z,70.085,-164.296,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-02T00:08:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-02T01:03:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T01:03:21Z,70.09,-164.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-02T01:03:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-02T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T02:41:57Z,70.093,-164.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-02T02:41:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-10-02T04:20:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T04:20:36Z,70.102,-164.29,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-02T04:20:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-02T07:47:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T07:47:49Z,70.078,-164.272,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-02T07:47:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-03T00:31:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T00:31:26Z,70.214,-164.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-03T00:31:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-03T03:56:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T03:56:15Z,70.243,-164.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-03T03:56:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-03T05:35:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T05:35:57Z,70.246,-164.047,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-03T05:35:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-03T07:18:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T07:18:20Z,70.257,-164.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-03T07:18:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-10-03T16:11:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T16:11:31Z,70.152,-164.241,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-03T16:11:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-04T00:21:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T00:21:07Z,70.106,-164.271,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T00:21:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-04T03:46:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T03:46:32Z,70.058,-164.335,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T03:46:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-04T05:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T05:08:47Z,70.049,-164.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T05:08:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-10-04T06:52:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T06:52:55Z,70.022,-164.411,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T06:52:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-04T07:22:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T07:22:40Z,70.025,-164.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T07:22:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-04T08:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T08:37:00Z,70.025,-164.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T08:37:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-05T02:05:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T02:05:06Z,69.916,-164.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-05T02:05:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-05T05:23:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T05:23:51Z,69.875,-164.822,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-05T05:23:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-05T06:29:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T06:29:21Z,69.874,-164.838,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-05T06:29:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-05T07:10:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T07:10:39Z,69.871,-164.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-05T07:10:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-05T08:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T08:12:01Z,69.864,-164.879,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-05T08:12:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-10-06T00:12:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T00:12:18Z,70.011,-164.503,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T00:12:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-06T03:34:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T03:34:18Z,70.005,-164.472,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T03:34:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-06T04:24:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T04:24:44Z,70.015,-164.462,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T04:24:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-10-06T05:14:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T05:14:37Z,70.025,-164.46,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T05:14:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-06T06:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T06:06:22Z,70.035,-164.47,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T06:06:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-10-06T07:47:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T07:47:10Z,70.04,-164.506,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T07:47:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-10-06T08:40:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T08:40:02Z,70.042,-164.547,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T08:40:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-07T05:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-07T05:45:00Z,69.87,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-07T05:45:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-08T04:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T04:51:51Z,70.231,-162.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-08T04:51:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-08T05:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T05:14:55Z,70.228,-162.31,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-08T05:14:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-10-08T06:31:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T06:31:25Z,70.245,-162.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-08T06:31:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-08T19:32:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T19:32:32Z,70.484,-162.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-08T19:32:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-08T20:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T20:42:54Z,70.461,-162.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-08T20:42:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-09T00:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T00:33:11Z,70.499,-162.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T00:33:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-09T02:57:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T02:57:24Z,70.503,-162.627,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T02:57:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-09T03:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T03:12:01Z,70.512,-162.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T03:12:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-09T04:54:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T04:54:13Z,70.513,-162.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T04:54:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-09T06:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T06:23:07Z,70.516,-162.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T06:23:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-10-09T17:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T17:01:07Z,70.451,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T17:01:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-09T20:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T20:17:48Z,70.433,-163.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T20:17:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-10-10T00:31:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T00:31:49Z,70.374,-164.024,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T00:31:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-10T01:35:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T01:35:53Z,70.354,-164.042,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T01:35:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-10-10T02:45:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T02:45:29Z,70.345,-164.066,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T02:45:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-10T04:24:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T04:24:13Z,70.322,-164.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T04:24:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-10-10T06:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T06:07:55Z,70.285,-164.118,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T06:07:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-10-10T07:51:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T07:51:45Z,70.289,-164.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T07:51:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-10-10T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T13:02:32Z,70.22,-164.256,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T13:02:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-11T01:54:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T01:54:17Z,70.067,-164.33,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-11T01:54:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-11T02:30:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T02:30:02Z,70.066,-164.356,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-11T02:30:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-11T04:12:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T04:12:50Z,70.052,-164.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-11T04:12:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-10-11T05:47:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T05:47:36Z,70.031,-164.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-11T05:47:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-10-11T06:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T06:10:17Z,70.02,-164.41,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-11T06:10:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-12T00:31:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T00:31:30Z,70.074,-164.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-12T00:31:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-12T03:44:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T03:44:13Z,70.051,-164.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-12T03:44:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-12T05:21:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T05:21:13Z,70.041,-164.377,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-12T05:21:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-10-12T07:02:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T07:02:37Z,70.048,-164.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-12T07:02:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-13T00:29:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T00:29:13Z,69.979,-164.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T00:29:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-13T01:46:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T01:46:11Z,69.968,-164.814,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T01:46:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-10-13T03:53:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T03:53:43Z,69.942,-164.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T03:53:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-13T05:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T05:33:21Z,69.93,-164.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T05:33:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-13T12:28:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T12:28:12Z,69.869,-165.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T12:28:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-13T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T15:51:15Z,69.895,-165.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T15:51:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-13T17:41:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T17:41:36Z,69.903,-165.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T17:41:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-13T18:37:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T18:37:53Z,69.912,-165.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T18:37:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-14T00:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T00:15:05Z,69.995,-165.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T00:15:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-14T01:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T01:51:13Z,70.005,-165.735,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T01:51:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-14T03:36:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T03:36:45Z,70.009,-165.849,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T03:36:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-14T05:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T05:08:51Z,70.012,-165.922,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T05:08:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-14T06:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T06:48:13Z,70.025,-165.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T06:48:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-14T07:04:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T07:04:21Z,70.028,-165.887,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T07:04:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-14T08:00:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T08:00:16Z,70.035,-165.863,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T08:00:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-10-15T00:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T00:07:48Z,69.941,-166.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T00:07:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-15T04:10:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T04:10:52Z,69.867,-165.936,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T04:10:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-10-15T05:07:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T05:07:23Z,69.847,-165.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T05:07:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-10-15T13:50:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T13:50:42Z,69.651,-165.808,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T13:50:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-15T14:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T14:59:21Z,69.622,-165.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T14:59:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-15T16:15:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T16:15:03Z,69.601,-165.888,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T16:15:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-15T20:36:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T20:36:05Z,69.487,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T20:36:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-16T02:07:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T02:07:56Z,69.351,-165.798,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-16T02:07:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-16T04:57:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T04:57:44Z,69.328,-165.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-16T04:57:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-16T11:27:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T11:27:46Z,69.279,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-16T11:27:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-16T12:04:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T12:04:10Z,69.272,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-16T12:04:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-17T01:47:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T01:47:12Z,68.941,-165.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T01:47:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-17T03:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T03:04:22Z,68.898,-165.539,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T03:04:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-17T04:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T04:12:46Z,68.866,-165.455,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T04:12:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-17T05:46:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T05:46:28Z,68.863,-165.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T05:46:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-17T06:46:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T06:46:05Z,68.871,-165.252,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T06:46:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-10-17T07:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T07:27:15Z,68.884,-165.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T07:27:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-17T08:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T08:09:30Z,68.885,-165.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T08:09:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-17T09:08:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T09:08:13Z,68.893,-165.231,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T09:08:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-18T21:06:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T21:06:28Z,68.395,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-18T21:06:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-18T23:21:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T23:21:47Z,68.392,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-18T23:21:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-19T00:09:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T00:09:54Z,68.385,-167.24,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T00:09:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-19T01:03:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T01:03:52Z,68.377,-167.28,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T01:03:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-19T03:30:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T03:30:48Z,68.342,-167.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T03:30:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-19T05:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T05:04:51Z,68.318,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T05:04:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-19T06:45:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T06:45:16Z,68.309,-167.398,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T06:45:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-19T07:40:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T07:40:46Z,68.318,-167.434,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T07:40:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-10-19T08:27:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T08:27:16Z,68.339,-167.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T08:27:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-19T10:08:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T10:08:31Z,68.37,-167.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T10:08:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-20T01:26:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T01:26:36Z,68.15,-167.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T01:26:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-20T04:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T04:50:52Z,68.076,-167.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T04:50:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-20T05:33:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T05:33:55Z,68.064,-167.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T05:33:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-20T11:17:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T11:17:40Z,67.946,-167.876,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T11:17:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-20T14:04:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T14:04:09Z,67.909,-167.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T14:04:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-20T17:55:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T17:55:10Z,67.855,-167.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T17:55:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-21T03:58:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T03:58:17Z,67.717,-167.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-21T03:58:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-21T04:29:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T04:29:40Z,67.728,-167.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-21T04:29:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-21T05:13:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T05:13:37Z,67.724,-167.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-21T05:13:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-10-21T06:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T06:51:07Z,67.732,-167.295,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-21T06:51:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-10-21T07:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T07:44:22Z,67.745,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-21T07:44:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-22T01:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T01:33:11Z,67.601,-166.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-22T01:33:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-22T04:07:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T04:07:00Z,67.551,-166.32,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-22T04:07:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-22T13:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T13:41:00Z,67.3,-165.916,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-22T13:41:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-22T20:56:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T20:56:49Z,67.154,-165.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-22T20:56:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-23T00:17:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T00:17:27Z,67.12,-165.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-23T00:17:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-23T01:27:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T01:27:33Z,67.106,-165.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-23T01:27:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-23T02:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T02:46:02Z,67.096,-165.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-23T02:46:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-23T05:13:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T05:13:14Z,67.072,-165.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-23T05:13:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-23T06:03:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T06:03:39Z,67.082,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-23T06:03:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-24T00:14:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T00:14:18Z,67.135,-166.069,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T00:14:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-24T01:40:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T01:40:00Z,67.149,-166.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T01:40:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-24T03:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T03:59:21Z,67.179,-166.179,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T03:59:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-24T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T04:03:01Z,67.183,-166.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T04:03:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-24T05:02:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T05:02:59Z,67.195,-166.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T05:02:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-24T12:16:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T12:16:22Z,67.244,-166.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T12:16:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-24T13:58:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T13:58:42Z,67.252,-166.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T13:58:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-24T15:58:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T15:58:38Z,67.239,-166.601,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T15:58:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-24T17:41:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T17:41:20Z,67.243,-166.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T17:41:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-25T01:59:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T01:59:27Z,67.167,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-25T01:59:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-25T02:04:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T02:04:07Z,67.161,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-25T02:04:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-25T18:53:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T18:53:48Z,67.255,-167.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-25T18:53:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-25T20:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T20:20:10Z,67.281,-167.424,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-25T20:20:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-25T22:00:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T22:00:30Z,67.316,-167.414,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-25T22:00:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-26T03:16:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T03:16:10Z,67.423,-167.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-26T03:16:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-26T06:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T06:38:11Z,67.456,-167.288,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-26T06:38:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-26T15:15:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T15:15:42Z,67.689,-166.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-26T15:15:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-26T16:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T16:21:25Z,67.702,-167.015,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-26T16:21:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-10-27T00:43:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T00:43:29Z,67.855,-167.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T00:43:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-27T01:08:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T01:08:00Z,67.877,-167.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T01:08:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T02:24:24Z,67.911,-167.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T02:24:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-27T04:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T04:22:30Z,67.893,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T04:22:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-27T06:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T06:07:52Z,67.903,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T06:07:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-27T11:42:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T11:42:26Z,67.942,-167.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T11:42:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-27T12:47:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T12:47:55Z,67.958,-167.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T12:47:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-28T00:32:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T00:32:30Z,67.955,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-28T00:32:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2011-10-28T01:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T01:10:36Z,67.958,-167.426,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-28T01:10:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-28T02:15:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T02:15:46Z,67.979,-167.466,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-28T02:15:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2011-10-28T07:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T07:36:02Z,67.951,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-28T07:36:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-28T13:13:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T13:13:21Z,67.974,-167.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-28T13:13:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-10-29T00:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T00:18:22Z,68.211,-167.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T00:18:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-10-29T03:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T03:45:00Z,68.267,-167.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T03:45:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-29T04:03:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T04:03:31Z,68.278,-167.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T04:03:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-29T14:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T14:04:36Z,68.562,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T14:04:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-29T15:41:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T15:41:17Z,68.553,-167.233,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T15:41:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-29T16:26:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T16:26:40Z,68.554,-167.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T16:26:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-29T17:30:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T17:30:38Z,68.544,-167.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T17:30:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-29T18:56:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T18:56:52Z,68.552,-167.216,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T18:56:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-10-29T19:08:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T19:08:41Z,68.545,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T19:08:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-30T00:10:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T00:10:15Z,68.564,-167.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T00:10:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2011-10-30T01:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T01:54:43Z,68.558,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T01:54:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2011-10-30T02:10:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T02:10:32Z,68.557,-167.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T02:10:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-30T03:03:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T03:03:04Z,68.553,-167.205,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T03:03:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2011-10-30T04:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T04:37:00Z,68.556,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T04:37:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-10-30T05:28:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T05:28:22Z,68.547,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T05:28:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-30T06:23:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T06:23:03Z,68.55,-167.157,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T06:23:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-30T07:58:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T07:58:32Z,68.552,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T07:58:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-30T09:44:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T09:44:16Z,68.552,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T09:44:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-10-31T00:39:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T00:39:24Z,68.555,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T00:39:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-31T01:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T01:41:26Z,68.561,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T01:41:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-31T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T02:41:57Z,68.564,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T02:41:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-10-31T03:36:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T03:36:34Z,68.567,-167.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T03:36:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-31T04:34:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T04:34:07Z,68.557,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T04:34:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-10-31T05:17:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T05:17:26Z,68.558,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T05:17:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-31T06:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T06:18:36Z,68.543,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T06:18:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-31T07:38:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T07:38:19Z,68.537,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T07:38:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-10-31T08:00:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T08:00:31Z,68.531,-167.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T08:00:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-10-31T09:18:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T09:18:59Z,68.531,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T09:18:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-01T00:49:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T00:49:31Z,68.563,-167.166,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T00:49:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-11-01T01:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T01:30:26Z,68.548,-167.192,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T01:30:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-01T02:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T02:07:01Z,68.544,-167.15,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T02:07:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-01T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T04:03:01Z,68.541,-167.124,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T04:03:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-01T05:07:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T05:07:25Z,68.535,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T05:07:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_2011-11-01T06:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T06:44:12Z,68.519,-167.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T06:44:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-01T07:15:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T07:15:10Z,68.523,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T07:15:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-01T08:56:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T08:56:10Z,68.512,-167.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T08:56:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-02T00:19:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T00:19:00Z,68.555,-167.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T00:19:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-11-02T01:21:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T01:21:14Z,68.559,-167.128,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T01:21:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-02T02:04:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T02:04:06Z,68.557,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T02:04:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-02T03:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T03:41:30Z,68.55,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T03:41:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-02T05:26:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T05:26:25Z,68.533,-167.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T05:26:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-02T06:33:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T06:33:41Z,68.534,-167.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T06:33:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-02T12:22:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T12:22:54Z,68.506,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T12:22:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-02T15:07:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T15:07:44Z,68.515,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T15:07:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-11-03T03:03:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T03:03:09Z,68.518,-166.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T03:03:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-03T05:00:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T05:00:07Z,68.505,-166.944,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T05:00:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-03T08:22:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T08:22:18Z,68.502,-166.966,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T08:22:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-03T12:11:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T12:11:58Z,68.495,-166.984,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T12:11:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-03T13:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T13:13:56Z,68.492,-166.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T13:13:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-03T14:57:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T14:57:05Z,68.502,-166.961,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T14:57:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-03T15:21:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T15:21:31Z,68.505,-166.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T15:21:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-04T01:20:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T01:20:28Z,68.5,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T01:20:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-04T02:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T02:49:16Z,68.506,-167.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T02:49:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-04T03:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T03:03:00Z,68.507,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T03:03:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-04T04:42:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T04:42:32Z,68.512,-166.995,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T04:42:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2011-11-04T07:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T07:53:27Z,68.489,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T07:53:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-04T13:08:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T13:08:43Z,68.508,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T13:08:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-05T00:47:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T00:47:53Z,68.532,-167.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T00:47:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2011-11-05T02:31:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T02:31:45Z,68.527,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T02:31:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-05T04:21:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T04:21:16Z,68.522,-167.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T04:21:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-11-05T06:00:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T06:00:43Z,68.525,-167.079,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T06:00:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-05T07:38:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T07:38:23Z,68.545,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T07:38:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-05T13:31:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T13:31:47Z,68.543,-167.104,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T13:31:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-06T00:26:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T00:26:03Z,68.531,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-06T00:26:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-06T01:18:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T01:18:01Z,68.528,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-06T01:18:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-06T02:17:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T02:17:38Z,68.529,-167.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-06T02:17:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-11-06T03:54:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T03:54:20Z,68.527,-167.007,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-06T03:54:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-11-06T05:34:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T05:34:44Z,68.54,-166.992,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-06T05:34:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2011-11-07T00:21:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T00:21:54Z,68.542,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T00:21:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-07T01:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T01:11:39Z,68.54,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T01:11:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-11-07T02:03:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T02:03:24Z,68.538,-167.11,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T02:03:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-07T03:31:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T03:31:15Z,68.537,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T03:31:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-07T05:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T05:06:09Z,68.54,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T05:06:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-11-07T06:52:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T06:52:10Z,68.522,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T06:52:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-11-07T07:16:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T07:16:55Z,68.536,-167.129,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T07:16:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-11-07T14:13:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T14:13:12Z,68.534,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T14:13:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-08T00:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T00:08:55Z,68.637,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-08T00:08:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-08T11:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T11:18:22Z,68.545,-167.23,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-08T11:18:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-08T13:58:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T13:58:34Z,68.538,-167.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-08T13:58:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-08T15:40:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T15:40:34Z,68.545,-167.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-08T15:40:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-08T16:20:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T16:20:51Z,68.542,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-08T16:20:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-11-09T00:55:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T00:55:21Z,68.524,-167.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-09T00:55:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-09T02:45:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T02:45:22Z,68.516,-167.011,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-09T02:45:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-09T04:16:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T04:16:37Z,68.511,-167.021,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-09T04:16:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-09T12:49:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T12:49:01Z,68.53,-167.051,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-09T12:49:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-11-10T02:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T02:12:01Z,68.526,-166.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T02:12:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-10T03:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T03:50:53Z,68.527,-166.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T03:50:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-11-10T04:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T04:14:13Z,68.532,-166.84,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T04:14:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-10T06:36:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T06:36:46Z,68.562,-166.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T06:36:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-10T12:38:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T12:38:15Z,68.584,-166.796,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T12:38:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-10T13:38:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T13:38:05Z,68.594,-166.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T13:38:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-11T00:04:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T00:04:33Z,68.513,-167.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T00:04:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-11-11T01:22:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T01:22:13Z,68.512,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T01:22:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-11T03:04:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T03:04:40Z,68.517,-167.127,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T03:04:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 5 records. +ioos_atn_2011-11-11T04:47:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T04:47:26Z,68.507,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T04:47:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-11T05:15:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T05:15:35Z,68.508,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T05:15:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-11T06:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T06:24:38Z,68.509,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T06:24:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-11T10:46:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T10:46:03Z,68.494,-167.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T10:46:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-11T12:28:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T12:28:51Z,68.497,-167.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T12:28:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-11T13:48:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T13:48:03Z,68.496,-167.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T13:48:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-11-12T00:14:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T00:14:16Z,68.513,-167.035,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T00:14:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-12T01:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T01:51:15Z,68.51,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T01:51:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2011-11-12T02:53:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T02:53:05Z,68.502,-167.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T02:53:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-12T03:00:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T03:00:15Z,68.506,-167.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T03:00:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-12T04:37:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T04:37:04Z,68.493,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T04:37:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-12T05:14:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T05:14:29Z,68.495,-167.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T05:14:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-12T06:39:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T06:39:34Z,68.482,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T06:39:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-12T12:15:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T12:15:49Z,68.492,-166.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T12:15:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-12T13:19:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T13:19:17Z,68.496,-167.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T13:19:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-13T00:56:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T00:56:40Z,68.446,-167.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-13T00:56:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-11-13T02:41:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T02:41:45Z,68.465,-167.107,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-13T02:41:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-13T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T04:31:07Z,68.485,-167.125,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-13T04:31:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-13T06:16:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T06:16:01Z,68.486,-167.114,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-13T06:16:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-13T13:05:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T13:05:22Z,68.499,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-13T13:05:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-14T00:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T00:34:21Z,68.505,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T00:34:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_2011-11-14T01:13:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T01:13:40Z,68.546,-167.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T01:13:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-14T02:53:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T02:53:11Z,68.493,-167.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T02:53:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. +ioos_atn_2011-11-14T03:54:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T03:54:41Z,68.48,-167.147,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T03:54:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-11-14T04:07:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T04:07:41Z,68.482,-167.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T04:07:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-11-14T05:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T05:50:11Z,68.473,-167.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T05:50:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-11-15T00:49:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T00:49:43Z,68.424,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T00:49:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. +ioos_atn_2011-11-15T01:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T01:50:53Z,68.423,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T01:50:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-15T02:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T02:04:51Z,68.425,-167.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T02:04:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_2011-11-15T03:28:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T03:28:37Z,68.432,-166.999,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T03:28:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-15T04:00:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T04:00:52Z,68.432,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T04:00:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-11-15T05:22:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T05:22:37Z,68.424,-166.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T05:22:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-16T00:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T00:28:23Z,68.299,-167.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T00:28:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2011-11-16T01:41:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T01:41:08Z,68.286,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T01:41:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-11-16T02:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T02:08:08Z,68.278,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T02:08:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-11-16T03:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T03:05:08Z,68.264,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T03:05:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_2011-11-16T04:46:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T04:46:23Z,68.245,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T04:46:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-16T05:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T05:28:23Z,68.236,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T05:28:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-17T00:17:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T00:17:08Z,68.224,-166.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T00:17:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-11-17T01:02:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T01:02:08Z,68.228,-166.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T01:02:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. +ioos_atn_2011-11-17T02:00:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T02:00:38Z,68.233,-166.718,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T02:00:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-11-17T03:36:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T03:36:38Z,68.243,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T03:36:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-11-17T04:23:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T04:23:08Z,68.248,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T04:23:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-17T05:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T05:14:53Z,68.258,-166.738,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T05:14:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-11-18T01:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T01:28:50Z,68.306,-166.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-18T01:28:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-18T07:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T07:36:04Z,68.384,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-18T07:36:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-18T08:05:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T08:05:29Z,68.391,-166.985,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-18T08:05:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-18T13:53:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T13:53:49Z,68.496,-167.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-18T13:53:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-19T00:10:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T00:10:25Z,68.53,-167.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T00:10:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-11-19T01:33:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T01:33:40Z,68.534,-167.099,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T01:33:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-11-19T02:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T02:49:55Z,68.539,-167.109,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T02:49:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-11-19T03:50:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T03:50:10Z,68.535,-167.116,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T03:50:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-11-19T04:29:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T04:29:10Z,68.536,-167.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T04:29:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-11-19T05:27:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T05:27:40Z,68.539,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T05:27:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-19T06:09:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T06:09:40Z,68.539,-167.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T06:09:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-11-20T00:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T00:24:38Z,68.479,-167.137,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T00:24:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-20T01:30:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T01:30:31Z,68.474,-167.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T01:30:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2011-11-20T02:29:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T02:29:01Z,68.468,-167.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T02:29:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-20T03:09:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T03:09:04Z,68.457,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T03:09:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_2011-11-20T04:09:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T04:09:31Z,68.449,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T04:09:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-11-20T05:06:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T05:06:31Z,68.441,-167.208,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T05:06:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-11-20T06:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T06:23:01Z,68.429,-167.228,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T06:23:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-11-21T00:18:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T00:18:08Z,68.16,-167.554,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T00:18:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-11-21T01:05:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T01:05:19Z,68.139,-167.544,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T01:05:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-11-21T02:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T02:49:15Z,68.069,-167.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T02:49:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-11-21T03:02:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T03:02:50Z,68.074,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T03:02:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-21T04:24:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T04:24:37Z,68.052,-167.492,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T04:24:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-11-21T05:27:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T05:27:37Z,68.041,-167.473,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T05:27:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-11-21T06:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T06:11:43Z,68.032,-167.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T06:11:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-11-22T01:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T01:03:51Z,67.684,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-22T01:03:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-11-22T10:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T10:30:26Z,67.427,-167.284,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-22T10:30:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-22T12:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T12:14:14Z,67.366,-167.285,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-22T12:14:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-22T13:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T13:07:52Z,67.339,-167.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-22T13:07:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-11-23T01:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T01:53:55Z,67.016,-167.791,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-23T01:53:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-11-23T07:14:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T07:14:50Z,66.906,-168.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-23T07:14:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-23T08:02:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T08:02:51Z,66.896,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-23T08:02:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-23T17:49:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T17:49:44Z,66.766,-168.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-23T17:49:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-24T00:39:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T00:39:05Z,66.653,-168.85,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T00:39:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-24T03:14:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T03:14:05Z,66.6,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T03:14:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-11-24T05:09:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T05:09:53Z,66.566,-168.81,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T05:09:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-24T14:29:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T14:29:57Z,66.385,-168.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T14:29:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-24T15:15:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T15:15:58Z,66.374,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T15:15:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-24T16:09:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T16:09:35Z,66.366,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T16:09:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-25T05:18:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T05:18:45Z,66.018,-168.025,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-25T05:18:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-25T14:46:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T14:46:54Z,65.697,-168.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-25T14:46:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-25T20:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T20:07:55Z,65.456,-168.587,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-25T20:07:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-26T00:18:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T00:18:17Z,65.406,-168.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T00:18:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-26T01:46:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T01:46:57Z,65.381,-168.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T01:46:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-26T02:42:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T02:42:07Z,65.358,-168.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T02:42:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-26T07:00:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T07:00:48Z,65.295,-168.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T07:00:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-11-26T08:38:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T08:38:37Z,65.263,-168.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T08:38:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-26T14:10:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T14:10:09Z,65.179,-168.572,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T14:10:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-11-27T00:17:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T00:17:18Z,65.063,-168.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T00:17:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-27T03:18:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T03:18:46Z,65.025,-168.737,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T03:18:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2011-11-27T04:58:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T04:58:58Z,65.006,-168.73,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T04:58:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-11-27T06:35:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T06:35:04Z,64.98,-168.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T06:35:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-27T07:25:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T07:25:15Z,64.965,-168.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T07:25:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-27T11:23:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T11:23:35Z,64.918,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T11:23:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-28T00:47:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T00:47:32Z,64.739,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-28T00:47:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-28T01:36:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T01:36:15Z,64.732,-168.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-28T01:36:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-28T03:09:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T03:09:49Z,64.695,-168.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-28T03:09:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-11-28T06:59:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T06:59:22Z,64.626,-168.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-28T06:59:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-28T18:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T18:33:22Z,64.443,-168.394,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-28T18:33:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-11-29T00:36:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T00:36:13Z,64.302,-168.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T00:36:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-29T04:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T04:51:13Z,64.227,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T04:51:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-29T06:39:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T06:39:41Z,64.196,-168.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T06:39:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-29T07:58:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T07:58:16Z,64.17,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T07:58:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-11-29T13:34:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T13:34:05Z,64.073,-168.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T13:34:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-29T15:14:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T15:14:35Z,64.044,-168.463,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T15:14:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-29T16:02:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T16:02:17Z,64.035,-168.495,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T16:02:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-29T18:21:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T18:21:52Z,64.005,-168.469,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T18:21:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-30T02:21:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T02:21:35Z,63.893,-168.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-30T02:21:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-11-30T12:30:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T12:30:14Z,63.714,-168.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-30T12:30:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-11-30T15:03:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T15:03:02Z,63.643,-168.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-30T15:03:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-11-30T18:18:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T18:18:19Z,63.552,-168.513,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-30T18:18:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-11-30T19:49:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T19:49:53Z,63.519,-168.487,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-30T19:49:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-12-01T00:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T00:52:15Z,63.38,-168.373,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T00:52:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-01T05:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T05:51:46Z,63.179,-168.261,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T05:51:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-01T08:42:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T08:42:24Z,63.044,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T08:42:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-01T13:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T13:12:37Z,62.941,-168.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T13:12:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-01T15:52:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T15:52:12Z,62.919,-168.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T15:52:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-12-01T23:57:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T23:57:47Z,62.886,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T23:57:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-02T02:41:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T02:41:10Z,62.855,-168.823,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-02T02:41:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-02T12:10:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T12:10:31Z,62.793,-169.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-02T12:10:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-02T13:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T13:03:01Z,62.792,-169.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-02T13:03:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-12-04T02:11:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T02:11:24Z,62.72,-170.217,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T02:11:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-12-04T03:33:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T03:33:19Z,62.722,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T03:33:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-04T04:11:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T04:11:49Z,62.718,-170.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T04:11:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-04T05:15:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T05:15:15Z,62.704,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T05:15:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-04T07:32:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T07:32:57Z,62.685,-170.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T07:32:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-04T11:49:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T11:49:08Z,62.684,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T11:49:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-05T04:10:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T04:10:22Z,62.475,-170.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T04:10:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-05T05:56:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T05:56:27Z,62.449,-169.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T05:56:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-05T07:14:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T07:14:31Z,62.452,-169.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T07:14:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-05T12:27:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T12:27:54Z,62.461,-169.869,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T12:27:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-05T13:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T13:17:30Z,62.462,-169.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T13:17:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-05T17:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T17:27:05Z,62.471,-169.864,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T17:27:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-05T18:49:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T18:49:00Z,62.477,-169.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T18:49:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-06T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T00:07:45Z,62.519,-169.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-06T00:07:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-06T01:01:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T01:01:45Z,62.513,-169.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-06T01:01:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-12-06T03:16:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T03:16:45Z,62.499,-169.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-06T03:16:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-12-06T05:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T05:17:30Z,62.479,-169.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-06T05:17:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-07T00:45:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T00:45:17Z,62.354,-170.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-07T00:45:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-07T01:18:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T01:18:04Z,62.351,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-07T01:18:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-07T03:23:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T03:23:10Z,62.349,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-07T03:23:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-07T05:02:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T05:02:23Z,62.372,-170.365,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-07T05:02:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-08T00:53:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T00:53:34Z,62.565,-170.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T00:53:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-08T02:19:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T02:19:55Z,62.578,-170.512,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T02:19:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-08T04:17:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T04:17:23Z,62.605,-170.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T04:17:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-08T06:05:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T06:05:35Z,62.628,-170.493,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T06:05:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-08T09:33:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T09:33:01Z,62.668,-170.441,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T09:33:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-08T13:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T13:38:11Z,62.737,-170.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T13:38:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-08T14:26:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T14:26:58Z,62.75,-170.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T14:26:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-08T16:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T16:08:08Z,62.792,-170.382,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T16:08:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-09T00:58:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T00:58:03Z,62.87,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T00:58:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-12-09T01:15:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T01:15:18Z,62.872,-170.221,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T01:15:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-09T02:09:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T02:09:18Z,62.869,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T02:09:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_2011-12-09T03:07:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T03:07:47Z,62.835,-170.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T03:07:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-09T06:03:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T06:03:34Z,62.869,-170.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T06:03:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-09T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T09:11:19Z,62.882,-170.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T09:11:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-10T00:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T00:23:25Z,62.835,-169.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T00:23:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-10T05:29:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T05:29:56Z,62.804,-169.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T05:29:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-12-10T07:25:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T07:25:51Z,62.799,-169.45,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T07:25:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-12-10T08:48:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T08:48:37Z,62.815,-169.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T08:48:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-10T14:57:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T14:57:43Z,62.838,-169.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T14:57:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-10T18:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T18:44:22Z,62.868,-169.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T18:44:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-11T03:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T03:48:13Z,62.882,-168.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T03:48:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-11T04:41:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T04:41:21Z,62.878,-168.76,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T04:41:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-11T05:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T05:09:51Z,62.879,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T05:09:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-12-11T06:49:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T06:49:21Z,62.894,-168.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T06:49:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-11T07:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T07:14:06Z,62.902,-168.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T07:14:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-11T08:29:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T08:29:51Z,62.926,-168.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T08:29:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-12-12T01:32:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T01:32:39Z,62.881,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-12T01:32:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-12T04:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T04:17:48Z,62.847,-168.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-12T04:17:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-12T13:44:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T13:44:07Z,62.782,-168.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-12T13:44:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-12T14:37:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T14:37:47Z,62.788,-168.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-12T14:37:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-12T16:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T16:19:26Z,62.788,-168.416,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-12T16:19:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-13T00:07:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T00:07:18Z,62.791,-168.267,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-13T00:07:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-13T06:06:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T06:06:00Z,62.77,-168.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-13T06:06:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-13T07:45:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T07:45:47Z,62.773,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-13T07:45:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-13T13:37:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T13:37:40Z,62.758,-168.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-13T13:37:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-13T15:52:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T15:52:11Z,62.753,-168.224,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-13T15:52:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-14T00:22:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T00:22:02Z,62.798,-168.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-14T00:22:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-12-14T01:37:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T01:37:23Z,62.795,-168.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-14T01:37:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-12-14T02:33:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T02:33:24Z,62.806,-168.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-14T02:33:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-12-14T03:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T03:14:14Z,62.804,-168.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-14T03:14:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-12-15T03:02:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T03:02:30Z,62.669,-168.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-15T03:02:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-15T04:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T04:44:22Z,62.654,-168.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-15T04:44:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-12-15T14:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T14:04:22Z,62.506,-168.846,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-15T14:04:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-15T15:46:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T15:46:04Z,62.471,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-15T15:46:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-15T16:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T16:46:02Z,62.468,-168.87,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-15T16:46:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-16T04:49:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T04:49:26Z,62.326,-169.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-16T04:49:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-16T11:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T11:22:07Z,62.316,-169.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-16T11:22:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-16T15:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T15:34:14Z,62.311,-169.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-16T15:34:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-16T16:17:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T16:17:29Z,62.314,-169.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-16T16:17:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-16T18:01:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T18:01:02Z,62.307,-169.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-16T18:01:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2011-12-17T00:46:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T00:46:09Z,62.254,-169.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T00:46:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-17T12:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T12:51:46Z,62.205,-170.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T12:51:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-17T14:33:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T14:33:25Z,62.245,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T14:33:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-17T18:42:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T18:42:06Z,62.309,-170.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T18:42:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-17T19:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T19:49:15Z,62.332,-170.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T19:49:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-12-17T21:31:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T21:31:14Z,62.351,-170.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T21:31:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-18T03:31:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T03:31:59Z,62.398,-170.479,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-18T03:31:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-18T04:03:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T04:03:55Z,62.395,-170.483,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-18T04:03:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-12-18T07:42:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T07:42:35Z,62.398,-170.496,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-18T07:42:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-12-18T16:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T16:50:28Z,62.437,-170.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-18T16:50:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-19T03:03:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T03:03:58Z,62.519,-170.797,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-19T03:03:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-19T05:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T05:18:36Z,62.522,-170.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-19T05:18:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2011-12-19T07:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T07:08:47Z,62.522,-170.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-19T07:08:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-20T04:56:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T04:56:42Z,62.438,-170.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-20T04:56:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-12-20T05:28:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T05:28:27Z,62.436,-170.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-20T05:28:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-20T06:45:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T06:45:42Z,62.428,-170.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-20T06:45:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-12-20T07:02:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T07:02:57Z,62.429,-170.803,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-20T07:02:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-12-20T08:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T08:44:12Z,62.435,-170.816,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-20T08:44:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-12-21T00:44:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T00:44:43Z,62.52,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T00:44:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-21T01:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T01:17:50Z,62.525,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T01:17:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2011-12-21T02:32:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T02:32:53Z,62.535,-170.766,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T02:32:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-12-21T03:31:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T03:31:23Z,62.537,-170.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T03:31:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2011-12-21T04:33:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T04:33:38Z,62.531,-170.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T04:33:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-12-21T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T05:10:23Z,62.529,-170.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T05:10:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2011-12-21T06:20:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T06:20:53Z,62.526,-170.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T06:20:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-22T00:36:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T00:36:01Z,62.482,-170.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-22T00:36:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-22T04:08:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T04:08:59Z,62.41,-170.78,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-22T04:08:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2011-12-22T05:49:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T05:49:11Z,62.405,-170.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-22T05:49:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-22T09:42:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T09:42:44Z,62.309,-170.807,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-22T09:42:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-22T14:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T14:25:59Z,62.274,-170.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-22T14:25:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2011-12-23T00:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T00:33:21Z,62.232,-171.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T00:33:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-23T01:30:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T01:30:22Z,62.198,-171.159,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T01:30:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-23T03:45:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T03:45:10Z,62.17,-171.209,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T03:45:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-23T07:15:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T07:15:13Z,62.11,-171.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T07:15:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-12-23T20:15:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T20:15:19Z,61.942,-171.594,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T20:15:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-23T21:25:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T21:25:39Z,61.912,-171.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T21:25:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-25T16:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T16:01:01Z,61.638,-171.144,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-25T16:01:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-25T21:49:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T21:49:25Z,61.515,-171.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-25T21:49:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-26T03:17:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T03:17:34Z,61.414,-171.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-26T03:17:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-26T04:13:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T04:13:26Z,61.386,-171.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-26T04:13:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-26T05:49:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T05:49:13Z,61.346,-171.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-26T05:49:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-26T23:44:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T23:44:51Z,61.145,-171.634,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-26T23:44:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-27T01:27:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T01:27:56Z,61.141,-171.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-27T01:27:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-27T14:29:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T14:29:22Z,60.937,-171.847,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-27T14:29:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-28T05:08:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T05:08:52Z,60.725,-171.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-28T05:08:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-28T12:39:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T12:39:46Z,60.671,-171.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-28T12:39:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-28T14:27:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T14:27:22Z,60.702,-171.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-28T14:27:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-28T15:05:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T15:05:41Z,60.719,-171.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-28T15:05:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-28T16:00:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T16:00:46Z,60.763,-171.793,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-28T16:00:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-29T06:59:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T06:59:09Z,61.111,-171.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-29T06:59:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-29T12:28:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T12:28:13Z,61.136,-171.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-29T12:28:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-29T14:51:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T14:51:39Z,61.139,-171.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-29T14:51:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-29T17:51:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T17:51:14Z,61.154,-171.722,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-29T17:51:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-30T00:47:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T00:47:08Z,61.156,-171.929,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-30T00:47:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-30T03:43:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T03:43:02Z,61.181,-171.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-30T03:43:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-30T14:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T14:42:52Z,61.118,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-30T14:42:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-31T00:38:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T00:38:33Z,61.106,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T00:38:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2011-12-31T01:45:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T01:45:02Z,61.099,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T01:45:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2011-12-31T02:25:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T02:25:55Z,61.071,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T02:25:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2011-12-31T03:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T03:11:39Z,61.078,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T03:11:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2011-12-31T04:57:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T04:57:50Z,61.064,-172.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T04:57:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2011-12-31T05:00:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T05:00:50Z,61.068,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T05:00:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2011-12-31T06:35:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T06:35:20Z,61.051,-172.176,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T06:35:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-01-01T00:36:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T00:36:20Z,61.067,-172.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-01T00:36:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-01T07:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T07:00:42Z,61.022,-172.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-01T07:00:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-01T21:40:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T21:40:32Z,60.938,-172.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-01T21:40:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-02T02:22:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T02:22:11Z,60.951,-172.545,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-02T02:22:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-02T06:12:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T06:12:45Z,60.949,-172.543,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-02T06:12:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-01-02T07:33:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T07:33:15Z,60.95,-172.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-02T07:33:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-02T18:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T18:27:03Z,61.007,-172.435,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-02T18:27:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-02T20:16:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T20:16:40Z,60.996,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-02T20:16:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-03T03:37:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T03:37:22Z,60.931,-172.407,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-03T03:37:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-03T17:18:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T17:18:27Z,60.886,-172.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-03T17:18:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-05T01:23:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T01:23:16Z,60.756,-172.101,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-05T01:23:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-05T06:30:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T06:30:25Z,60.768,-171.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-05T06:30:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-05T07:00:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T07:00:01Z,60.78,-171.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-05T07:00:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-01-05T21:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T21:02:07Z,60.749,-171.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-05T21:02:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-06T01:13:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T01:13:18Z,60.749,-171.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T01:13:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-06T02:29:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T02:29:35Z,60.77,-171.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T02:29:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-06T03:40:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T03:40:57Z,60.776,-171.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T03:40:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-01-06T04:10:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T04:10:02Z,60.805,-171.439,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T04:10:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2012-01-06T05:50:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T05:50:07Z,60.775,-171.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T05:50:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-01-06T06:11:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T06:11:07Z,60.766,-171.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T06:11:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-06T07:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T07:02:43Z,60.762,-171.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T07:02:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-07T14:59:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T14:59:56Z,61.009,-172.201,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-07T14:59:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-07T15:53:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T15:53:35Z,61.001,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-07T15:53:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-08T03:24:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T03:24:06Z,60.912,-172.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-08T03:24:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-08T18:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T18:46:33Z,60.878,-172.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-08T18:46:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-08T19:36:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T19:36:36Z,60.886,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-08T19:36:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-01-08T20:55:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T20:55:23Z,60.887,-172.022,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-08T20:55:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-09T20:14:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T20:14:54Z,60.9,-172.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-09T20:14:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-09T23:54:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T23:54:32Z,60.86,-172.018,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-09T23:54:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-10T00:38:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T00:38:41Z,60.865,-172.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-10T00:38:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-10T01:37:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T01:37:56Z,60.852,-172.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-10T01:37:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-10T02:36:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T02:36:53Z,60.848,-172.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-10T02:36:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-01-10T21:59:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T21:59:38Z,60.953,-171.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-10T21:59:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-10T23:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T23:39:01Z,60.945,-171.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-10T23:39:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-12T23:59:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-12T23:59:26Z,61.006,-171.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-12T23:59:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-13T01:44:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T01:44:14Z,61.024,-171.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-13T01:44:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-13T03:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T03:50:54Z,61.064,-172.056,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-13T03:50:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-13T22:32:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T22:32:37Z,61.087,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-13T22:32:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-14T02:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T02:42:54Z,61.054,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-14T02:42:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-14T10:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T10:12:37Z,61.084,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-14T10:12:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-15T00:33:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T00:33:43Z,61.232,-172.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T00:33:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-01-15T01:55:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T01:55:03Z,61.201,-172.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T01:55:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2012-01-15T02:14:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T02:14:51Z,61.191,-172.529,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T02:14:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2012-01-15T03:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T03:07:48Z,61.185,-172.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T03:07:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_2012-01-15T04:44:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T04:44:33Z,61.186,-172.57,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T04:44:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-01-15T05:31:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T05:31:03Z,61.186,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T05:31:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-01-15T06:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T06:24:18Z,61.19,-172.576,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T06:24:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-16T01:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T01:15:05Z,61.253,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T01:15:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-01-16T02:53:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T02:53:04Z,61.255,-172.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T02:53:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_2012-01-16T03:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T03:20:04Z,61.242,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T03:20:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-01-16T04:20:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T04:20:49Z,61.248,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T04:20:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-01-16T05:01:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T05:01:42Z,61.246,-172.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T05:01:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-01-16T06:05:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T06:05:04Z,61.25,-172.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T06:05:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2012-01-17T00:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T00:54:43Z,61.265,-172.294,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-17T00:54:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-17T01:25:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T01:25:45Z,61.261,-172.304,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-17T01:25:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-17T02:44:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T02:44:52Z,61.259,-172.274,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-17T02:44:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-17T07:25:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T07:25:06Z,61.221,-172.387,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-17T07:25:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-17T16:43:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T16:43:31Z,61.227,-172.482,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-17T16:43:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-18T05:59:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T05:59:48Z,60.996,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-18T05:59:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-18T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T06:13:20Z,61.012,-172.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-18T06:13:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-18T12:17:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T12:17:42Z,60.975,-172.874,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-18T12:17:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-19T04:22:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T04:22:42Z,60.925,-172.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-19T04:22:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-19T06:41:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T06:41:13Z,60.933,-172.313,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-19T06:41:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-19T13:49:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T13:49:23Z,60.96,-172.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-19T13:49:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-19T22:09:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T22:09:03Z,60.913,-171.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-19T22:09:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-19T23:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T23:48:06Z,60.939,-171.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-19T23:48:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-20T06:00:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T06:00:39Z,60.966,-171.841,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-20T06:00:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-01-20T11:58:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T11:58:12Z,60.982,-171.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-20T11:58:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-20T17:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T17:20:06Z,60.973,-171.768,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-20T17:20:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-20T19:41:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T19:41:46Z,60.957,-171.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-20T19:41:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-21T01:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T01:58:36Z,60.857,-171.828,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T01:58:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-21T04:00:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T04:00:49Z,60.829,-171.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T04:00:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-01-21T13:27:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T13:27:08Z,60.771,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T13:27:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-21T16:50:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T16:50:02Z,60.796,-171.915,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T16:50:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-21T19:31:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T19:31:28Z,60.78,-171.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T19:31:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-21T22:20:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T22:20:17Z,60.729,-171.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T22:20:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-21T23:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T23:25:16Z,60.717,-171.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T23:25:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-22T01:03:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T01:03:16Z,60.703,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-22T01:03:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-01-22T17:13:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T17:13:17Z,60.705,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-22T17:13:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-22T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T20:47:29Z,60.704,-171.886,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-22T20:47:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-23T00:53:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T00:53:18Z,60.666,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-23T00:53:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-23T02:22:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T02:22:34Z,60.637,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-23T02:22:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-23T04:01:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T04:01:29Z,60.624,-171.912,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-23T04:01:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-23T06:37:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T06:37:11Z,60.627,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-23T06:37:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-23T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T20:47:29Z,60.495,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-23T20:47:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-01-24T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T00:50:28Z,60.504,-171.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T00:50:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-24T01:22:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T01:22:43Z,60.509,-171.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T01:22:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-24T15:14:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T15:14:07Z,60.627,-171.946,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T15:14:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-24T18:57:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T18:57:40Z,60.649,-171.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T18:57:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-24T20:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T20:34:32Z,60.675,-171.934,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T20:34:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-24T22:09:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T22:09:59Z,60.682,-171.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T22:09:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-25T01:12:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T01:12:57Z,60.656,-171.976,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-25T01:12:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-25T04:58:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T04:58:52Z,60.683,-172.041,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-25T04:58:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-26T00:56:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-26T00:56:18Z,60.842,-171.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-26T00:56:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T02:24:24Z,60.894,-171.593,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T02:24:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-27T03:25:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T03:25:03Z,60.898,-171.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T03:25:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-27T04:31:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T04:31:48Z,60.883,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T04:31:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2012-01-27T05:01:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T05:01:48Z,60.884,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T05:01:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-01-27T06:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T06:16:03Z,60.887,-171.636,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T06:16:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-01-27T07:18:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T07:18:18Z,60.891,-171.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T07:18:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-01-28T16:09:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T16:09:15Z,60.941,-171.815,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-28T16:09:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-01-28T23:49:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T23:49:34Z,61.026,-171.852,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-28T23:49:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-29T00:22:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T00:22:49Z,61.033,-171.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T00:22:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-29T01:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T01:33:22Z,61.047,-171.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T01:33:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-01-29T15:57:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T15:57:01Z,61.083,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T15:57:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-01-29T19:44:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T19:44:01Z,61.067,-172.076,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T19:44:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-01-29T21:15:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T21:15:39Z,61.064,-172.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T21:15:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-29T23:46:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T23:46:36Z,61.055,-172.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T23:46:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-01-30T02:44:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-30T02:44:23Z,61.056,-172.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-30T02:44:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-05T08:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T08:17:50Z,60.796,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-05T08:17:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-05T12:30:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T12:30:12Z,60.777,-173.023,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-05T12:30:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-06T07:34:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T07:34:57Z,60.769,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-06T07:34:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-02-06T08:51:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T08:51:16Z,60.771,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-06T08:51:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-02-06T09:15:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T09:15:16Z,60.774,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-06T09:15:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-02-07T02:51:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T02:51:53Z,60.827,-172.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T02:51:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-07T05:45:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T05:45:57Z,60.81,-172.608,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T05:45:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-07T07:17:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T07:17:06Z,60.776,-172.612,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T07:17:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-07T08:30:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T08:30:21Z,60.78,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T08:30:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-07T09:04:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T09:04:32Z,60.791,-172.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T09:04:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-07T10:17:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T10:17:02Z,60.771,-172.618,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T10:17:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-08T02:26:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T02:26:57Z,60.76,-172.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-08T02:26:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-08T05:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T05:25:31Z,60.76,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-08T05:25:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-08T14:12:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T14:12:54Z,60.759,-172.731,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-08T14:12:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-02-08T20:47:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T20:47:54Z,60.78,-172.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-08T20:47:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-08T21:00:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T21:00:32Z,60.796,-172.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-08T21:00:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-09T01:26:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T01:26:42Z,60.808,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T01:26:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-09T03:52:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T03:52:28Z,60.819,-172.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T03:52:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-09T05:12:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T05:12:49Z,60.815,-172.733,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T05:12:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-09T06:38:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T06:38:46Z,60.818,-172.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T06:38:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-09T07:55:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T07:55:44Z,60.81,-172.749,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T07:55:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-09T13:26:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T13:26:27Z,60.818,-172.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T13:26:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-09T15:06:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T15:06:35Z,60.831,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T15:06:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-10T01:35:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T01:35:01Z,60.821,-172.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T01:35:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-10T03:18:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T03:18:09Z,60.825,-172.764,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T03:18:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2012-02-10T05:04:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T05:04:05Z,60.85,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T05:04:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-02-10T06:16:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T06:16:05Z,60.843,-172.782,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T06:16:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-02-10T07:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T07:28:50Z,60.846,-172.783,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T07:28:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-02-10T08:27:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T08:27:20Z,60.847,-172.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T08:27:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-02-10T09:09:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T09:09:20Z,60.846,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T09:09:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-02-11T00:54:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T00:54:06Z,60.886,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T00:54:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2012-02-11T01:33:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T01:33:51Z,60.885,-172.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T01:33:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2012-02-11T02:13:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T02:13:36Z,60.896,-172.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T02:13:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2012-02-11T03:00:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T03:00:06Z,60.883,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T03:00:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2012-02-11T04:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T04:10:36Z,60.886,-172.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T04:10:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2012-02-11T05:31:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T05:31:36Z,60.893,-172.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T05:31:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-02-12T06:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T06:23:27Z,60.996,-172.49,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-12T06:23:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-12T08:26:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T08:26:18Z,61.008,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-12T08:26:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-12T20:08:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T20:08:15Z,60.973,-172.282,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-12T20:08:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-12T22:56:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T22:56:36Z,60.974,-172.243,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-12T22:56:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-13T04:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T04:27:03Z,60.949,-172.264,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-13T04:27:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-13T05:00:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T05:00:54Z,60.953,-172.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-13T05:00:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-02-13T06:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T06:05:08Z,60.963,-172.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-13T06:05:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2012-02-13T07:56:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T07:56:53Z,60.985,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-13T07:56:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-02-13T08:05:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T08:05:38Z,60.988,-172.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-13T08:05:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-02-14T00:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T00:23:27Z,61.036,-172.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T00:23:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_2012-02-14T01:46:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T01:46:39Z,61.036,-172.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T01:46:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-02-14T02:13:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T02:13:39Z,61.029,-172.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T02:13:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-02-14T03:01:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T03:01:39Z,61.027,-172.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T03:01:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-02-14T04:15:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T04:15:09Z,61.03,-172.064,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T04:15:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_2012-02-14T05:53:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T05:53:24Z,61.039,-172.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T05:53:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-02-14T06:05:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T06:05:24Z,61.042,-172.108,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T06:05:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-02-15T00:12:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T00:12:23Z,61.082,-172.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-15T00:12:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-15T07:36:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T07:36:58Z,61.018,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-15T07:36:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_2012-02-15T22:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T22:51:07Z,60.951,-172.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-15T22:51:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-16T00:28:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T00:28:35Z,60.952,-172.353,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-16T00:28:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-16T04:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T04:14:53Z,60.912,-172.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-16T04:14:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-16T07:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T07:16:03Z,60.907,-172.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-16T07:16:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-16T16:17:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T16:17:45Z,60.868,-172.592,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-16T16:17:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-18T01:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T01:27:03Z,60.998,-172.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-18T01:27:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-18T06:28:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T06:28:55Z,60.998,-172.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-18T06:28:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-18T15:19:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T15:19:37Z,61.029,-172.364,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-18T15:19:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-18T20:10:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T20:10:57Z,61.009,-172.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-18T20:10:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-18T21:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T21:49:48Z,60.992,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-18T21:49:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_2012-02-19T01:17:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T01:17:19Z,60.971,-172.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T01:17:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-19T03:10:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T03:10:46Z,60.981,-172.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T03:10:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-19T04:55:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T04:55:31Z,60.987,-172.386,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T04:55:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-19T07:40:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T07:40:59Z,60.97,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T07:40:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-19T11:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T11:39:37Z,60.945,-172.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T11:39:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-19T15:07:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T15:07:16Z,60.966,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T15:07:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-02-20T01:08:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T01:08:21Z,60.924,-172.3,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-20T01:08:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-20T07:19:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T07:19:40Z,60.967,-172.338,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-20T07:19:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-20T09:00:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T09:00:02Z,60.951,-172.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-20T09:00:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-20T11:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T11:33:21Z,60.968,-172.362,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-20T11:33:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-20T16:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T16:58:36Z,61.034,-172.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-20T16:58:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-21T01:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T01:22:30Z,61.029,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-21T01:22:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-21T02:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T02:20:06Z,61.034,-172.343,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-21T02:20:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-22T00:38:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-22T00:38:04Z,60.968,-172.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-22T00:38:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-23T02:11:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T02:11:45Z,60.933,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-23T02:11:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_2012-02-23T03:05:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T03:05:45Z,60.915,-172.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-23T03:05:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_2012-02-23T04:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T04:09:30Z,60.921,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-23T04:09:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_2012-02-23T05:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T05:49:15Z,60.929,-172.278,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-23T05:49:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-23T06:06:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T06:06:30Z,60.927,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-23T06:06:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-02-24T23:08:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-24T23:08:42Z,60.957,-172.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-24T23:08:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-25T13:58:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T13:58:47Z,60.953,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-25T13:58:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-25T20:55:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T20:55:47Z,60.933,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-25T20:55:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-26T01:59:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T01:59:55Z,60.889,-172.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-26T01:59:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-26T06:42:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T06:42:50Z,60.806,-173.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-26T06:42:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-02-27T07:55:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T07:55:19Z,60.811,-172.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-27T07:55:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-27T21:34:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T21:34:24Z,60.89,-172.521,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-27T21:34:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-28T02:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T02:50:11Z,60.875,-172.55,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-28T02:50:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-02-28T04:07:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T04:07:53Z,60.879,-172.558,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-28T04:07:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-28T07:55:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T07:55:54Z,60.898,-172.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-28T07:55:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-28T08:13:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T08:13:07Z,60.889,-172.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-28T08:13:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-28T09:37:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T09:37:07Z,60.894,-172.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-28T09:37:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-02-29T05:21:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T05:21:48Z,61.012,-172.577,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-29T05:21:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-02-29T06:21:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T06:21:28Z,61.006,-172.552,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-29T06:21:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-02-29T23:07:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T23:07:10Z,60.936,-172.366,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-29T23:07:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-03-01T03:09:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T03:09:25Z,60.93,-172.328,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-01T03:09:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-03-01T04:22:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T04:22:46Z,60.92,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-01T04:22:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-03-02T02:59:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T02:59:35Z,60.914,-172.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-02T02:59:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-03-02T06:22:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T06:22:25Z,60.88,-172.22,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-02T06:22:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-03-02T08:03:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T08:03:30Z,60.896,-172.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-02T08:03:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_2012-03-06T00:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T00:25:59Z,61.033,-171.893,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-06T00:25:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-03-06T02:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T02:14:55Z,61.091,-171.993,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-06T02:14:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-03-06T06:23:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T06:23:29Z,61.074,-171.987,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-06T06:23:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_2012-03-06T08:07:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T08:07:06Z,61.083,-171.921,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-06T08:07:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_2012-03-07T04:37:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-07T04:37:13Z,61.091,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-07T04:37:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_2012-03-10T06:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T06:29:55Z,60.917,-172.193,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-10T06:29:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_2012-03-10T22:53:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T22:53:10Z,60.819,-172.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-10T22:53:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-03-10T23:30:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T23:30:55Z,60.816,-172.07,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-10T23:30:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_2012-03-11T01:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-11T01:09:51Z,60.817,-172.102,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-11T01:09:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml new file mode 100644 index 0000000..431edfb --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml @@ -0,0 +1,291 @@ + + + + https://ipt-obis.gbif.us/resource.do?r=atn_38553_bearded-seal_trajectory_20110618-20120314 + Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f + + + Mathew + Biddle + + Animal Tracking Network + Physical Scientist +
+ U.S. Integrated Ocean Observing System Program + Silver Spring + Maryland + 20910 + US +
+ + mathew.biddle@noaa.gov + https://atn.ioos.us/ +
+ + + + US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + + US Integrated Ocean Observing System Office + Data Manager +
+ USA +
+ atndata@ioos.us + https://atn.ioos.us +
+ + + + + Josh London + Josh London + + NOAA Alaska Fisheries Science Center + josh.london@noaa.gov + https://orcid.org/0000-0002-3647-5046 + originator + + + + + Michael Cameron + Michael Cameron + + NOAA Alaska Fisheries Science Center + michael.cameron@noaa.gov + + author + + + + + John Jansen + John Jansen + + NOAA Alaska Fisheries Science Center + john.jansen@noaa.gov + + author + + + + + Alex Whiting + Alex Whiting + + Native Village of Kotzebue + + https://orcid.org/0000-0003-0664-490X + author + + + +2024-08-28T00:07:07Z +eng + + Wildlife Computers SPLASH10 tag (ptt id 38553) deployed on a bearded seal (Erignathus barbatus) by Peter Boveng in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14 + Abstract:A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012 + + + + EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > BIOSPHERE > ECOLOGICAL DYNAMICS > SPECIES/POPULATION INTERACTIONS > MIGRATORY RATES/ROUTES + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > OCEANS + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > CLIMATE INDICATORS > BIOSPHERIC INDICATORS > SPECIES MIGRATION + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > OCEANS + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > BIOLOGICAL CLASSIFICATION > ANIMALS/VERTEBRATES + GCMD Science Keywords v15.1 + + + + EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > MARINE ECOSYSTEMS + GCMD Science Keywords v15.1 + + + + PROVIDERS > GOVERNMENT AGENCIES-U.S. FEDERAL AGENCIES > DOC > NOAA > IOOS + GCMD Science Keywords v15.1 + + + + PROVIDERS > COMMERCIAL > Axiom Data Science + GCMD Science Keywords v15.1 + + + + + ATN + + Animal Telemetry Network + + IOOS + + Integrated Ocean Observing System + + trajectory + + satellite telemetry tag + + + + + + Access Constraints: none +Use Constraints: +Acknowledge the use of specific records from contributing databases in the form appearing in the 'Citation' field thereof (if any); and acknowledge the use of the OBIS facility. + +For information purposes, email to info@obis.org the full citation of any publication made (printed or electronic) that cites OBIS or any constituent part. + +Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.html#disclaimer for more details + + + + This work is licensed under a Public Domain (CC0 1.0). + + + + https://portal.atn.ioos.us/#metadata/0ceb0cce-3602-4a4f-a5cc-b6dc365c2239/project + + + + + Arctic Ocean,Beaufort Sea,Bering Sea,Chukchi Sea + + -173.277 + -145.971 + 71.51 + 60.422 + + + + + + 2011-06-18T03:00:00Z + + + 2012-03-14T02:53:09Z + + + + + + Species included below are tagged by this project and have left any embargo. Other individuals or species may later be appended to this dataset. + + species + Erignathus barbatus + bearded seal + + + + + These data are for display on the OBIS portal and associated mapping programs and for download to personal computers for ad-hoc end-user analysis. + + + + Peter Boveng + Peter Boveng + + NOAA Alaska Fisheries Science Center + principalInvestigator + + + peter.boveng@noaa.gov + https://www.fisheries.noaa.gov/alaska/marine-mammal-protection/ice-seal-research-alaska + + + + + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the OTN database and filtered and summarized according to international agreed-upon standards. + + + + + + A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012 + + + + Wildlife Computers SPLASH10 tag (ptt id 38553) deployed on a bearded seal (Erignathus barbatus) by Peter Boveng in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14 + + + + + NetCDF file created from position data obtained from Wildlife Computers API. + + + + + A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012 + + + Peter Boveng + Peter Boveng + + principalInvestigator + + A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012 + + +
+ + + + 2024-08-28T00:07:07Z + dataset + Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).. Accessed via the OBIS-USA IPT on INSERT DATE + + Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN). + + + A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012 + ASCII + + + HTM + + + + + https://portal.atn.ioos.us/#metadata/0ceb0cce-3602-4a4f-a5cc-b6dc365c2239/project + + + + + + +
\ No newline at end of file diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_45866_emof.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_45866_emof.csv deleted file mode 100644 index 48ff7fe..0000000 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_45866_emof.csv +++ /dev/null @@ -1,2 +0,0 @@ -"organismID","eventID","occurrenceID","measurementValue","measurementType","measurementUnit","measurementMethod" -"105838_great_white_shark","great_white shark_2009-09-23T00:00:00Z","ioos_atn_2009-09-23T00:00:00Z_0_great_white_shark",213,"length of the animal as measured or estimated at deployment","cm","total length" diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_45866_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_45866_occurrence.csv deleted file mode 100644 index 8c19550..0000000 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_45866_occurrence.csv +++ /dev/null @@ -1,18 +0,0 @@ -"eventDate","decimalLatitude","decimalLongitude","basisOfRecord","kingdom","taxonRank","occurrenceStatus","sex","lifeStage","scientificName","scientificNameID","minimumDepthInMeters","maximumDepthInMeters","organismID","occurrenceID","geodeticDatum","eventID","associatedReferences","coordinateUncertaintyInMeters","dataGeneralizations" -"2009-09-23T00:00:00Z",34.03,-118.56,"HumanObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-09-23T00:00:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-09-23T00:00:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",0,"" -"2009-09-25T11:09:00Z",34.024,-118.556,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-09-25T11:09:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-09-25T11:09:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",1500,"first of 2 records" -"2009-09-27T17:58:00Z",34.033,-118.547,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-09-27T17:58:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-09-27T17:58:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",1500,"" -"2009-10-08T20:24:00Z",34.038,-118.581,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-08T20:24:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-08T20:24:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",500,"" -"2009-10-15T11:05:00Z",33.995,-118.678,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-15T11:05:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-15T11:05:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",10000,"" -"2009-10-17T06:11:00Z",34.037,-118.545,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-17T06:11:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-17T06:11:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",10000,"" -"2009-10-17T09:00:00Z",34.026,-118.534,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-17T09:00:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-17T09:00:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",500,"" -"2009-10-17T10:38:00Z",34.027,-118.545,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-17T10:38:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-17T10:38:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",250,"" -"2009-10-18T08:48:00Z",34.039,-118.548,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-18T08:48:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-18T08:48:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",1500,"" -"2009-10-18T10:26:00Z",34.031,-118.541,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-18T10:26:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-18T10:26:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",500,"" -"2009-10-18T11:15:00Z",34.041,-118.535,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-18T11:15:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-18T11:15:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",10000,"" -"2009-10-23T23:52:00Z",33.999,-118.612,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-23T23:52:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-23T23:52:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",500,"" -"2009-10-24T00:06:00Z",34.002,-118.604,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-24T00:06:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-24T00:06:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",10000,"" -"2009-10-26T10:53:00Z",34.022,-118.537,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-26T10:53:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-26T10:53:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",250,"" -"2009-10-27T16:21:00Z",34.01,-118.524,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-27T16:21:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-27T16:21:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",1500,"first of 2 records" -"2009-10-29T11:53:00Z",33.989,-118.504,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-29T11:53:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-29T11:53:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",500,"" -"2009-10-31T21:15:00Z",34.045,-118.53,"MachineObservation","Animalia","Species","present","male","juvenile","Carcharodon carcharias","urn:lsid:marinespecies.org:taxname:105838",0,0,"105838_great_white_shark","ioos_atn_2009-10-31T21:15:00Z_0_great_white_shark","EPSG:4326","great_white shark_2009-10-31T21:15:00Z","https://www.ncei.noaa.gov/archive/accession/0282699",10000,"" diff --git a/datasets/atn_satellite_telemetry/templates/eml.xml.j2 b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 new file mode 100644 index 0000000..921435d --- /dev/null +++ b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 @@ -0,0 +1,210 @@ + + + + https://ipt-obis.gbif.us/resource.do?r={{ dataset_short_name }} + {{ title }} + + + {{ data_manager_firstname }} + {{ data_manager_lastname }} + + Animal Tracking Network + {{ data_manager_title}} +
+ U.S. Integrated Ocean Observing System Program + Silver Spring + Maryland + 20910 + US +
+ {{ data_manager_phone }} + {{ data_manager_email }} + https://atn.ioos.us/ +
+ + + + {{ publisher_name }} + {{ publisher_name }} + + {{ publisher_institution }} + Data Manager +
+ {{ publisher_country }} +
+ {{ publisher_email }} + {{ publisher_url }} +
+ + + +{%- for party in contributors %} + + + {{ party.contributor_name }} + {{ party.contributor_name }} + + {{ party.contributor_institution }} + {{ party.contributor_email }} + {{ party.contributor_url }} + {{ party.contributor_role }} + + {% endfor %} + +{{ date_created }} +eng + + {{ summary }} + Abstract:{{ project }} + +{% for keyword in keywords.split(", ")%} + + {{ keyword }} + {{ keywords_vocabulary }} + +{% endfor %} + +{% for keyword in arbitrary_keywords.split(", ")%} + {{ keyword }} +{% endfor %} + + + + + Access Constraints: none +Use Constraints: +Acknowledge the use of specific records from contributing databases in the form appearing in the 'Citation' field thereof (if any); and acknowledge the use of the OBIS facility. + +For information purposes, email to info@obis.org the full citation of any publication made (printed or electronic) that cites OBIS or any constituent part. + +Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.html#disclaimer for more details + + + + This work is licensed under a Public Domain (CC0 1.0). + + + + {{ infoUrl }} + + + + + {{ sea_name }} + + {{ geospatial_lon_min }} + {{ geospatial_lon_max }} + {{ geospatial_lat_max }} + {{ geospatial_lat_min }} + + + + + + {{ time_coverage_start }} + + + {{ time_coverage_end }} + + + + + + Species included below are tagged by this project and have left any embargo. Other individuals or species may later be appended to this dataset. + + species + {{ animal_scientific_name }} + {{ animal_common_name }} + + + + + These data are for display on the OBIS portal and associated mapping programs and for download to personal computers for ad-hoc end-user analysis. + + + + {{ creator_name }} + {{ creator_name }} + + {{ creator_institution }} + {{ creator_role }} + + + {{ creator_email }} + {{ creator_institution_url }} + + + + + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the OTN database and filtered and summarized according to international agreed-upon standards. + + + + + + {{ project }} + + + + {{ summary }} + + + + + {{ processing_level }} + + + + + {{ project }} + + + {{ creator_name }} + {{ creator_name }} + + {{ creator_role }} + + {{ project }} + + +
+ + + + {{ date_created }} + dataset + {{ citation }}. Accessed via the OBIS-USA IPT on INSERT DATE + + {{ citation}} + + + {{ project }} + ASCII + + + HTM + + + + + {{ infoUrl }} + + + + + + +
From b94a0ed1ca6d1c2784987cf4016b66b3a2669a36 Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Thu, 31 Jul 2025 09:43:04 -0400 Subject: [PATCH 02/14] adding meta.xml and updating a few things --- .../convert_ATNnc2DwC.ipynb | 2800 +++++++++-------- ...seal_trajectory_20180418-20180526_emof.csv | 4 +- ...eal_trajectory_20180418-20180526_event.csv | 2 +- ...rajectory_20180418-20180526_occurrence.csv | 10 +- .../data/dwc/137491/eml.xml | 67 +- .../data/dwc/137491/meta.xml | 65 + ...rajectory_20140426-20140426_occurrence.csv | 8 +- .../data/dwc/137494/eml.xml | 67 +- .../data/dwc/137494/meta.xml | 36 + ...eal_trajectory_20110618-20120314_event.csv | 2 +- ...rajectory_20110618-20120314_occurrence.csv | 2436 +++++++------- .../data/dwc/38553/eml.xml | 67 +- .../data/dwc/38553/meta.xml | 51 + .../templates/eml.xml.j2 | 29 +- .../templates/meta.xml.j2 | 40 + 15 files changed, 3052 insertions(+), 2632 deletions(-) create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137494/meta.xml create mode 100644 datasets/atn_satellite_telemetry/data/dwc/38553/meta.xml create mode 100644 datasets/atn_satellite_telemetry/templates/meta.xml.j2 diff --git a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb index b9a3b23..506815c 100644 --- a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb +++ b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb @@ -29,6 +29,8 @@ "import netCDF4\n", "from geopy.geocoders import Nominatim\n", "import re\n", + "from jinja2 import Template\n", + "import codecs\n", "#import pyobistools" ] }, @@ -488,20 +490,20 @@ }, "outputs": [], "source": [ - "def create_dwc_occurrence(ds):\n", + "def create_dwc_occurrence(ds, output_csv):\n", "\n", " dwc_df = pd.DataFrame()\n", - " dwc_df['occurrenceID'] = \"ioos_atn_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')+\"_\"+ds['z'].astype(str)+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", + " dwc_df['occurrenceID'] = \"ioos_atn_\"+ds.ptt_id+\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')+\"_\"+ds['z'].astype(str)+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", + " dwc_df['eventID'] = ds.ptt_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\") +\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')\n", + " dwc_df['organismID'] = ds.platform_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", " dwc_df['occurrenceStatus'] = 'present'\n", " dwc_df['basisOfRecord'] = ds['type']\n", - " dwc_df['organismID'] = ds.platform_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", " dwc_df['eventDate'] = ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')\n", " dwc_df['decimalLatitude'] = ds['lat']\n", " dwc_df['decimalLongitude'] = ds['lon']\n", " dwc_df['geodeticDatum'] = ds.crs.epsg_code\n", " dwc_df['scientificName'] = ds['taxon_name'].values.tolist()\n", " dwc_df['scientificNameID'] = ds['taxon_lsid'].values.tolist()\n", - " dwc_df['eventID'] = ds.animal_common_name.replace(\" \",\"_\") +\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')\n", " dwc_df['samplingProtocol'] = 'satellite telemetry'\n", " dwc_df['kingdom'] = ds['animal'].attrs['kingdom']\n", " dwc_df['taxonRank'] = ds['animal'].attrs['rank']\n", @@ -555,36 +557,56 @@ "\n", " dwc_df.drop(columns=['event_hour'], inplace=True)\n", "\n", + " # only pick specific columns to save\n", + " cols = ['occurrenceID', 'occurrenceStatus', 'basisOfRecord',\n", + " 'organismID', 'eventDate', 'decimalLatitude',\n", + " 'decimalLongitude', 'geodeticDatum',\n", + " 'scientificName', 'scientificNameID', 'eventID',\n", + " 'samplingProtocol', 'kingdom', 'taxonRank', 'lifeStage',\n", + " 'sex', 'associatedReferences',\n", + " 'coordinateUncertaintyInMeters', 'dataGeneralizations']\n", + " \n", + " # Save the individual CSV\n", + " dwc_df.to_csv(output_csv, columns=cols, index=False)\n", + " print(f\" Saved data to '{output_csv}'\")\n", + "\n", " return dwc_df\n", "\n", "\n", - "def create_dwc_event(dwc_df):\n", + "def create_dwc_event(dwc_df, output_csv):\n", "\n", " # --- Processing for Event ---\n", " event_df = dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation',\n", " ['eventID','eventDate','decimalLatitude','decimalLongitude','geodeticDatum',\n", " 'minimumDepthInMeters','maximumDepthInMeters']]\n", + " \n", + " if event_df.empty:\n", + " print(\"No HumanObservations found in the dataset.\")\n", + " return pd.DataFrame() # Return an empty DataFrame if no observations are found\n", + " else: \n", + " print(f\" found {len(event_df)} HumanObservations.\")\n", + " event_df['countryCode'] = 'US'\n", + " event_df['samplingProtocol'] = 'satellite telemetry'\n", + " \n", + " # # initialize Nominatim API - not trusted enough yet\n", + " # # see https://nominatim.org/release-docs/develop/api/Reverse/\n", + " # geolocator = Nominatim(user_agent=\"my_geopy_app\")\n", "\n", - " # # initialize Nominatim API - not trusted enough yet\n", - " # # see https://nominatim.org/release-docs/develop/api/Reverse/\n", - " # geolocator = Nominatim(user_agent=\"my_geopy_app\")\n", - "\n", - " # lat = event_df['decimalLatitude'][0].astype(str)\n", - " # lon = event_df['decimalLongitude'][0].astype(str)\n", - "\n", - " # location = geolocator.reverse(lat+\",\"+lon)\n", - "\n", - " # event_df['countryCode'] = location.raw['address'].get('country_code').upper()\n", - "\n", - " event_df['countryCode'] = 'US'\n", + " # lat = event_df['decimalLatitude'][0].astype(str)\n", + " # lon = event_df['decimalLongitude'][0].astype(str)\n", "\n", - " event_df['samplingProtocol'] = 'satellite telemetry'\n", + " # location = geolocator.reverse(lat+\",\"+lon)\n", "\n", - " return event_df\n", + " # event_df['countryCode'] = location.raw['address'].get('country_code').upper()\n", + " event_df.to_csv(output_csv.replace(\"occurrence\",\"event\"), index=False)\n", + " print(f\" Created {len(event_df)} events.\")\n", + " print(f\" Saved data to {output_csv.replace('occurrence','event')}\")\n", "\n", + " return event_df\n", "\n", - "def create_dwc_emof(ds, dwc_df):\n", "\n", + "def create_dwc_emof(ds, dwc_df, output_csv):\n", + " \n", " # --- Processing for emof ---\n", " vars = list(ds.keys())\n", " animal_vars = [x for x in vars if re.match(r'animal_(?!life_stage\\b|sex\\b).*',x)]\n", @@ -609,7 +631,14 @@ "\n", " emof_df.dropna(axis=0, subset=['measurementValue'], inplace=True)\n", "\n", - " return emof_df" + " if emof_df.empty:\n", + " print(f' no emof data found')\n", + " return pd.DataFrame() # Return an empty DataFrame if no observations are found\n", + " else:\n", + " emof_df.to_csv(output_csv.replace(\"occurrence\",\"emof\"), index=False)\n", + " print(f\" Created {len(emof_df)} emofs.\")\n", + " print(f\" Saved data to {output_csv.replace('occurrence','emof')}\")\n", + " return emof_df" ] }, { @@ -622,8 +651,7 @@ "\n", "# borrowed from https://gitlab.oceantrack.org/otn-partner-nodes/ipython-utilities/-/blob/main/dbtools/publish_to_obis.py?ref_type=heads\n", "\n", - "from jinja2 import Template\n", - "import codecs\n", + "\n", "\n", "def save_eml_file(eml_metadata:dict) -> str:\n", " \"\"\"\n", @@ -642,7 +670,7 @@ " fh.write(result_string)\n", " fh.close()\n", " eml_full_path = os.path.abspath(eml_file)\n", - " print(f\"EML metadata has been written to '{eml_full_path}'.\")\n", + " print(f\" EML metadata has been written to '{eml_full_path}'.\")\n", " return eml_full_path\n", "\n", "def create_eml(ds):\n", @@ -678,6 +706,57 @@ { "cell_type": "code", "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "def create_meta_xml(dwc_df, emof_df, event_df, output_csv):\n", + " \"\"\"\n", + " Create meta.xml file for the Darwin Core dataset.\n", + " \n", + " Args:\n", + " dwc_df (DataFrame): DataFrame containing Darwin Core occurrence data.\n", + " emof_df (DataFrame): DataFrame containing eMoF data.\n", + " event_df (DataFrame): DataFrame containing event data.\n", + " output_csv (str): Path to the output CSV file.\n", + " dir (str): Directory where the meta.xml will be saved.\n", + " \"\"\"\n", + " # Ensure the directory exists\n", + " try:\n", + " os.path.exists(output_csv)\n", + " except:\n", + " print(f\"Missing directory: {output_csv}\")\n", + "\n", + " # create and include the meta.xml and eml.xml\n", + " # set the meta.xml paramaters by hand, using the format of the dataframes above\n", + " meta_xml_vars = {}\n", + " meta_xml_vars['cols_list'] = dwc_df.columns.tolist()\n", + " meta_xml_vars['occurrence_filename'] = output_csv\n", + "\n", + " if not emof_df.empty:\n", + " meta_xml_vars ['emof_cols_list'] = emof_df.columns.tolist()\n", + " meta_xml_vars['emof_filename'] = output_csv.replace(\"occurrence\",\"emof\")\n", + "\n", + " if not event_df.empty:\n", + " meta_xml_vars['event_cols_list'] = event_df.columns.tolist()\n", + " meta_xml_vars['event_filename'] = output_csv.replace(\"occurrence\",\"event\")\n", + "\n", + " # grab the template file for making meta.xml\n", + " meta_template_file = codecs.open('templates/meta.xml.j2', 'r', 'UTF-8').read()\n", + " meta_template = Template(meta_template_file)\n", + " meta_result_string = meta_template.render(meta_xml_vars)\n", + " dir = os.path.join(*output_csv.split(\"\\\\\")[:-1])\n", + " meta_file = f'{dir}/meta.xml'\n", + "\n", + " fh = codecs.open(meta_file, 'wb+', 'UTF-8')\n", + " fh.write(meta_result_string)\n", + " fh.close()\n", + " meta_full_path = os.path.abspath(meta_file)\n", + " print(f\" Meta XML has been written to '{meta_full_path}'.\")" + ] + }, + { + "cell_type": "code", + "execution_count": 7, "metadata": { "id": "aD62GgzSS0zu" }, @@ -710,6 +789,8 @@ " print(f\"Created output directory: {output_dir}/{base_filename.split('_')[1]}\")\n", "\n", " output_csv = os.path.join(output_dir, f\"{base_filename.split('_')[1]}/{os.path.splitext(base_filename)[0]}_occurrence.csv\")\n", + " output_csv = os.path.normpath(output_csv)\n", + " #output_dir = os.path.join(*output_csv.split(\"\\\\\")[:-1])\n", " print(f\"Processing {base_filename}...\")\n", "\n", " try:\n", @@ -729,49 +810,19 @@ " continue\n", "\n", " # --- Map to Darwin Core Occurrence Terms ---\n", - " dwc_df = create_dwc_occurrence(ds)\n", - "\n", - " # only pick specific columns to save\n", - " cols = ['occurrenceID', 'occurrenceStatus', 'basisOfRecord',\n", - " 'organismID', 'eventDate', 'decimalLatitude',\n", - " 'decimalLongitude', 'geodeticDatum',\n", - " 'scientificName', 'scientificNameID', 'eventID',\n", - " 'samplingProtocol', 'kingdom', 'taxonRank', 'lifeStage',\n", - " 'sex', 'associatedReferences',\n", - " 'coordinateUncertaintyInMeters', 'dataGeneralizations']\n", - "\n", - " # Save the individual CSV\n", - " dwc_df.to_csv(output_csv, columns=cols, index=False)\n", - " print(f\" Saved data to '{output_csv}'\")\n", + " dwc_df = create_dwc_occurrence(ds, output_csv)\n", "\n", " # Create and save eml\n", " create_eml(ds)\n", "\n", - " processed_count += 1\n", - "\n", - " # --- Event and eMoF ---\n", - " # bail out if there are no HumanObservations\n", - " if len(dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation']) == 0:\n", - " print(f' no HumanObservation events found')\n", - " continue\n", - " else:\n", + " # --- Event and eMoF (as needed) ---\n", + " event_df = create_dwc_event(dwc_df, output_csv)\n", + " emof_df = create_dwc_emof(ds, dwc_df, output_csv)\n", "\n", - " print(f\" found {len(dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation'])} HumanObservations.\")\n", + " # --- Create meta.xml file ---\n", + " create_meta_xml(dwc_df, emof_df, event_df, output_csv)\n", "\n", - " event_df = create_dwc_event(dwc_df)\n", - "\n", - " event_df.to_csv(output_csv.replace(\"occurrence\",\"event\"), index=False)\n", - " print(f\" Created {len(event_df)} events.\")\n", - " print(f\" Saved data to {output_csv.replace('occurrence','event')}\")\n", - "\n", - " emof_df = create_dwc_emof(ds, dwc_df)\n", - " if len(emof_df) == 0:\n", - " print(f' no emof data found')\n", - " continue\n", - " else:\n", - " emof_df.to_csv(output_csv.replace(\"occurrence\",\"emof\"), index=False)\n", - " print(f\" Created {len(emof_df)} emofs.\")\n", - " print(f\" Saved data to {output_csv.replace('occurrence','emof')}\")\n", + " processed_count += 1\n", "\n", " except Exception as e:\n", " print(f\" Could not process {base_filename}: {e}\")\n", @@ -791,7 +842,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 8, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -807,2381 +858,2654 @@ "text": [ "\n", "--- 2. Starting Darwin Core Conversion (Individual Files) ---\n", - "Created output directory: data/dwc/131373\n", "Processing atn_131373_ribbon-seal_trajectory_20140428-20141213.nc...\n", "Found 1215 records.\n", " Extracted 389 occurrences with valid locations.\n", " Extracted 179 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\131373/atn_131373_ribbon-seal_trajectory_20140428-20141213_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\131373\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/137487\n", + " Saved data to 'data\\dwc\\131373\\atn_131373_ribbon-seal_trajectory_20140428-20141213_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\131373\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\131373\\meta.xml'.\n", "Processing atn_137487_ribbon-seal_trajectory_20140412-20140413.nc...\n", "Found 17 records.\n", " Extracted 15 occurrences with valid locations.\n", " Extracted 3 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137487/atn_137487_ribbon-seal_trajectory_20140412-20140413_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137487\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/137490\n", + " Saved data to 'data\\dwc\\137487\\atn_137487_ribbon-seal_trajectory_20140412-20140413_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137487\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137487\\meta.xml'.\n", "Processing atn_137490_spotted-seal_trajectory_20160414-20160414.nc...\n", "Found 267 records.\n", " Extracted 16 occurrences with valid locations.\n", " Extracted 14 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137490/atn_137490_spotted-seal_trajectory_20160414-20160414_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137490\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/137491\n", + " Saved data to 'data\\dwc\\137490\\atn_137490_spotted-seal_trajectory_20160414-20160414_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137490\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137490\\meta.xml'.\n", "Processing atn_137491_spotted-seal_trajectory_20180418-20180526.nc...\n", "Found 107 records.\n", " Extracted 12 occurrences with valid locations.\n", " Extracted 5 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137491\\eml.xml'.\n", + " Saved data to 'data\\dwc\\137491\\atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137491\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv\n", + " Saved data to data\\dwc\\137491\\atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv\n", " Created 2 emofs.\n", - " Saved data to data/dwc\\137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv\n", - "Created output directory: data/dwc/137494\n", + " Saved data to data\\dwc\\137491\\atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137491\\meta.xml'.\n", "Processing atn_137494_ribbon-seal_trajectory_20140426-20140426.nc...\n", "Found 23 records.\n", " Extracted 11 occurrences with valid locations.\n", " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137494\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/137495\n", + " Saved data to 'data\\dwc\\137494\\atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137494\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137494\\meta.xml'.\n", "Processing atn_137495_ribbon-seal_trajectory_20140426-20140427.nc...\n", "Found 55 records.\n", " Extracted 44 occurrences with valid locations.\n", " Extracted 12 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137495/atn_137495_ribbon-seal_trajectory_20140426-20140427_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\eml.xml'.\n", - " no HumanObservation events found\n", + " Saved data to 'data\\dwc\\137495\\atn_137495_ribbon-seal_trajectory_20140426-20140427_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\meta.xml'.\n", "Processing atn_137495_spotted-seal_trajectory_20170809-20180607.nc...\n", "Found 362 records.\n", " Extracted 61 occurrences with valid locations.\n", " Extracted 42 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137495/atn_137495_spotted-seal_trajectory_20170809-20180607_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/137497\n", + " Saved data to 'data\\dwc\\137495\\atn_137495_spotted-seal_trajectory_20170809-20180607_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\meta.xml'.\n", "Processing atn_137497_spotted-seal_trajectory_20160412-20170721.nc...\n", "Found 484 records.\n", " Extracted 56 occurrences with valid locations.\n", " Extracted 37 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137497/atn_137497_spotted-seal_trajectory_20160412-20170721_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137497\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/137500\n", + " Saved data to 'data\\dwc\\137497\\atn_137497_spotted-seal_trajectory_20160412-20170721_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137497\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137497\\meta.xml'.\n", "Processing atn_137500_ribbon-seal_trajectory_20140426-20140427.nc...\n", "Found 19 records.\n", " Extracted 14 occurrences with valid locations.\n", " Extracted 3 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137500/atn_137500_ribbon-seal_trajectory_20140426-20140427_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137500\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/137506\n", + " Saved data to 'data\\dwc\\137500\\atn_137500_ribbon-seal_trajectory_20140426-20140427_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137500\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137500\\meta.xml'.\n", "Processing atn_137506_ribbon-seal_trajectory_20140421-20140421.nc...\n", "Found 66 records.\n", " Extracted 35 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137506/atn_137506_ribbon-seal_trajectory_20140421-20140421_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137506\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/137514\n", + " Saved data to 'data\\dwc\\137506\\atn_137506_ribbon-seal_trajectory_20140421-20140421_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137506\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137506\\meta.xml'.\n", "Processing atn_137514_ribbon-seal_trajectory_20140419-20140420.nc...\n", "Found 17 records.\n", " Extracted 9 occurrences with valid locations.\n", " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137514/atn_137514_ribbon-seal_trajectory_20140419-20140420_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137514\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/137516\n", + " Saved data to 'data\\dwc\\137514\\atn_137514_ribbon-seal_trajectory_20140419-20140420_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137514\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137514\\meta.xml'.\n", "Processing atn_137516_ribbon-seal_trajectory_20140420-20140420.nc...\n", "Found 60 records.\n", " Extracted 42 occurrences with valid locations.\n", " Extracted 11 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\137516/atn_137516_ribbon-seal_trajectory_20140420-20140420_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137516\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/141929\n", + " Saved data to 'data\\dwc\\137516\\atn_137516_ribbon-seal_trajectory_20140420-20140420_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137516\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137516\\meta.xml'.\n", "Processing atn_141929_spotted-seal_trajectory_20160425-20160514.nc...\n", "Found 480 records.\n", " Extracted 211 occurrences with valid locations.\n", " Extracted 136 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\141929/atn_141929_spotted-seal_trajectory_20160425-20160514_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\141929\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/143947\n", + " Saved data to 'data\\dwc\\141929\\atn_141929_spotted-seal_trajectory_20160425-20160514_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\141929\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\141929\\meta.xml'.\n", "Processing atn_143947_spotted-seal_trajectory_20160414-20160623.nc...\n", "Found 139 records.\n", " Extracted 10 occurrences with valid locations.\n", " Extracted 5 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\143947/atn_143947_spotted-seal_trajectory_20160414-20160623_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143947\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/143956\n", + " Saved data to 'data\\dwc\\143947\\atn_143947_spotted-seal_trajectory_20160414-20160623_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143947\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143947\\meta.xml'.\n", "Processing atn_143956_spotted-seal_trajectory_20180410-20180901.nc...\n", "Found 315 records.\n", " Extracted 28 occurrences with valid locations.\n", " Extracted 22 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\143956/atn_143956_spotted-seal_trajectory_20180410-20180901_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143956\\eml.xml'.\n", + " Saved data to 'data\\dwc\\143956\\atn_143956_spotted-seal_trajectory_20180410-20180901_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143956\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\143956/atn_143956_spotted-seal_trajectory_20180410-20180901_event.csv\n", + " Saved data to data\\dwc\\143956\\atn_143956_spotted-seal_trajectory_20180410-20180901_event.csv\n", " Created 2 emofs.\n", - " Saved data to data/dwc\\143956/atn_143956_spotted-seal_trajectory_20180410-20180901_emof.csv\n", - "Created output directory: data/dwc/143966\n", + " Saved data to data\\dwc\\143956\\atn_143956_spotted-seal_trajectory_20180410-20180901_emof.csv\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143956\\meta.xml'.\n", "Processing atn_143966_ribbon-seal_trajectory_20160416-20160430.nc...\n", "Found 247 records.\n", " Extracted 56 occurrences with valid locations.\n", " Extracted 38 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\143966/atn_143966_ribbon-seal_trajectory_20160416-20160430_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143966\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/143979\n", + " Saved data to 'data\\dwc\\143966\\atn_143966_ribbon-seal_trajectory_20160416-20160430_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143966\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143966\\meta.xml'.\n", "Processing atn_143979_spotted-seal_trajectory_20160414-20160422.nc...\n", "Found 205 records.\n", " Extracted 135 occurrences with valid locations.\n", " Extracted 76 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\143979/atn_143979_spotted-seal_trajectory_20160414-20160422_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143979\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/143982\n", + " Saved data to 'data\\dwc\\143979\\atn_143979_spotted-seal_trajectory_20160414-20160422_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143979\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143979\\meta.xml'.\n", "Processing atn_143982_ribbon-seal_trajectory_20160423-20160510.nc...\n", "Found 392 records.\n", " Extracted 106 occurrences with valid locations.\n", " Extracted 79 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\143982/atn_143982_ribbon-seal_trajectory_20160423-20160510_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143982\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/143991\n", + " Saved data to 'data\\dwc\\143982\\atn_143982_ribbon-seal_trajectory_20160423-20160510_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143982\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143982\\meta.xml'.\n", "Processing atn_143991_spotted-seal_trajectory_20160415-20160509.nc...\n", "Found 559 records.\n", " Extracted 208 occurrences with valid locations.\n", " Extracted 154 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\143991/atn_143991_spotted-seal_trajectory_20160415-20160509_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143991\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/143994\n", + " Saved data to 'data\\dwc\\143991\\atn_143991_spotted-seal_trajectory_20160415-20160509_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143991\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143991\\meta.xml'.\n", "Processing atn_143994_spotted-seal_trajectory_20160423-20160516.nc...\n", "Found 574 records.\n", " Extracted 250 occurrences with valid locations.\n", " Extracted 171 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\143994/atn_143994_spotted-seal_trajectory_20160423-20160516_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143994\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/144001\n", + " Saved data to 'data\\dwc\\143994\\atn_143994_spotted-seal_trajectory_20160423-20160516_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143994\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143994\\meta.xml'.\n", "Processing atn_144001_ribbon-seal_trajectory_20160413-20160427.nc...\n", "Found 513 records.\n", " Extracted 31 occurrences with valid locations.\n", " Extracted 26 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\144001/atn_144001_ribbon-seal_trajectory_20160413-20160427_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144001\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/144004\n", + " Saved data to 'data\\dwc\\144001\\atn_144001_ribbon-seal_trajectory_20160413-20160427_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144001\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144001\\meta.xml'.\n", "Processing atn_144004_ribbon-seal_trajectory_20160421-20160424.nc...\n", "Found 105 records.\n", " Extracted 27 occurrences with valid locations.\n", " Extracted 21 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\144004/atn_144004_ribbon-seal_trajectory_20160421-20160424_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144004\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/144006\n", + " Saved data to 'data\\dwc\\144004\\atn_144004_ribbon-seal_trajectory_20160421-20160424_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144004\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144004\\meta.xml'.\n", "Processing atn_144006_spotted-seal_trajectory_20160412-20160420.nc...\n", "Found 201 records.\n", " Extracted 108 occurrences with valid locations.\n", " Extracted 70 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\144006/atn_144006_spotted-seal_trajectory_20160412-20160420_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144006\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/144009\n", + " Saved data to 'data\\dwc\\144006\\atn_144006_spotted-seal_trajectory_20160412-20160420_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144006\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144006\\meta.xml'.\n", "Processing atn_144009_spotted-seal_trajectory_20160414-20160510.nc...\n", "Found 616 records.\n", " Extracted 196 occurrences with valid locations.\n", " Extracted 145 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\144009/atn_144009_spotted-seal_trajectory_20160414-20160510_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144009\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/144015\n", + " Saved data to 'data\\dwc\\144009\\atn_144009_spotted-seal_trajectory_20160414-20160510_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144009\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144009\\meta.xml'.\n", "Processing atn_144015_ribbon-seal_trajectory_20160416-20160418.nc...\n", "Found 58 records.\n", " Extracted 24 occurrences with valid locations.\n", " Extracted 19 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\144015/atn_144015_ribbon-seal_trajectory_20160416-20160418_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144015\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/144017\n", + " Saved data to 'data\\dwc\\144015\\atn_144015_ribbon-seal_trajectory_20160416-20160418_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144015\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144015\\meta.xml'.\n", "Processing atn_144017_ribbon-seal_trajectory_20160425-20160512.nc...\n", "Found 417 records.\n", " Extracted 118 occurrences with valid locations.\n", " Extracted 88 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\144017/atn_144017_ribbon-seal_trajectory_20160425-20160512_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144017\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160948\n", + " Saved data to 'data\\dwc\\144017\\atn_144017_ribbon-seal_trajectory_20160425-20160512_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144017\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144017\\meta.xml'.\n", "Processing atn_160948_ribbon-seal_trajectory_20160421-20170519.nc...\n", "Found 371 records.\n", " Extracted 44 occurrences with valid locations.\n", " Extracted 32 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160948/atn_160948_ribbon-seal_trajectory_20160421-20170519_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160948\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160951\n", + " Saved data to 'data\\dwc\\160948\\atn_160948_ribbon-seal_trajectory_20160421-20170519_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160948\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160948\\meta.xml'.\n", "Processing atn_160951_spotted-seal_trajectory_20160817-20170828.nc...\n", "Found 518 records.\n", " Extracted 48 occurrences with valid locations.\n", " Extracted 30 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160951/atn_160951_spotted-seal_trajectory_20160817-20170828_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160951\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160954\n", + " Saved data to 'data\\dwc\\160951\\atn_160951_spotted-seal_trajectory_20160817-20170828_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160951\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160951\\meta.xml'.\n", "Processing atn_160954_spotted-seal_trajectory_20160814-20161219.nc...\n", "Found 94 records.\n", " Extracted 20 occurrences with valid locations.\n", " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160954/atn_160954_spotted-seal_trajectory_20160814-20161219_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160954\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160955\n", + " Saved data to 'data\\dwc\\160954\\atn_160954_spotted-seal_trajectory_20160814-20161219_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160954\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160954\\meta.xml'.\n", "Processing atn_160955_ribbon-seal_trajectory_20160413-20170605.nc...\n", "Found 472 records.\n", " Extracted 71 occurrences with valid locations.\n", " Extracted 52 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160955/atn_160955_ribbon-seal_trajectory_20160413-20170605_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160955\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160956\n", + " Saved data to 'data\\dwc\\160955\\atn_160955_ribbon-seal_trajectory_20160413-20170605_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160955\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160955\\meta.xml'.\n", "Processing atn_160956_spotted-seal_trajectory_20160415-20160622.nc...\n", "Found 241 records.\n", " Extracted 14 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160956/atn_160956_spotted-seal_trajectory_20160415-20160622_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160956\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160957\n", + " Saved data to 'data\\dwc\\160956\\atn_160956_spotted-seal_trajectory_20160415-20160622_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160956\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160956\\meta.xml'.\n", "Processing atn_160957_spotted-seal_trajectory_20170816-20171125.nc...\n", "Found 79 records.\n", " Extracted 23 occurrences with valid locations.\n", " Extracted 14 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160957/atn_160957_spotted-seal_trajectory_20170816-20171125_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160957\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160960\n", + " Saved data to 'data\\dwc\\160957\\atn_160957_spotted-seal_trajectory_20170816-20171125_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160957\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160957\\meta.xml'.\n", "Processing atn_160960_spotted-seal_trajectory_20160817-20170729.nc...\n", "Found 470 records.\n", " Extracted 55 occurrences with valid locations.\n", " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160960/atn_160960_spotted-seal_trajectory_20160817-20170729_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160960\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160965\n", + " Saved data to 'data\\dwc\\160960\\atn_160960_spotted-seal_trajectory_20160817-20170729_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160960\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160960\\meta.xml'.\n", "Processing atn_160965_ribbon-seal_trajectory_20160416-20160725.nc...\n", "Found 164 records.\n", " Extracted 20 occurrences with valid locations.\n", " Extracted 15 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160965/atn_160965_ribbon-seal_trajectory_20160416-20160725_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160965\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160966\n", + " Saved data to 'data\\dwc\\160965\\atn_160965_ribbon-seal_trajectory_20160416-20160725_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160965\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160965\\meta.xml'.\n", "Processing atn_160966_spotted-seal_trajectory_20160423-20170120.nc...\n", "Found 342 records.\n", " Extracted 29 occurrences with valid locations.\n", " Extracted 19 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160966/atn_160966_spotted-seal_trajectory_20160423-20170120_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160966\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160968\n", + " Saved data to 'data\\dwc\\160966\\atn_160966_spotted-seal_trajectory_20160423-20170120_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160966\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160966\\meta.xml'.\n", "Processing atn_160968_ribbon-seal_trajectory_20160425-20160726.nc...\n", "Found 199 records.\n", " Extracted 13 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160968/atn_160968_ribbon-seal_trajectory_20160425-20160726_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160968\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160969\n", + " Saved data to 'data\\dwc\\160968\\atn_160968_ribbon-seal_trajectory_20160425-20160726_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160968\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160968\\meta.xml'.\n", "Processing atn_160969_ribbon-seal_trajectory_20160416-20161230.nc...\n", "Found 341 records.\n", " Extracted 31 occurrences with valid locations.\n", " Extracted 22 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160969/atn_160969_ribbon-seal_trajectory_20160416-20161230_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160969\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160972\n", + " Saved data to 'data\\dwc\\160969\\atn_160969_ribbon-seal_trajectory_20160416-20161230_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160969\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160969\\meta.xml'.\n", "Processing atn_160972_spotted-seal_trajectory_20170816-20171121.nc...\n", "Found 92 records.\n", " Extracted 10 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160972/atn_160972_spotted-seal_trajectory_20170816-20171121_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160972\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160973\n", + " Saved data to 'data\\dwc\\160972\\atn_160972_spotted-seal_trajectory_20170816-20171121_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160972\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160972\\meta.xml'.\n", "Processing atn_160973_ribbon-seal_trajectory_20160423-20170615.nc...\n", "Found 451 records.\n", " Extracted 78 occurrences with valid locations.\n", " Extracted 59 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160973/atn_160973_ribbon-seal_trajectory_20160423-20170615_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160973\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160975\n", + " Saved data to 'data\\dwc\\160973\\atn_160973_ribbon-seal_trajectory_20160423-20170615_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160973\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160973\\meta.xml'.\n", "Processing atn_160975_ribbon-seal_trajectory_20160426-20170513.nc...\n", "Found 318 records.\n", " Extracted 22 occurrences with valid locations.\n", " Extracted 16 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160975/atn_160975_ribbon-seal_trajectory_20160426-20170513_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160975\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/160977\n", + " Saved data to 'data\\dwc\\160975\\atn_160975_ribbon-seal_trajectory_20160426-20170513_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160975\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160975\\meta.xml'.\n", "Processing atn_160977_spotted-seal_trajectory_20160425-20161009.nc...\n", "Found 250 records.\n", " Extracted 20 occurrences with valid locations.\n", " Extracted 17 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\160977/atn_160977_spotted-seal_trajectory_20160425-20161009_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160977\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/164869\n", + " Saved data to 'data\\dwc\\160977\\atn_160977_spotted-seal_trajectory_20160425-20161009_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160977\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160977\\meta.xml'.\n", "Processing atn_164869_spotted-seal_trajectory_20180420-20180514.nc...\n", "Found 47 records.\n", " Extracted 8 occurrences with valid locations.\n", " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\164869/atn_164869_spotted-seal_trajectory_20180420-20180514_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\164869\\eml.xml'.\n", + " Saved data to 'data\\dwc\\164869\\atn_164869_spotted-seal_trajectory_20180420-20180514_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\164869\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\164869/atn_164869_spotted-seal_trajectory_20180420-20180514_event.csv\n", + " Saved data to data\\dwc\\164869\\atn_164869_spotted-seal_trajectory_20180420-20180514_event.csv\n", " Created 2 emofs.\n", - " Saved data to data/dwc\\164869/atn_164869_spotted-seal_trajectory_20180420-20180514_emof.csv\n", - "Created output directory: data/dwc/174785\n", + " Saved data to data\\dwc\\164869\\atn_164869_spotted-seal_trajectory_20180420-20180514_emof.csv\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\164869\\meta.xml'.\n", "Processing atn_174785_spotted-seal_trajectory_20180420-20180605.nc...\n", "Found 2318 records.\n", " Extracted 873 occurrences with valid locations.\n", " Extracted 560 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\174785/atn_174785_spotted-seal_trajectory_20180420-20180605_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174785\\eml.xml'.\n", + " Saved data to 'data\\dwc\\174785\\atn_174785_spotted-seal_trajectory_20180420-20180605_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174785\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\174785/atn_174785_spotted-seal_trajectory_20180420-20180605_event.csv\n", + " Saved data to data\\dwc\\174785\\atn_174785_spotted-seal_trajectory_20180420-20180605_event.csv\n", " Created 2 emofs.\n", - " Saved data to data/dwc\\174785/atn_174785_spotted-seal_trajectory_20180420-20180605_emof.csv\n", - "Created output directory: data/dwc/174786\n", + " Saved data to data\\dwc\\174785\\atn_174785_spotted-seal_trajectory_20180420-20180605_emof.csv\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174785\\meta.xml'.\n", "Processing atn_174786_spotted-seal_trajectory_20180414-20180511.nc...\n", "Found 943 records.\n", " Extracted 435 occurrences with valid locations.\n", " Extracted 287 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\174786/atn_174786_spotted-seal_trajectory_20180414-20180511_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174786\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/174787\n", + " Saved data to 'data\\dwc\\174786\\atn_174786_spotted-seal_trajectory_20180414-20180511_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174786\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174786\\meta.xml'.\n", "Processing atn_174787_spotted-seal_trajectory_20180410-20180610.nc...\n", "Found 1841 records.\n", " Extracted 713 occurrences with valid locations.\n", " Extracted 532 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\174787/atn_174787_spotted-seal_trajectory_20180410-20180610_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174787\\eml.xml'.\n", + " Saved data to 'data\\dwc\\174787\\atn_174787_spotted-seal_trajectory_20180410-20180610_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174787\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\174787/atn_174787_spotted-seal_trajectory_20180410-20180610_event.csv\n", + " Saved data to data\\dwc\\174787\\atn_174787_spotted-seal_trajectory_20180410-20180610_event.csv\n", " no emof data found\n", - "Created output directory: data/dwc/174790\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174787\\meta.xml'.\n", "Processing atn_174790_spotted-seal_trajectory_20180418-20180527.nc...\n", "Found 1308 records.\n", " Extracted 585 occurrences with valid locations.\n", " Extracted 383 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\174790/atn_174790_spotted-seal_trajectory_20180418-20180527_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174790\\eml.xml'.\n", + " Saved data to 'data\\dwc\\174790\\atn_174790_spotted-seal_trajectory_20180418-20180527_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174790\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\174790/atn_174790_spotted-seal_trajectory_20180418-20180527_event.csv\n", + " Saved data to data\\dwc\\174790\\atn_174790_spotted-seal_trajectory_20180418-20180527_event.csv\n", " Created 2 emofs.\n", - " Saved data to data/dwc\\174790/atn_174790_spotted-seal_trajectory_20180418-20180527_emof.csv\n", - "Created output directory: data/dwc/174805\n", + " Saved data to data\\dwc\\174790\\atn_174790_spotted-seal_trajectory_20180418-20180527_emof.csv\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174790\\meta.xml'.\n", "Processing atn_174805_spotted-seal_trajectory_20180420-20180523.nc...\n", "Found 1495 records.\n", " Extracted 584 occurrences with valid locations.\n", " Extracted 373 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\174805/atn_174805_spotted-seal_trajectory_20180420-20180523_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174805\\eml.xml'.\n", + " Saved data to 'data\\dwc\\174805\\atn_174805_spotted-seal_trajectory_20180420-20180523_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174805\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\174805/atn_174805_spotted-seal_trajectory_20180420-20180523_event.csv\n", + " Saved data to data\\dwc\\174805\\atn_174805_spotted-seal_trajectory_20180420-20180523_event.csv\n", " no emof data found\n", - "Created output directory: data/dwc/174821\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174805\\meta.xml'.\n", "Processing atn_174821_spotted-seal_trajectory_20180420-20180618.nc...\n", "Found 164 records.\n", " Extracted 11 occurrences with valid locations.\n", " Extracted 7 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\174821/atn_174821_spotted-seal_trajectory_20180420-20180618_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174821\\eml.xml'.\n", + " Saved data to 'data\\dwc\\174821\\atn_174821_spotted-seal_trajectory_20180420-20180618_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174821\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\174821/atn_174821_spotted-seal_trajectory_20180420-20180618_event.csv\n", + " Saved data to data\\dwc\\174821\\atn_174821_spotted-seal_trajectory_20180420-20180618_event.csv\n", " Created 2 emofs.\n", - " Saved data to data/dwc\\174821/atn_174821_spotted-seal_trajectory_20180420-20180618_emof.csv\n", - "Created output directory: data/dwc/174822\n", + " Saved data to data\\dwc\\174821\\atn_174821_spotted-seal_trajectory_20180420-20180618_emof.csv\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174821\\meta.xml'.\n", "Processing atn_174822_spotted-seal_trajectory_20180414-20181103.nc...\n", "Found 263 records.\n", " Extracted 25 occurrences with valid locations.\n", " Extracted 20 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\174822/atn_174822_spotted-seal_trajectory_20180414-20181103_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174822\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/37515\n", + " Saved data to 'data\\dwc\\174822\\atn_174822_spotted-seal_trajectory_20180414-20181103_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174822\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174822\\meta.xml'.\n", "Processing atn_37515_spotted-seal_trajectory_20100522-20110423.nc...\n", "Found 7589 records.\n", " Extracted 2166 occurrences with valid locations.\n", " Extracted 1261 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\37515/atn_37515_spotted-seal_trajectory_20100522-20110423_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37515\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/37909\n", + " Saved data to 'data\\dwc\\37515\\atn_37515_spotted-seal_trajectory_20100522-20110423_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37515\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37515\\meta.xml'.\n", "Processing atn_37909_spotted-seal_trajectory_20140427-20140921.nc...\n", "Found 4396 records.\n", " Extracted 1910 occurrences with valid locations.\n", " Extracted 910 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\37909/atn_37909_spotted-seal_trajectory_20140427-20140921_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37909\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/38549\n", + " Saved data to 'data\\dwc\\37909\\atn_37909_spotted-seal_trajectory_20140427-20140921_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37909\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37909\\meta.xml'.\n", "Processing atn_38549_spotted-seal_trajectory_20140429-20140613.nc...\n", "Found 2881 records.\n", " Extracted 1198 occurrences with valid locations.\n", " Extracted 400 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\38549/atn_38549_spotted-seal_trajectory_20140429-20140613_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38549\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/38553\n", + " Saved data to 'data\\dwc\\38549\\atn_38549_spotted-seal_trajectory_20140429-20140613_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38549\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38549\\meta.xml'.\n", "Processing atn_38553_bearded-seal_trajectory_20110618-20120314.nc...\n", "Found 10197 records.\n", " Extracted 1871 occurrences with valid locations.\n", " Extracted 1218 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38553\\eml.xml'.\n", + " Saved data to 'data\\dwc\\38553\\atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38553\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv\n", + " Saved data to data\\dwc\\38553\\atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv\n", " no emof data found\n", - "Created output directory: data/dwc/39482\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38553\\meta.xml'.\n", "Processing atn_39482_spotted-seal_trajectory_20140427-20141022.nc...\n", "Found 4984 records.\n", " Extracted 1539 occurrences with valid locations.\n", " Extracted 806 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\39482/atn_39482_spotted-seal_trajectory_20140427-20141022_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39482\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/39486\n", + " Saved data to 'data\\dwc\\39482\\atn_39482_spotted-seal_trajectory_20140427-20141022_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39482\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39482\\meta.xml'.\n", "Processing atn_39486_ribbon-seal_trajectory_20100517-20100917.nc...\n", "Found 722 records.\n", " Extracted 154 occurrences with valid locations.\n", " Extracted 82 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\39486/atn_39486_ribbon-seal_trajectory_20100517-20100917_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39486\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/39489\n", + " Saved data to 'data\\dwc\\39486\\atn_39486_ribbon-seal_trajectory_20100517-20100917_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39486\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39486\\meta.xml'.\n", "Processing atn_39489_bearded-seal_trajectory_20110616-20120401.nc...\n", "Found 9698 records.\n", " Extracted 2668 occurrences with valid locations.\n", " Extracted 1663 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\39489/atn_39489_bearded-seal_trajectory_20110616-20120401_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39489\\eml.xml'.\n", + " Saved data to 'data\\dwc\\39489\\atn_39489_bearded-seal_trajectory_20110616-20120401_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39489\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\39489/atn_39489_bearded-seal_trajectory_20110616-20120401_event.csv\n", + " Saved data to data\\dwc\\39489\\atn_39489_bearded-seal_trajectory_20110616-20120401_event.csv\n", " no emof data found\n", - "Created output directory: data/dwc/39490\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39489\\meta.xml'.\n", "Processing atn_39490_ribbon-seal_trajectory_20140426-20140526.nc...\n", "Found 1339 records.\n", " Extracted 469 occurrences with valid locations.\n", " Extracted 147 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\39490/atn_39490_ribbon-seal_trajectory_20140426-20140526_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39490\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/39491\n", + " Saved data to 'data\\dwc\\39490\\atn_39490_ribbon-seal_trajectory_20140426-20140526_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39490\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39490\\meta.xml'.\n", "Processing atn_39491_ribbon-seal_trajectory_20100516-20100518.nc...\n", "Found 44 records.\n", " Extracted 23 occurrences with valid locations.\n", " Extracted 16 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\39491/atn_39491_ribbon-seal_trajectory_20100516-20100518_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39491\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/39496\n", + " Saved data to 'data\\dwc\\39491\\atn_39491_ribbon-seal_trajectory_20100516-20100518_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39491\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39491\\meta.xml'.\n", "Processing atn_39496_ribbon-seal_trajectory_20100523-20101216.nc...\n", "Found 617 records.\n", " Extracted 226 occurrences with valid locations.\n", " Extracted 132 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\39496/atn_39496_ribbon-seal_trajectory_20100523-20101216_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39496\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/39498\n", + " Saved data to 'data\\dwc\\39496\\atn_39496_ribbon-seal_trajectory_20100523-20101216_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39496\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39496\\meta.xml'.\n", "Processing atn_39498_ribbon-seal_trajectory_20140427-20140509.nc...\n", "Found 617 records.\n", " Extracted 397 occurrences with valid locations.\n", " Extracted 100 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\39498/atn_39498_ribbon-seal_trajectory_20140427-20140509_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39498\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/39499\n", + " Saved data to 'data\\dwc\\39498\\atn_39498_ribbon-seal_trajectory_20140427-20140509_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39498\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39498\\meta.xml'.\n", "Processing atn_39499_ribbon-seal_trajectory_20140419-20140428.nc...\n", "Found 588 records.\n", " Extracted 221 occurrences with valid locations.\n", " Extracted 61 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\39499/atn_39499_ribbon-seal_trajectory_20140419-20140428_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39499\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/40857\n", + " Saved data to 'data\\dwc\\39499\\atn_39499_ribbon-seal_trajectory_20140419-20140428_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39499\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39499\\meta.xml'.\n", "Processing atn_40857_ribbon-seal_trajectory_20100523-20110408.nc...\n", "Found 1420 records.\n", " Extracted 445 occurrences with valid locations.\n", " Extracted 238 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\40857/atn_40857_ribbon-seal_trajectory_20100523-20110408_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40857\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/40858\n", + " Saved data to 'data\\dwc\\40857\\atn_40857_ribbon-seal_trajectory_20100523-20110408_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40857\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40857\\meta.xml'.\n", "Processing atn_40858_ribbon-seal_trajectory_20140421-20140426.nc...\n", "Found 371 records.\n", " Extracted 194 occurrences with valid locations.\n", " Extracted 53 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\40858/atn_40858_ribbon-seal_trajectory_20140421-20140426_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40858\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/40862\n", + " Saved data to 'data\\dwc\\40858\\atn_40858_ribbon-seal_trajectory_20140421-20140426_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40858\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40858\\meta.xml'.\n", "Processing atn_40862_ribbon-seal_trajectory_20140420-20140428.nc...\n", "Found 898 records.\n", " Extracted 442 occurrences with valid locations.\n", " Extracted 138 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\40862/atn_40862_ribbon-seal_trajectory_20140420-20140428_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40862\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/45866\n", + " Saved data to 'data\\dwc\\40862\\atn_40862_ribbon-seal_trajectory_20140420-20140428_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40862\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40862\\meta.xml'.\n", "Processing atn_45866_great-white-shark_trajectory_20090923-20091123.nc...\n", "Found 29 records.\n", " Extracted 19 occurrences with valid locations.\n", " Extracted 17 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\45866/atn_45866_great-white-shark_trajectory_20090923-20091123_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45866\\eml.xml'.\n", + " Saved data to 'data\\dwc\\45866\\atn_45866_great-white-shark_trajectory_20090923-20091123_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45866\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\45866/atn_45866_great-white-shark_trajectory_20090923-20091123_event.csv\n", + " Saved data to data\\dwc\\45866\\atn_45866_great-white-shark_trajectory_20090923-20091123_event.csv\n", " Created 1 emofs.\n", - " Saved data to data/dwc\\45866/atn_45866_great-white-shark_trajectory_20090923-20091123_emof.csv\n", - "Created output directory: data/dwc/45869\n", + " Saved data to data\\dwc\\45866\\atn_45866_great-white-shark_trajectory_20090923-20091123_emof.csv\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45866\\meta.xml'.\n", "Processing atn_45869_great-white-shark_trajectory_20090923-20091213.nc...\n", "Found 42 records.\n", " Extracted 8 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\45869/atn_45869_great-white-shark_trajectory_20090923-20091213_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45869\\eml.xml'.\n", + " Saved data to 'data\\dwc\\45869\\atn_45869_great-white-shark_trajectory_20090923-20091213_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45869\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\45869/atn_45869_great-white-shark_trajectory_20090923-20091213_event.csv\n", + " Saved data to data\\dwc\\45869\\atn_45869_great-white-shark_trajectory_20090923-20091213_event.csv\n", " Created 1 emofs.\n", - " Saved data to data/dwc\\45869/atn_45869_great-white-shark_trajectory_20090923-20091213_emof.csv\n", - "Created output directory: data/dwc/53631\n", + " Saved data to data\\dwc\\45869\\atn_45869_great-white-shark_trajectory_20090923-20091213_emof.csv\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45869\\meta.xml'.\n", "Processing atn_53631_false-killer-whale_trajectory_20100927-20101001.nc...\n", "Found 35 records.\n", " Extracted 29 occurrences with valid locations.\n", " Extracted 23 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\53631/atn_53631_false-killer-whale_trajectory_20100927-20101001_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53631\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/53644\n", + " Saved data to 'data\\dwc\\53631\\atn_53631_false-killer-whale_trajectory_20100927-20101001_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53631\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53631\\meta.xml'.\n", "Processing atn_53644_false-killer-whale_trajectory_20100927-20101118.nc...\n", "Found 362 records.\n", " Extracted 244 occurrences with valid locations.\n", " Extracted 203 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\53644/atn_53644_false-killer-whale_trajectory_20100927-20101118_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53644\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/53652\n", + " Saved data to 'data\\dwc\\53644\\atn_53644_false-killer-whale_trajectory_20100927-20101118_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53644\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53644\\meta.xml'.\n", "Processing atn_53652_false-killer-whale_trajectory_20101023-20101213.nc...\n", "Found 504 records.\n", " Extracted 394 occurrences with valid locations.\n", " Extracted 314 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\53652/atn_53652_false-killer-whale_trajectory_20101023-20101213_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53652\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/57998\n", + " Saved data to 'data\\dwc\\53652\\atn_53652_false-killer-whale_trajectory_20101023-20101213_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53652\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53652\\meta.xml'.\n", "Processing atn_57998_ribbon-seal_trajectory_20050525-20060508.nc...\n", "Found 1469 records.\n", " Extracted 536 occurrences with valid locations.\n", " Extracted 420 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\57998/atn_57998_ribbon-seal_trajectory_20050525-20060508_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57998\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/57999\n", + " Saved data to 'data\\dwc\\57998\\atn_57998_ribbon-seal_trajectory_20050525-20060508_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57998\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57998\\meta.xml'.\n", "Processing atn_57999_spotted-seal_trajectory_20050925-20060521.nc...\n", "Found 4632 records.\n", " Extracted 1654 occurrences with valid locations.\n", " Extracted 1199 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\57999/atn_57999_spotted-seal_trajectory_20050925-20060521_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57999\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58000\n", + " Saved data to 'data\\dwc\\57999\\atn_57999_spotted-seal_trajectory_20050925-20060521_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57999\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57999\\meta.xml'.\n", "Processing atn_58000_ribbon-seal_trajectory_20050601-20060403.nc...\n", "Found 166 records.\n", " Extracted 76 occurrences with valid locations.\n", " Extracted 53 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58000/atn_58000_ribbon-seal_trajectory_20050601-20060403_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58000\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58001\n", + " Saved data to 'data\\dwc\\58000\\atn_58000_ribbon-seal_trajectory_20050601-20060403_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58000\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58000\\meta.xml'.\n", "Processing atn_58001_spotted-seal_trajectory_20050926-20051215.nc...\n", "Found 1907 records.\n", " Extracted 790 occurrences with valid locations.\n", " Extracted 530 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58001/atn_58001_spotted-seal_trajectory_20050926-20051215_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58001\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58002\n", + " Saved data to 'data\\dwc\\58001\\atn_58001_spotted-seal_trajectory_20050926-20051215_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58001\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58001\\meta.xml'.\n", "Processing atn_58002_spotted-seal_trajectory_20050926-20051223.nc...\n", "Found 1627 records.\n", " Extracted 567 occurrences with valid locations.\n", " Extracted 398 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58002/atn_58002_spotted-seal_trajectory_20050926-20051223_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58002\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58003\n", + " Saved data to 'data\\dwc\\58002\\atn_58002_spotted-seal_trajectory_20050926-20051223_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58002\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58002\\meta.xml'.\n", "Processing atn_58003_spotted-seal_trajectory_20050928-20060428.nc...\n", "Found 514 records.\n", " Extracted 237 occurrences with valid locations.\n", " Extracted 162 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58003/atn_58003_spotted-seal_trajectory_20050928-20060428_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58003\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58005\n", + " Saved data to 'data\\dwc\\58003\\atn_58003_spotted-seal_trajectory_20050928-20060428_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58003\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58003\\meta.xml'.\n", "Processing atn_58005_ribbon-seal_trajectory_20050601-20060508.nc...\n", "Found 877 records.\n", " Extracted 166 occurrences with valid locations.\n", " Extracted 143 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58005/atn_58005_ribbon-seal_trajectory_20050601-20060508_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58005\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58006\n", + " Saved data to 'data\\dwc\\58005\\atn_58005_ribbon-seal_trajectory_20050601-20060508_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58005\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58005\\meta.xml'.\n", "Processing atn_58006_ribbon-seal_trajectory_20050602-20060220.nc...\n", "Found 133 records.\n", " Extracted 77 occurrences with valid locations.\n", " Extracted 51 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58006/atn_58006_ribbon-seal_trajectory_20050602-20060220_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58006\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58007\n", + " Saved data to 'data\\dwc\\58006\\atn_58006_ribbon-seal_trajectory_20050602-20060220_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58006\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58006\\meta.xml'.\n", "Processing atn_58007_ribbon-seal_trajectory_20050602-20050603.nc...\n", "Found 18 records.\n", " Extracted 10 occurrences with valid locations.\n", " Extracted 6 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58007/atn_58007_ribbon-seal_trajectory_20050602-20050603_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58007\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58008\n", + " Saved data to 'data\\dwc\\58007\\atn_58007_ribbon-seal_trajectory_20050602-20050603_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58007\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58007\\meta.xml'.\n", "Processing atn_58008_ribbon-seal_trajectory_20050602-20060508.nc...\n", "Found 558 records.\n", " Extracted 131 occurrences with valid locations.\n", " Extracted 92 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58008/atn_58008_ribbon-seal_trajectory_20050602-20060508_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58008\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58009\n", + " Saved data to 'data\\dwc\\58008\\atn_58008_ribbon-seal_trajectory_20050602-20060508_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58008\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58008\\meta.xml'.\n", "Processing atn_58009_ribbon-seal_trajectory_20050606-20051215.nc...\n", "Found 180 records.\n", " Extracted 81 occurrences with valid locations.\n", " Extracted 56 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58009/atn_58009_ribbon-seal_trajectory_20050606-20051215_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58009\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58010\n", + " Saved data to 'data\\dwc\\58009\\atn_58009_ribbon-seal_trajectory_20050606-20051215_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58009\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58009\\meta.xml'.\n", "Processing atn_58010_ribbon-seal_trajectory_20050607-20051213.nc...\n", "Found 58 records.\n", " Extracted 36 occurrences with valid locations.\n", " Extracted 21 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58010/atn_58010_ribbon-seal_trajectory_20050607-20051213_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58010\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58011\n", + " Saved data to 'data\\dwc\\58010\\atn_58010_ribbon-seal_trajectory_20050607-20051213_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58010\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58010\\meta.xml'.\n", "Processing atn_58011_ribbon-seal_trajectory_20050602-20050604.nc...\n", "Found 6 records.\n", " Extracted 4 occurrences with valid locations.\n", " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58011/atn_58011_ribbon-seal_trajectory_20050602-20050604_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58011\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58012\n", + " Saved data to 'data\\dwc\\58011\\atn_58011_ribbon-seal_trajectory_20050602-20050604_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58011\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58011\\meta.xml'.\n", "Processing atn_58012_ribbon-seal_trajectory_20050607-20060421.nc...\n", "Found 1014 records.\n", " Extracted 384 occurrences with valid locations.\n", " Extracted 258 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58012/atn_58012_ribbon-seal_trajectory_20050607-20060421_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58012\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/58014\n", + " Saved data to 'data\\dwc\\58012\\atn_58012_ribbon-seal_trajectory_20050607-20060421_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58012\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58012\\meta.xml'.\n", "Processing atn_58014_spotted-seal_trajectory_20050929-20060329.nc...\n", "Found 1971 records.\n", " Extracted 437 occurrences with valid locations.\n", " Extracted 360 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\58014/atn_58014_spotted-seal_trajectory_20050929-20060329_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58014\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/62755\n", + " Saved data to 'data\\dwc\\58014\\atn_58014_spotted-seal_trajectory_20050929-20060329_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58014\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58014\\meta.xml'.\n", "Processing atn_62755_spotted-seal_trajectory_20060424-20060506.nc...\n", "Found 45 records.\n", " Extracted 35 occurrences with valid locations.\n", " Extracted 30 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\62755/atn_62755_spotted-seal_trajectory_20060424-20060506_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62755\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/62756\n", + " Saved data to 'data\\dwc\\62755\\atn_62755_spotted-seal_trajectory_20060424-20060506_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62755\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62755\\meta.xml'.\n", "Processing atn_62756_spotted-seal_trajectory_20060427-20060513.nc...\n", "Found 44 records.\n", " Extracted 25 occurrences with valid locations.\n", " Extracted 22 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\62756/atn_62756_spotted-seal_trajectory_20060427-20060513_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62756\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64451\n", + " Saved data to 'data\\dwc\\62756\\atn_62756_spotted-seal_trajectory_20060427-20060513_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62756\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62756\\meta.xml'.\n", "Processing atn_64451_spotted-seal_trajectory_20090518-20090612.nc...\n", "Found 21 records.\n", " Extracted 14 occurrences with valid locations.\n", " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64451/atn_64451_spotted-seal_trajectory_20090518-20090612_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64451\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64452\n", + " Saved data to 'data\\dwc\\64451\\atn_64451_spotted-seal_trajectory_20090518-20090612_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64451\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64451\\meta.xml'.\n", "Processing atn_64452_spotted-seal_trajectory_20090528-20090612.nc...\n", "Found 19 records.\n", " Extracted 13 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64452/atn_64452_spotted-seal_trajectory_20090528-20090612_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64452\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64453\n", + " Saved data to 'data\\dwc\\64452\\atn_64452_spotted-seal_trajectory_20090528-20090612_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64452\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64452\\meta.xml'.\n", "Processing atn_64453_ribbon-seal_trajectory_20090606-20090612.nc...\n", "Found 11 records.\n", " Extracted 10 occurrences with valid locations.\n", " Extracted 6 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64453/atn_64453_ribbon-seal_trajectory_20090606-20090612_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64453\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64455\n", + " Saved data to 'data\\dwc\\64453\\atn_64453_ribbon-seal_trajectory_20090606-20090612_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64453\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64453\\meta.xml'.\n", "Processing atn_64455_spotted-seal_trajectory_20090517-20100430.nc...\n", "Found 74 records.\n", " Extracted 49 occurrences with valid locations.\n", " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64455/atn_64455_spotted-seal_trajectory_20090517-20100430_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64455\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64457\n", + " Saved data to 'data\\dwc\\64455\\atn_64455_spotted-seal_trajectory_20090517-20100430_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64455\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64455\\meta.xml'.\n", "Processing atn_64457_ribbon-seal_trajectory_20090603-20090613.nc...\n", "Found 11 records.\n", " Extracted 6 occurrences with valid locations.\n", " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64457/atn_64457_ribbon-seal_trajectory_20090603-20090613_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64457\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64459\n", + " Saved data to 'data\\dwc\\64457\\atn_64457_ribbon-seal_trajectory_20090603-20090613_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64457\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64457\\meta.xml'.\n", "Processing atn_64459_bearded-seal_trajectory_20090626-20120518.nc...\n", "Found 61 records.\n", " Extracted 26 occurrences with valid locations.\n", " Extracted 21 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64459/atn_64459_bearded-seal_trajectory_20090626-20120518_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64459\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64460\n", + " Saved data to 'data\\dwc\\64459\\atn_64459_bearded-seal_trajectory_20090626-20120518_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64459\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64459\\meta.xml'.\n", "Processing atn_64460_spotted-seal_trajectory_20090518-20090618.nc...\n", "Found 22 records.\n", " Extracted 14 occurrences with valid locations.\n", " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64460/atn_64460_spotted-seal_trajectory_20090518-20090618_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64460\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64461\n", + " Saved data to 'data\\dwc\\64460\\atn_64460_spotted-seal_trajectory_20090518-20090618_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64460\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64460\\meta.xml'.\n", "Processing atn_64461_ribbon-seal_trajectory_20090607-20100524.nc...\n", "Found 67 records.\n", " Extracted 45 occurrences with valid locations.\n", " Extracted 27 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64461/atn_64461_ribbon-seal_trajectory_20090607-20100524_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64461\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64462\n", + " Saved data to 'data\\dwc\\64461\\atn_64461_ribbon-seal_trajectory_20090607-20100524_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64461\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64461\\meta.xml'.\n", "Processing atn_64462_bearded-seal_trajectory_20090623-20120612.nc...\n", "Found 126 records.\n", " Extracted 53 occurrences with valid locations.\n", " Extracted 37 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64462/atn_64462_bearded-seal_trajectory_20090623-20120612_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64462\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64463\n", + " Saved data to 'data\\dwc\\64462\\atn_64462_bearded-seal_trajectory_20090623-20120612_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64462\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64462\\meta.xml'.\n", "Processing atn_64463_spotted-seal_trajectory_20090528-20090620.nc...\n", "Found 13 records.\n", " Extracted 9 occurrences with valid locations.\n", " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64463/atn_64463_spotted-seal_trajectory_20090528-20090620_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64463\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64464\n", + " Saved data to 'data\\dwc\\64463\\atn_64463_spotted-seal_trajectory_20090528-20090620_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64463\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64463\\meta.xml'.\n", "Processing atn_64464_ribbon-seal_trajectory_20090531-20100506.nc...\n", "Found 49 records.\n", " Extracted 35 occurrences with valid locations.\n", " Extracted 26 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64464/atn_64464_ribbon-seal_trajectory_20090531-20100506_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64464\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64465\n", + " Saved data to 'data\\dwc\\64464\\atn_64464_ribbon-seal_trajectory_20090531-20100506_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64464\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64464\\meta.xml'.\n", "Processing atn_64465_ribbon-seal_trajectory_20090602-20090607.nc...\n", "Found 4 records.\n", " Extracted 3 occurrences with valid locations.\n", " Extracted 1 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64465/atn_64465_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64465\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64467\n", + " Saved data to 'data\\dwc\\64465\\atn_64465_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64465\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64465\\meta.xml'.\n", "Processing atn_64467_ribbon-seal_trajectory_20090606-20100531.nc...\n", "Found 62 records.\n", " Extracted 42 occurrences with valid locations.\n", " Extracted 27 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64467/atn_64467_ribbon-seal_trajectory_20090606-20100531_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64467\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64469\n", + " Saved data to 'data\\dwc\\64467\\atn_64467_ribbon-seal_trajectory_20090606-20100531_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64467\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64467\\meta.xml'.\n", "Processing atn_64469_ribbon-seal_trajectory_20090607-20110526.nc...\n", "Found 155 records.\n", " Extracted 92 occurrences with valid locations.\n", " Extracted 57 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64469/atn_64469_ribbon-seal_trajectory_20090607-20110526_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64469\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64471\n", + " Saved data to 'data\\dwc\\64469\\atn_64469_ribbon-seal_trajectory_20090607-20110526_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64469\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64469\\meta.xml'.\n", "Processing atn_64471_ribbon-seal_trajectory_20090605-20100522.nc...\n", "Found 158 records.\n", " Extracted 93 occurrences with valid locations.\n", " Extracted 53 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64471/atn_64471_ribbon-seal_trajectory_20090605-20100522_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64471\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64472\n", + " Saved data to 'data\\dwc\\64471\\atn_64471_ribbon-seal_trajectory_20090605-20100522_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64471\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64471\\meta.xml'.\n", "Processing atn_64472_ribbon-seal_trajectory_20090602-20090607.nc...\n", "Found 6 records.\n", " Extracted 4 occurrences with valid locations.\n", " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64472/atn_64472_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64472\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64473\n", + " Saved data to 'data\\dwc\\64472\\atn_64472_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64472\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64472\\meta.xml'.\n", "Processing atn_64473_spotted-seal_trajectory_20090518-20090618.nc...\n", "Found 31 records.\n", " Extracted 21 occurrences with valid locations.\n", " Extracted 14 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64473/atn_64473_spotted-seal_trajectory_20090518-20090618_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64473\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64476\n", + " Saved data to 'data\\dwc\\64473\\atn_64473_spotted-seal_trajectory_20090518-20090618_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64473\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64473\\meta.xml'.\n", "Processing atn_64476_ribbon-seal_trajectory_20090528-20100603.nc...\n", "Found 88 records.\n", " Extracted 48 occurrences with valid locations.\n", " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64476/atn_64476_ribbon-seal_trajectory_20090528-20100603_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64476\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64477\n", + " Saved data to 'data\\dwc\\64476\\atn_64476_ribbon-seal_trajectory_20090528-20100603_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64476\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64476\\meta.xml'.\n", "Processing atn_64477_spotted-seal_trajectory_20090528-20100422.nc...\n", "Found 11 records.\n", " Extracted 7 occurrences with valid locations.\n", " Extracted 5 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64477/atn_64477_spotted-seal_trajectory_20090528-20100422_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64477\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64478\n", + " Saved data to 'data\\dwc\\64477\\atn_64477_spotted-seal_trajectory_20090528-20100422_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64477\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64477\\meta.xml'.\n", "Processing atn_64478_ribbon-seal_trajectory_20090531-20091230.nc...\n", "Found 4 records.\n", " Extracted 3 occurrences with valid locations.\n", " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64478/atn_64478_ribbon-seal_trajectory_20090531-20091230_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64478\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64479\n", + " Saved data to 'data\\dwc\\64478\\atn_64478_ribbon-seal_trajectory_20090531-20091230_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64478\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64478\\meta.xml'.\n", "Processing atn_64479_ribbon-seal_trajectory_20090607-20100126.nc...\n", "Found 878 records.\n", " Extracted 479 occurrences with valid locations.\n", " Extracted 260 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64479/atn_64479_ribbon-seal_trajectory_20090607-20100126_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64479\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64481\n", + " Saved data to 'data\\dwc\\64479\\atn_64479_ribbon-seal_trajectory_20090607-20100126_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64479\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64479\\meta.xml'.\n", "Processing atn_64481_ribbon-seal_trajectory_20090604-20091221.nc...\n", "Found 1219 records.\n", " Extracted 362 occurrences with valid locations.\n", " Extracted 239 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64481/atn_64481_ribbon-seal_trajectory_20090604-20091221_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64481\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64482\n", + " Saved data to 'data\\dwc\\64481\\atn_64481_ribbon-seal_trajectory_20090604-20091221_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64481\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64481\\meta.xml'.\n", "Processing atn_64482_ribbon-seal_trajectory_20090603-20100514.nc...\n", "Found 2567 records.\n", " Extracted 784 occurrences with valid locations.\n", " Extracted 486 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64482/atn_64482_ribbon-seal_trajectory_20090603-20100514_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64482\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64483\n", + " Saved data to 'data\\dwc\\64482\\atn_64482_ribbon-seal_trajectory_20090603-20100514_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64482\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64482\\meta.xml'.\n", "Processing atn_64483_ribbon-seal_trajectory_20100505-20100928.nc...\n", "Found 244 records.\n", " Extracted 120 occurrences with valid locations.\n", " Extracted 75 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64483/atn_64483_ribbon-seal_trajectory_20100505-20100928_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64483\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64484\n", + " Saved data to 'data\\dwc\\64483\\atn_64483_ribbon-seal_trajectory_20100505-20100928_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64483\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64483\\meta.xml'.\n", "Processing atn_64484_ribbon-seal_trajectory_20090530-20100326.nc...\n", "Found 533 records.\n", " Extracted 299 occurrences with valid locations.\n", " Extracted 200 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64484/atn_64484_ribbon-seal_trajectory_20090530-20100326_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64484\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64485\n", + " Saved data to 'data\\dwc\\64484\\atn_64484_ribbon-seal_trajectory_20090530-20100326_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64484\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64484\\meta.xml'.\n", "Processing atn_64485_spotted-seal_trajectory_20090603-20091023.nc...\n", "Found 2889 records.\n", " Extracted 1080 occurrences with valid locations.\n", " Extracted 705 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64485/atn_64485_spotted-seal_trajectory_20090603-20091023_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64485\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64486\n", + " Saved data to 'data\\dwc\\64485\\atn_64485_spotted-seal_trajectory_20090603-20091023_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64485\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64485\\meta.xml'.\n", "Processing atn_64486_ribbon-seal_trajectory_20090601-20100426.nc...\n", "Found 357 records.\n", " Extracted 224 occurrences with valid locations.\n", " Extracted 147 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64486/atn_64486_ribbon-seal_trajectory_20090601-20100426_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64486\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64488\n", + " Saved data to 'data\\dwc\\64486\\atn_64486_ribbon-seal_trajectory_20090601-20100426_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64486\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64486\\meta.xml'.\n", "Processing atn_64488_spotted-seal_trajectory_20090606-20100310.nc...\n", "Found 4567 records.\n", " Extracted 1326 occurrences with valid locations.\n", " Extracted 853 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64488/atn_64488_spotted-seal_trajectory_20090606-20100310_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64488\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64489\n", + " Saved data to 'data\\dwc\\64488\\atn_64488_spotted-seal_trajectory_20090606-20100310_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64488\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64488\\meta.xml'.\n", "Processing atn_64489_ribbon-seal_trajectory_20090529-20100502.nc...\n", "Found 434 records.\n", " Extracted 238 occurrences with valid locations.\n", " Extracted 150 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64489/atn_64489_ribbon-seal_trajectory_20090529-20100502_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64489\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64490\n", + " Saved data to 'data\\dwc\\64489\\atn_64489_ribbon-seal_trajectory_20090529-20100502_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64489\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64489\\meta.xml'.\n", "Processing atn_64490_ribbon-seal_trajectory_20090531-20100105.nc...\n", "Found 870 records.\n", " Extracted 215 occurrences with valid locations.\n", " Extracted 137 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64490/atn_64490_ribbon-seal_trajectory_20090531-20100105_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64490\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64491\n", + " Saved data to 'data\\dwc\\64490\\atn_64490_ribbon-seal_trajectory_20090531-20100105_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64490\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64490\\meta.xml'.\n", "Processing atn_64491_ribbon-seal_trajectory_20090529-20090617.nc...\n", "Found 282 records.\n", " Extracted 126 occurrences with valid locations.\n", " Extracted 85 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64491/atn_64491_ribbon-seal_trajectory_20090529-20090617_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64491\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64492\n", + " Saved data to 'data\\dwc\\64491\\atn_64491_ribbon-seal_trajectory_20090529-20090617_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64491\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64491\\meta.xml'.\n", "Processing atn_64492_ribbon-seal_trajectory_20090602-20100116.nc...\n", "Found 1685 records.\n", " Extracted 262 occurrences with valid locations.\n", " Extracted 189 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64492/atn_64492_ribbon-seal_trajectory_20090602-20100116_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64492\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64706\n", + " Saved data to 'data\\dwc\\64492\\atn_64492_ribbon-seal_trajectory_20090602-20100116_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64492\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64492\\meta.xml'.\n", "Processing atn_64706_ribbon-seal_trajectory_20060427-20060520.nc...\n", "Found 16 records.\n", " Extracted 11 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64706/atn_64706_ribbon-seal_trajectory_20060427-20060520_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64706\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64707\n", + " Saved data to 'data\\dwc\\64706\\atn_64706_ribbon-seal_trajectory_20060427-20060520_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64706\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64706\\meta.xml'.\n", "Processing atn_64707_ribbon-seal_trajectory_20060502-20060505.nc...\n", "Found 3 records.\n", " Extracted 2 occurrences with valid locations.\n", " Extracted 1 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64707/atn_64707_ribbon-seal_trajectory_20060502-20060505_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64707\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64708\n", + " Saved data to 'data\\dwc\\64707\\atn_64707_ribbon-seal_trajectory_20060502-20060505_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64707\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64707\\meta.xml'.\n", "Processing atn_64708_ribbon-seal_trajectory_20060503-20060527.nc...\n", "Found 21 records.\n", " Extracted 7 occurrences with valid locations.\n", " Extracted 5 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64708/atn_64708_ribbon-seal_trajectory_20060503-20060527_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64708\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64709\n", + " Saved data to 'data\\dwc\\64708\\atn_64708_ribbon-seal_trajectory_20060503-20060527_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64708\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64708\\meta.xml'.\n", "Processing atn_64709_ribbon-seal_trajectory_20060502-20060511.nc...\n", "Found 9 records.\n", " Extracted 3 occurrences with valid locations.\n", " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64709/atn_64709_ribbon-seal_trajectory_20060502-20060511_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64709\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64710\n", + " Saved data to 'data\\dwc\\64709\\atn_64709_ribbon-seal_trajectory_20060502-20060511_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64709\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64709\\meta.xml'.\n", "Processing atn_64710_ribbon-seal_trajectory_20060503-20060520.nc...\n", "Found 12 records.\n", " Extracted 7 occurrences with valid locations.\n", " Extracted 5 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64710/atn_64710_ribbon-seal_trajectory_20060503-20060520_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64710\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64712\n", + " Saved data to 'data\\dwc\\64710\\atn_64710_ribbon-seal_trajectory_20060503-20060520_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64710\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64710\\meta.xml'.\n", "Processing atn_64712_spotted-seal_trajectory_20060503-20060506.nc...\n", "Found 6 records.\n", " Extracted 3 occurrences with valid locations.\n", " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64712/atn_64712_spotted-seal_trajectory_20060503-20060506_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64712\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64713\n", + " Saved data to 'data\\dwc\\64712\\atn_64712_spotted-seal_trajectory_20060503-20060506_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64712\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64712\\meta.xml'.\n", "Processing atn_64713_spotted-seal_trajectory_20060503-20060518.nc...\n", "Found 5 records.\n", " Extracted 5 occurrences with valid locations.\n", " Extracted 3 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64713/atn_64713_spotted-seal_trajectory_20060503-20060518_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64713\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64714\n", + " Saved data to 'data\\dwc\\64713\\atn_64713_spotted-seal_trajectory_20060503-20060518_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64713\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64713\\meta.xml'.\n", "Processing atn_64714_spotted-seal_trajectory_20060501-20060513.nc...\n", "Found 4 records.\n", " Extracted 3 occurrences with valid locations.\n", " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64714/atn_64714_spotted-seal_trajectory_20060501-20060513_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64714\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64715\n", + " Saved data to 'data\\dwc\\64714\\atn_64714_spotted-seal_trajectory_20060501-20060513_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64714\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64714\\meta.xml'.\n", "Processing atn_64715_ribbon-seal_trajectory_20060503-20060527.nc...\n", "Found 16 records.\n", " Extracted 11 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64715/atn_64715_ribbon-seal_trajectory_20060503-20060527_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64715\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64717\n", + " Saved data to 'data\\dwc\\64715\\atn_64715_ribbon-seal_trajectory_20060503-20060527_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64715\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64715\\meta.xml'.\n", "Processing atn_64717_spotted-seal_trajectory_20060503-20060516.nc...\n", "Found 11 records.\n", " Extracted 5 occurrences with valid locations.\n", " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64717/atn_64717_spotted-seal_trajectory_20060503-20060516_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64717\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/64899\n", + " Saved data to 'data\\dwc\\64717\\atn_64717_spotted-seal_trajectory_20060503-20060516_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64717\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64717\\meta.xml'.\n", "Processing atn_64899_ribbon-seal_trajectory_20090604-20090612.nc...\n", "Found 10 records.\n", " Extracted 6 occurrences with valid locations.\n", " Extracted 3 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\64899/atn_64899_ribbon-seal_trajectory_20090604-20090612_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64899\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/65922\n", + " Saved data to 'data\\dwc\\64899\\atn_64899_ribbon-seal_trajectory_20090604-20090612_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64899\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64899\\meta.xml'.\n", "Processing atn_65922_ribbon-seal_trajectory_20060506-20060508.nc...\n", "Found 4 records.\n", " Extracted 3 occurrences with valid locations.\n", " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\65922/atn_65922_ribbon-seal_trajectory_20060506-20060508_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65922\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/65924\n", + " Saved data to 'data\\dwc\\65922\\atn_65922_ribbon-seal_trajectory_20060506-20060508_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65922\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65922\\meta.xml'.\n", "Processing atn_65924_ribbon-seal_trajectory_20060502-20060618.nc...\n", "Found 149 records.\n", " Extracted 108 occurrences with valid locations.\n", " Extracted 68 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\65924/atn_65924_ribbon-seal_trajectory_20060502-20060618_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65924\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/65925\n", + " Saved data to 'data\\dwc\\65924\\atn_65924_ribbon-seal_trajectory_20060502-20060618_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65924\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65924\\meta.xml'.\n", "Processing atn_65925_ribbon-seal_trajectory_20060505-20060525.nc...\n", "Found 67 records.\n", " Extracted 50 occurrences with valid locations.\n", " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\65925/atn_65925_ribbon-seal_trajectory_20060505-20060525_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65925\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/65926\n", + " Saved data to 'data\\dwc\\65925\\atn_65925_ribbon-seal_trajectory_20060505-20060525_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65925\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65925\\meta.xml'.\n", "Processing atn_65926_ribbon-seal_trajectory_20060503-20060516.nc...\n", "Found 101 records.\n", " Extracted 76 occurrences with valid locations.\n", " Extracted 49 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\65926/atn_65926_ribbon-seal_trajectory_20060503-20060516_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65926\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/65927\n", + " Saved data to 'data\\dwc\\65926\\atn_65926_ribbon-seal_trajectory_20060503-20060516_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65926\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65926\\meta.xml'.\n", "Processing atn_65927_ribbon-seal_trajectory_20070522-20080107.nc...\n", "Found 376 records.\n", " Extracted 175 occurrences with valid locations.\n", " Extracted 138 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\65927/atn_65927_ribbon-seal_trajectory_20070522-20080107_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65927\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/65928\n", + " Saved data to 'data\\dwc\\65927\\atn_65927_ribbon-seal_trajectory_20070522-20080107_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65927\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65927\\meta.xml'.\n", "Processing atn_65928_ribbon-seal_trajectory_20070517-20080402.nc...\n", "Found 628 records.\n", " Extracted 375 occurrences with valid locations.\n", " Extracted 297 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\65928/atn_65928_ribbon-seal_trajectory_20070517-20080402_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65928\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/65931\n", + " Saved data to 'data\\dwc\\65928\\atn_65928_ribbon-seal_trajectory_20070517-20080402_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65928\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65928\\meta.xml'.\n", "Processing atn_65931_ribbon-seal_trajectory_20070522-20080130.nc...\n", "Found 163 records.\n", " Extracted 101 occurrences with valid locations.\n", " Extracted 73 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\65931/atn_65931_ribbon-seal_trajectory_20070522-20080130_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65931\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/65932\n", + " Saved data to 'data\\dwc\\65931\\atn_65931_ribbon-seal_trajectory_20070522-20080130_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65931\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65931\\meta.xml'.\n", "Processing atn_65932_spotted-seal_trajectory_20060506-20060620.nc...\n", "Found 754 records.\n", " Extracted 471 occurrences with valid locations.\n", " Extracted 349 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\65932/atn_65932_spotted-seal_trajectory_20060506-20060620_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65932\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/65933\n", + " Saved data to 'data\\dwc\\65932\\atn_65932_spotted-seal_trajectory_20060506-20060620_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65932\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65932\\meta.xml'.\n", "Processing atn_65933_spotted-seal_trajectory_20060427-20060511.nc...\n", "Found 153 records.\n", " Extracted 120 occurrences with valid locations.\n", " Extracted 97 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\65933/atn_65933_spotted-seal_trajectory_20060427-20060511_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65933\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/66928\n", + " Saved data to 'data\\dwc\\65933\\atn_65933_spotted-seal_trajectory_20060427-20060511_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65933\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65933\\meta.xml'.\n", "Processing atn_66928_ribbon-seal_trajectory_20140426-20140518.nc...\n", "Found 526 records.\n", " Extracted 264 occurrences with valid locations.\n", " Extracted 67 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\66928/atn_66928_ribbon-seal_trajectory_20140426-20140518_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66928\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/66949\n", + " Saved data to 'data\\dwc\\66928\\atn_66928_ribbon-seal_trajectory_20140426-20140518_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66928\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66928\\meta.xml'.\n", "Processing atn_66949_ribbon-seal_trajectory_20140415-20140503.nc...\n", "Found 1289 records.\n", " Extracted 521 occurrences with valid locations.\n", " Extracted 154 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\66949/atn_66949_ribbon-seal_trajectory_20140415-20140503_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66949\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/66971\n", + " Saved data to 'data\\dwc\\66949\\atn_66949_ribbon-seal_trajectory_20140415-20140503_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66949\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66949\\meta.xml'.\n", "Processing atn_66971_bearded-seal_trajectory_20110617-20120131.nc...\n", "Found 7559 records.\n", " Extracted 2041 occurrences with valid locations.\n", " Extracted 1303 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\66971/atn_66971_bearded-seal_trajectory_20110617-20120131_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66971\\eml.xml'.\n", + " Saved data to 'data\\dwc\\66971\\atn_66971_bearded-seal_trajectory_20110617-20120131_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66971\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\66971/atn_66971_bearded-seal_trajectory_20110617-20120131_event.csv\n", + " Saved data to data\\dwc\\66971\\atn_66971_bearded-seal_trajectory_20110617-20120131_event.csv\n", " no emof data found\n", - "Created output directory: data/dwc/66973\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66971\\meta.xml'.\n", "Processing atn_66973_spotted-seal_trajectory_20140427-20141222.nc...\n", "Found 6857 records.\n", " Extracted 1962 occurrences with valid locations.\n", " Extracted 1118 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\66973/atn_66973_spotted-seal_trajectory_20140427-20141222_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66973\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/66978\n", + " Saved data to 'data\\dwc\\66973\\atn_66973_spotted-seal_trajectory_20140427-20141222_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66973\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66973\\meta.xml'.\n", "Processing atn_66978_spotted-seal_trajectory_20140429-20141201.nc...\n", "Found 7325 records.\n", " Extracted 2421 occurrences with valid locations.\n", " Extracted 1274 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\66978/atn_66978_spotted-seal_trajectory_20140429-20141201_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66978\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/66983\n", + " Saved data to 'data\\dwc\\66978\\atn_66978_spotted-seal_trajectory_20140429-20141201_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66978\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66978\\meta.xml'.\n", "Processing atn_66983_bearded-seal_trajectory_20110618-20140626.nc...\n", "Found 146 records.\n", " Extracted 103 occurrences with valid locations.\n", " Extracted 53 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\66983/atn_66983_bearded-seal_trajectory_20110618-20140626_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66983\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/66989\n", + " Saved data to 'data\\dwc\\66983\\atn_66983_bearded-seal_trajectory_20110618-20140626_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66983\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66983\\meta.xml'.\n", "Processing atn_66989_ribbon-seal_trajectory_20140428-20140518.nc...\n", "Found 154 records.\n", " Extracted 78 occurrences with valid locations.\n", " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\66989/atn_66989_ribbon-seal_trajectory_20140428-20140518_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66989\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/66990\n", + " Saved data to 'data\\dwc\\66989\\atn_66989_ribbon-seal_trajectory_20140428-20140518_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66989\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66989\\meta.xml'.\n", "Processing atn_66990_ribbon-seal_trajectory_20140428-20140501.nc...\n", "Found 13 records.\n", " Extracted 5 occurrences with valid locations.\n", " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\66990/atn_66990_ribbon-seal_trajectory_20140428-20140501_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66990\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/67000\n", + " Saved data to 'data\\dwc\\66990\\atn_66990_ribbon-seal_trajectory_20140428-20140501_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66990\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66990\\meta.xml'.\n", "Processing atn_67000_spotted-seal_trajectory_20140429-20140721.nc...\n", "Found 148 records.\n", " Extracted 74 occurrences with valid locations.\n", " Extracted 44 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\67000/atn_67000_spotted-seal_trajectory_20140429-20140721_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67000\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/67003\n", + " Saved data to 'data\\dwc\\67000\\atn_67000_spotted-seal_trajectory_20140429-20140721_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67000\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67000\\meta.xml'.\n", "Processing atn_67003_ribbon-seal_trajectory_20140428-20140519.nc...\n", "Found 112 records.\n", " Extracted 50 occurrences with valid locations.\n", " Extracted 21 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\67003/atn_67003_ribbon-seal_trajectory_20140428-20140519_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67003\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/67004\n", + " Saved data to 'data\\dwc\\67003\\atn_67003_ribbon-seal_trajectory_20140428-20140519_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67003\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67003\\meta.xml'.\n", "Processing atn_67004_bearded-seal_trajectory_20120704-20130618.nc...\n", "Found 100 records.\n", " Extracted 69 occurrences with valid locations.\n", " Extracted 31 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\67004/atn_67004_bearded-seal_trajectory_20120704-20130618_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67004\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/67007\n", + " Saved data to 'data\\dwc\\67004\\atn_67004_bearded-seal_trajectory_20120704-20130618_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67004\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67004\\meta.xml'.\n", "Processing atn_67007_bearded-seal_trajectory_20110616-20120813.nc...\n", "Found 98 records.\n", " Extracted 66 occurrences with valid locations.\n", " Extracted 38 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\67007/atn_67007_bearded-seal_trajectory_20110616-20120813_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67007\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/67026\n", + " Saved data to 'data\\dwc\\67007\\atn_67007_bearded-seal_trajectory_20110616-20120813_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67007\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67007\\meta.xml'.\n", "Processing atn_67026_ribbon-seal_trajectory_20140427-20141108.nc...\n", "Found 123 records.\n", " Extracted 67 occurrences with valid locations.\n", " Extracted 27 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\67026/atn_67026_ribbon-seal_trajectory_20140427-20141108_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67026\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74626\n", + " Saved data to 'data\\dwc\\67026\\atn_67026_ribbon-seal_trajectory_20140427-20141108_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67026\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67026\\meta.xml'.\n", "Processing atn_74626_bearded-seal_trajectory_20090625-20100128.nc...\n", "Found 5660 records.\n", " Extracted 1040 occurrences with valid locations.\n", " Extracted 789 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74626/atn_74626_bearded-seal_trajectory_20090625-20100128_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74626\\eml.xml'.\n", + " Saved data to 'data\\dwc\\74626\\atn_74626_bearded-seal_trajectory_20090625-20100128_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74626\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\74626/atn_74626_bearded-seal_trajectory_20090625-20100128_event.csv\n", + " Saved data to data\\dwc\\74626\\atn_74626_bearded-seal_trajectory_20090625-20100128_event.csv\n", " no emof data found\n", - "Created output directory: data/dwc/74627\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74626\\meta.xml'.\n", "Processing atn_74627_bearded-seal_trajectory_20090623-20100318.nc...\n", "Found 6491 records.\n", " Extracted 867 occurrences with valid locations.\n", " Extracted 705 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74627/atn_74627_bearded-seal_trajectory_20090623-20100318_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74627\\eml.xml'.\n", + " Saved data to 'data\\dwc\\74627\\atn_74627_bearded-seal_trajectory_20090623-20100318_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74627\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\74627/atn_74627_bearded-seal_trajectory_20090623-20100318_event.csv\n", + " Saved data to data\\dwc\\74627\\atn_74627_bearded-seal_trajectory_20090623-20100318_event.csv\n", " no emof data found\n", - "Created output directory: data/dwc/74629\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74627\\meta.xml'.\n", "Processing atn_74629_ribbon-seal_trajectory_20070529-20080404.nc...\n", "Found 855 records.\n", " Extracted 593 occurrences with valid locations.\n", " Extracted 500 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74629/atn_74629_ribbon-seal_trajectory_20070529-20080404_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74629\\eml.xml'.\n", + " Saved data to 'data\\dwc\\74629\\atn_74629_ribbon-seal_trajectory_20070529-20080404_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74629\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\74629/atn_74629_ribbon-seal_trajectory_20070529-20080404_event.csv\n", + " Saved data to data\\dwc\\74629\\atn_74629_ribbon-seal_trajectory_20070529-20080404_event.csv\n", " Created 2 emofs.\n", - " Saved data to data/dwc\\74629/atn_74629_ribbon-seal_trajectory_20070529-20080404_emof.csv\n", - "Created output directory: data/dwc/74630\n", + " Saved data to data\\dwc\\74629\\atn_74629_ribbon-seal_trajectory_20070529-20080404_emof.csv\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74629\\meta.xml'.\n", "Processing atn_74630_bearded-seal_trajectory_20090626-20100213.nc...\n", "Found 4913 records.\n", " Extracted 645 occurrences with valid locations.\n", " Extracted 501 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74630/atn_74630_bearded-seal_trajectory_20090626-20100213_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74630\\eml.xml'.\n", + " Saved data to 'data\\dwc\\74630\\atn_74630_bearded-seal_trajectory_20090626-20100213_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74630\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\74630/atn_74630_bearded-seal_trajectory_20090626-20100213_event.csv\n", + " Saved data to data\\dwc\\74630\\atn_74630_bearded-seal_trajectory_20090626-20100213_event.csv\n", " no emof data found\n", - "Created output directory: data/dwc/74631\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74630\\meta.xml'.\n", "Processing atn_74631_spotted-seal_trajectory_20090606-20100504.nc...\n", "Found 2805 records.\n", " Extracted 815 occurrences with valid locations.\n", " Extracted 562 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74631/atn_74631_spotted-seal_trajectory_20090606-20100504_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74631\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74633\n", + " Saved data to 'data\\dwc\\74631\\atn_74631_spotted-seal_trajectory_20090606-20100504_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74631\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74631\\meta.xml'.\n", "Processing atn_74633_spotted-seal_trajectory_20090518-20090731.nc...\n", "Found 824 records.\n", " Extracted 190 occurrences with valid locations.\n", " Extracted 150 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74633/atn_74633_spotted-seal_trajectory_20090518-20090731_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74633\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74634\n", + " Saved data to 'data\\dwc\\74633\\atn_74633_spotted-seal_trajectory_20090518-20090731_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74633\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74633\\meta.xml'.\n", "Processing atn_74634_ribbon-seal_trajectory_20090602-20100222.nc...\n", "Found 174 records.\n", " Extracted 107 occurrences with valid locations.\n", " Extracted 78 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74634/atn_74634_ribbon-seal_trajectory_20090602-20100222_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74634\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74635\n", + " Saved data to 'data\\dwc\\74634\\atn_74634_ribbon-seal_trajectory_20090602-20100222_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74634\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74634\\meta.xml'.\n", "Processing atn_74635_spotted-seal_trajectory_20090523-20091028.nc...\n", "Found 1996 records.\n", " Extracted 600 occurrences with valid locations.\n", " Extracted 414 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74635/atn_74635_spotted-seal_trajectory_20090523-20091028_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74635\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74636\n", + " Saved data to 'data\\dwc\\74635\\atn_74635_spotted-seal_trajectory_20090523-20091028_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74635\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74635\\meta.xml'.\n", "Processing atn_74636_ribbon-seal_trajectory_20090528-20100209.nc...\n", "Found 536 records.\n", " Extracted 171 occurrences with valid locations.\n", " Extracted 101 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74636/atn_74636_ribbon-seal_trajectory_20090528-20100209_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74636\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74637\n", + " Saved data to 'data\\dwc\\74636\\atn_74636_ribbon-seal_trajectory_20090528-20100209_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74636\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74636\\meta.xml'.\n", "Processing atn_74637_spotted-seal_trajectory_20100506-20110410.nc...\n", "Found 5477 records.\n", " Extracted 1459 occurrences with valid locations.\n", " Extracted 927 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74637/atn_74637_spotted-seal_trajectory_20100506-20110410_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74637\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74638\n", + " Saved data to 'data\\dwc\\74637\\atn_74637_spotted-seal_trajectory_20100506-20110410_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74637\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74637\\meta.xml'.\n", "Processing atn_74638_ribbon-seal_trajectory_20100510-20100605.nc...\n", "Found 158 records.\n", " Extracted 73 occurrences with valid locations.\n", " Extracted 51 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74638/atn_74638_ribbon-seal_trajectory_20100510-20100605_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74638\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74639\n", + " Saved data to 'data\\dwc\\74638\\atn_74638_ribbon-seal_trajectory_20100510-20100605_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74638\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74638\\meta.xml'.\n", "Processing atn_74639_ribbon-seal_trajectory_20070524-20070902.nc...\n", "Found 148 records.\n", " Extracted 104 occurrences with valid locations.\n", " Extracted 70 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74639/atn_74639_ribbon-seal_trajectory_20070524-20070902_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74639\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74640\n", + " Saved data to 'data\\dwc\\74639\\atn_74639_ribbon-seal_trajectory_20070524-20070902_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74639\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74639\\meta.xml'.\n", "Processing atn_74640_ribbon-seal_trajectory_20070529-20071022.nc...\n", "Found 136 records.\n", " Extracted 94 occurrences with valid locations.\n", " Extracted 64 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74640/atn_74640_ribbon-seal_trajectory_20070529-20071022_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74640\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74641\n", + " Saved data to 'data\\dwc\\74640\\atn_74640_ribbon-seal_trajectory_20070529-20071022_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74640\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74640\\meta.xml'.\n", "Processing atn_74641_ribbon-seal_trajectory_20070527-20071103.nc...\n", "Found 109 records.\n", " Extracted 48 occurrences with valid locations.\n", " Extracted 34 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74641/atn_74641_ribbon-seal_trajectory_20070527-20071103_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74641\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74642\n", + " Saved data to 'data\\dwc\\74641\\atn_74641_ribbon-seal_trajectory_20070527-20071103_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74641\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74641\\meta.xml'.\n", "Processing atn_74642_spotted-seal_trajectory_20070508-20071123.nc...\n", "Found 367 records.\n", " Extracted 101 occurrences with valid locations.\n", " Extracted 85 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74642/atn_74642_spotted-seal_trajectory_20070508-20071123_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74642\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74643\n", + " Saved data to 'data\\dwc\\74642\\atn_74642_spotted-seal_trajectory_20070508-20071123_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74642\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74642\\meta.xml'.\n", "Processing atn_74643_ribbon-seal_trajectory_20070525-20080502.nc...\n", "Found 739 records.\n", " Extracted 330 occurrences with valid locations.\n", " Extracted 232 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74643/atn_74643_ribbon-seal_trajectory_20070525-20080502_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74643\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74644\n", + " Saved data to 'data\\dwc\\74643\\atn_74643_ribbon-seal_trajectory_20070525-20080502_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74643\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74643\\meta.xml'.\n", "Processing atn_74644_spotted-seal_trajectory_20070507-20080303.nc...\n", "Found 1712 records.\n", " Extracted 599 occurrences with valid locations.\n", " Extracted 482 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74644/atn_74644_spotted-seal_trajectory_20070507-20080303_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74644\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74645\n", + " Saved data to 'data\\dwc\\74644\\atn_74644_spotted-seal_trajectory_20070507-20080303_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74644\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74644\\meta.xml'.\n", "Processing atn_74645_ribbon-seal_trajectory_20070524-20070605.nc...\n", "Found 22 records.\n", " Extracted 11 occurrences with valid locations.\n", " Extracted 7 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74645/atn_74645_ribbon-seal_trajectory_20070524-20070605_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74645\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74646\n", + " Saved data to 'data\\dwc\\74645\\atn_74645_ribbon-seal_trajectory_20070524-20070605_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74645\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74645\\meta.xml'.\n", "Processing atn_74646_ribbon-seal_trajectory_20070528-20100529.nc...\n", "Found 102 records.\n", " Extracted 63 occurrences with valid locations.\n", " Extracted 51 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74646/atn_74646_ribbon-seal_trajectory_20070528-20100529_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74646\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74647\n", + " Saved data to 'data\\dwc\\74646\\atn_74646_ribbon-seal_trajectory_20070528-20100529_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74646\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74646\\meta.xml'.\n", "Processing atn_74647_ribbon-seal_trajectory_20070520-20080612.nc...\n", "Found 61 records.\n", " Extracted 41 occurrences with valid locations.\n", " Extracted 33 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74647/atn_74647_ribbon-seal_trajectory_20070520-20080612_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74647\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74648\n", + " Saved data to 'data\\dwc\\74647\\atn_74647_ribbon-seal_trajectory_20070520-20080612_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74647\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74647\\meta.xml'.\n", "Processing atn_74648_ribbon-seal_trajectory_20070523-20080402.nc...\n", "Found 24 records.\n", " Extracted 13 occurrences with valid locations.\n", " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74648/atn_74648_ribbon-seal_trajectory_20070523-20080402_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74648\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74649\n", + " Saved data to 'data\\dwc\\74648\\atn_74648_ribbon-seal_trajectory_20070523-20080402_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74648\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74648\\meta.xml'.\n", "Processing atn_74649_ribbon-seal_trajectory_20070524-20070614.nc...\n", "Found 21 records.\n", " Extracted 12 occurrences with valid locations.\n", " Extracted 9 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74649/atn_74649_ribbon-seal_trajectory_20070524-20070614_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74649\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74650\n", + " Saved data to 'data\\dwc\\74649\\atn_74649_ribbon-seal_trajectory_20070524-20070614_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74649\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74649\\meta.xml'.\n", "Processing atn_74650_ribbon-seal_trajectory_20070525-20080617.nc...\n", "Found 54 records.\n", " Extracted 34 occurrences with valid locations.\n", " Extracted 26 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74650/atn_74650_ribbon-seal_trajectory_20070525-20080617_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74650\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74651\n", + " Saved data to 'data\\dwc\\74650\\atn_74650_ribbon-seal_trajectory_20070525-20080617_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74650\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74650\\meta.xml'.\n", "Processing atn_74651_ribbon-seal_trajectory_20070516-20080613.nc...\n", "Found 66 records.\n", " Extracted 35 occurrences with valid locations.\n", " Extracted 29 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74651/atn_74651_ribbon-seal_trajectory_20070516-20080613_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74651\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74652\n", + " Saved data to 'data\\dwc\\74651\\atn_74651_ribbon-seal_trajectory_20070516-20080613_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74651\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74651\\meta.xml'.\n", "Processing atn_74652_ribbon-seal_trajectory_20070523-20080502.nc...\n", "Found 27 records.\n", " Extracted 20 occurrences with valid locations.\n", " Extracted 13 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74652/atn_74652_ribbon-seal_trajectory_20070523-20080502_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74652\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74653\n", + " Saved data to 'data\\dwc\\74652\\atn_74652_ribbon-seal_trajectory_20070523-20080502_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74652\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74652\\meta.xml'.\n", "Processing atn_74653_ribbon-seal_trajectory_20070518-20100426.nc...\n", "Found 94 records.\n", " Extracted 49 occurrences with valid locations.\n", " Extracted 36 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74653/atn_74653_ribbon-seal_trajectory_20070518-20100426_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74653\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74654\n", + " Saved data to 'data\\dwc\\74653\\atn_74653_ribbon-seal_trajectory_20070518-20100426_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74653\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74653\\meta.xml'.\n", "Processing atn_74654_spotted-seal_trajectory_20070520-20070713.nc...\n", "Found 24 records.\n", " Extracted 14 occurrences with valid locations.\n", " Extracted 11 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74654/atn_74654_spotted-seal_trajectory_20070520-20070713_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74654\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74655\n", + " Saved data to 'data\\dwc\\74654\\atn_74654_spotted-seal_trajectory_20070520-20070713_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74654\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74654\\meta.xml'.\n", "Processing atn_74655_spotted-seal_trajectory_20070526-20080619.nc...\n", "Found 58 records.\n", " Extracted 41 occurrences with valid locations.\n", " Extracted 29 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74655/atn_74655_spotted-seal_trajectory_20070526-20080619_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74655\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74656\n", + " Saved data to 'data\\dwc\\74655\\atn_74655_spotted-seal_trajectory_20070526-20080619_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74655\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74655\\meta.xml'.\n", "Processing atn_74656_spotted-seal_trajectory_20070524-20070613.nc...\n", "Found 22 records.\n", " Extracted 18 occurrences with valid locations.\n", " Extracted 15 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74656/atn_74656_spotted-seal_trajectory_20070524-20070613_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74656\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74657\n", + " Saved data to 'data\\dwc\\74656\\atn_74656_spotted-seal_trajectory_20070524-20070613_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74656\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74656\\meta.xml'.\n", "Processing atn_74657_ribbon-seal_trajectory_20070518-20070608.nc...\n", "Found 28 records.\n", " Extracted 14 occurrences with valid locations.\n", " Extracted 12 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74657/atn_74657_ribbon-seal_trajectory_20070518-20070608_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74657\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74658\n", + " Saved data to 'data\\dwc\\74657\\atn_74657_ribbon-seal_trajectory_20070518-20070608_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74657\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74657\\meta.xml'.\n", "Processing atn_74658_spotted-seal_trajectory_20070520-20070613.nc...\n", "Found 24 records.\n", " Extracted 15 occurrences with valid locations.\n", " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74658/atn_74658_spotted-seal_trajectory_20070520-20070613_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74658\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74662\n", + " Saved data to 'data\\dwc\\74658\\atn_74658_spotted-seal_trajectory_20070520-20070613_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74658\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74658\\meta.xml'.\n", "Processing atn_74662_ribbon-seal_trajectory_20070527-20070626.nc...\n", "Found 33 records.\n", " Extracted 23 occurrences with valid locations.\n", " Extracted 11 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74662/atn_74662_ribbon-seal_trajectory_20070527-20070626_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74662\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74664\n", + " Saved data to 'data\\dwc\\74662\\atn_74662_ribbon-seal_trajectory_20070527-20070626_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74662\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74662\\meta.xml'.\n", "Processing atn_74664_ribbon-seal_trajectory_20070518-20080621.nc...\n", "Found 59 records.\n", " Extracted 31 occurrences with valid locations.\n", " Extracted 29 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74664/atn_74664_ribbon-seal_trajectory_20070518-20080621_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74664\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74665\n", + " Saved data to 'data\\dwc\\74664\\atn_74664_ribbon-seal_trajectory_20070518-20080621_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74664\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74664\\meta.xml'.\n", "Processing atn_74665_ribbon-seal_trajectory_20070522-20080614.nc...\n", "Found 40 records.\n", " Extracted 26 occurrences with valid locations.\n", " Extracted 19 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74665/atn_74665_ribbon-seal_trajectory_20070522-20080614_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74665\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74666\n", + " Saved data to 'data\\dwc\\74665\\atn_74665_ribbon-seal_trajectory_20070522-20080614_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74665\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74665\\meta.xml'.\n", "Processing atn_74666_spotted-seal_trajectory_20070524-20070629.nc...\n", "Found 9 records.\n", " Extracted 6 occurrences with valid locations.\n", " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74666/atn_74666_spotted-seal_trajectory_20070524-20070629_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74666\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74670\n", + " Saved data to 'data\\dwc\\74666\\atn_74666_spotted-seal_trajectory_20070524-20070629_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74666\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74666\\meta.xml'.\n", "Processing atn_74670_ribbon-seal_trajectory_20090609-20100607.nc...\n", "Found 87 records.\n", " Extracted 51 occurrences with valid locations.\n", " Extracted 33 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74670/atn_74670_ribbon-seal_trajectory_20090609-20100607_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74670\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74672\n", + " Saved data to 'data\\dwc\\74670\\atn_74670_ribbon-seal_trajectory_20090609-20100607_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74670\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74670\\meta.xml'.\n", "Processing atn_74672_ribbon-seal_trajectory_20070527-20080622.nc...\n", "Found 58 records.\n", " Extracted 40 occurrences with valid locations.\n", " Extracted 31 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74672/atn_74672_ribbon-seal_trajectory_20070527-20080622_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74672\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74673\n", + " Saved data to 'data\\dwc\\74672\\atn_74672_ribbon-seal_trajectory_20070527-20080622_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74672\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74672\\meta.xml'.\n", "Processing atn_74673_ribbon-seal_trajectory_20070510-20070611.nc...\n", "Found 37 records.\n", " Extracted 25 occurrences with valid locations.\n", " Extracted 21 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74673/atn_74673_ribbon-seal_trajectory_20070510-20070611_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74673\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74674\n", + " Saved data to 'data\\dwc\\74673\\atn_74673_ribbon-seal_trajectory_20070510-20070611_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74673\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74673\\meta.xml'.\n", "Processing atn_74674_spotted-seal_trajectory_20070521-20090601.nc...\n", "Found 80 records.\n", " Extracted 43 occurrences with valid locations.\n", " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74674/atn_74674_spotted-seal_trajectory_20070521-20090601_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74674\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74677\n", + " Saved data to 'data\\dwc\\74674\\atn_74674_spotted-seal_trajectory_20070521-20090601_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74674\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74674\\meta.xml'.\n", "Processing atn_74677_ribbon-seal_trajectory_20070523-20090522.nc...\n", "Found 106 records.\n", " Extracted 58 occurrences with valid locations.\n", " Extracted 45 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74677/atn_74677_ribbon-seal_trajectory_20070523-20090522_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74677\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74679\n", + " Saved data to 'data\\dwc\\74677\\atn_74677_ribbon-seal_trajectory_20070523-20090522_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74677\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74677\\meta.xml'.\n", "Processing atn_74679_ribbon-seal_trajectory_20070523-20070613.nc...\n", "Found 25 records.\n", " Extracted 16 occurrences with valid locations.\n", " Extracted 11 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74679/atn_74679_ribbon-seal_trajectory_20070523-20070613_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74679\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74681\n", + " Saved data to 'data\\dwc\\74679\\atn_74679_ribbon-seal_trajectory_20070523-20070613_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74679\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74679\\meta.xml'.\n", "Processing atn_74681_spotted-seal_trajectory_20070424-20070701.nc...\n", "Found 46 records.\n", " Extracted 26 occurrences with valid locations.\n", " Extracted 22 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74681/atn_74681_spotted-seal_trajectory_20070424-20070701_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74681\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74682\n", + " Saved data to 'data\\dwc\\74681\\atn_74681_spotted-seal_trajectory_20070424-20070701_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74681\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74681\\meta.xml'.\n", "Processing atn_74682_ribbon-seal_trajectory_20070526-20080610.nc...\n", "Found 54 records.\n", " Extracted 36 occurrences with valid locations.\n", " Extracted 27 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74682/atn_74682_ribbon-seal_trajectory_20070526-20080610_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74682\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74685\n", + " Saved data to 'data\\dwc\\74682\\atn_74682_ribbon-seal_trajectory_20070526-20080610_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74682\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74682\\meta.xml'.\n", "Processing atn_74685_spotted-seal_trajectory_20070424-20070625.nc...\n", "Found 12 records.\n", " Extracted 12 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74685/atn_74685_spotted-seal_trajectory_20070424-20070625_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74685\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74688\n", + " Saved data to 'data\\dwc\\74685\\atn_74685_spotted-seal_trajectory_20070424-20070625_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74685\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74685\\meta.xml'.\n", "Processing atn_74688_ribbon-seal_trajectory_20070527-20071115.nc...\n", "Found 18 records.\n", " Extracted 14 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74688/atn_74688_ribbon-seal_trajectory_20070527-20071115_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74688\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74689\n", + " Saved data to 'data\\dwc\\74688\\atn_74688_ribbon-seal_trajectory_20070527-20071115_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74688\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74688\\meta.xml'.\n", "Processing atn_74689_spotted-seal_trajectory_20070507-20070901.nc...\n", "Found 28 records.\n", " Extracted 19 occurrences with valid locations.\n", " Extracted 13 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74689/atn_74689_spotted-seal_trajectory_20070507-20070901_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74689\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74690\n", + " Saved data to 'data\\dwc\\74689\\atn_74689_spotted-seal_trajectory_20070507-20070901_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74689\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74689\\meta.xml'.\n", "Processing atn_74690_ribbon-seal_trajectory_20070505-20070521.nc...\n", "Found 16 records.\n", " Extracted 12 occurrences with valid locations.\n", " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74690/atn_74690_ribbon-seal_trajectory_20070505-20070521_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74690\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74693\n", + " Saved data to 'data\\dwc\\74690\\atn_74690_ribbon-seal_trajectory_20070505-20070521_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74690\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74690\\meta.xml'.\n", "Processing atn_74693_spotted-seal_trajectory_20070526-20080301.nc...\n", "Found 26 records.\n", " Extracted 15 occurrences with valid locations.\n", " Extracted 12 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74693/atn_74693_spotted-seal_trajectory_20070526-20080301_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74693\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/74698\n", + " Saved data to 'data\\dwc\\74693\\atn_74693_spotted-seal_trajectory_20070526-20080301_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74693\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74693\\meta.xml'.\n", "Processing atn_74698_ribbon-seal_trajectory_20070522-20070605.nc...\n", "Found 12 records.\n", " Extracted 5 occurrences with valid locations.\n", " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\74698/atn_74698_ribbon-seal_trajectory_20070522-20070605_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74698\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/77250\n", + " Saved data to 'data\\dwc\\74698\\atn_74698_ribbon-seal_trajectory_20070522-20070605_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74698\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74698\\meta.xml'.\n", "Processing atn_77250_false-killer-whale_trajectory_20070816-20070830.nc...\n", "Found 66 records.\n", " Extracted 50 occurrences with valid locations.\n", " Extracted 40 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\77250/atn_77250_false-killer-whale_trajectory_20070816-20070830_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\eml.xml'.\n", - " no HumanObservation events found\n", + " Saved data to 'data\\dwc\\77250\\atn_77250_false-killer-whale_trajectory_20070816-20070830_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\meta.xml'.\n", "Processing atn_77250_false-killer-whale_trajectory_20080422-20080513.nc...\n", "Found 10 records.\n", " Extracted 2 occurrences with valid locations.\n", " Extracted 1 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\77250/atn_77250_false-killer-whale_trajectory_20080422-20080513_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/77251\n", + " Saved data to 'data\\dwc\\77250\\atn_77250_false-killer-whale_trajectory_20080422-20080513_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\meta.xml'.\n", "Processing atn_77251_false-killer-whale_trajectory_20070816-20070818.nc...\n", "Found 16 records.\n", " Extracted 13 occurrences with valid locations.\n", " Extracted 9 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\77251/atn_77251_false-killer-whale_trajectory_20070816-20070818_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77251\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/77252\n", + " Saved data to 'data\\dwc\\77251\\atn_77251_false-killer-whale_trajectory_20070816-20070818_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77251\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77251\\meta.xml'.\n", "Processing atn_77252_false-killer-whale_trajectory_20070816-20070917.nc...\n", "Found 150 records.\n", " Extracted 132 occurrences with valid locations.\n", " Extracted 104 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\77252/atn_77252_false-killer-whale_trajectory_20070816-20070917_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\eml.xml'.\n", - " no HumanObservation events found\n", + " Saved data to 'data\\dwc\\77252\\atn_77252_false-killer-whale_trajectory_20070816-20070917_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\meta.xml'.\n", "Processing atn_77252_false-killer-whale_trajectory_20080727-20080915.nc...\n", "Found 518 records.\n", " Extracted 417 occurrences with valid locations.\n", " Extracted 329 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\77252/atn_77252_false-killer-whale_trajectory_20080727-20080915_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/77253\n", + " Saved data to 'data\\dwc\\77252\\atn_77252_false-killer-whale_trajectory_20080727-20080915_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\meta.xml'.\n", "Processing atn_77253_false-killer-whale_trajectory_20080727-20080824.nc...\n", "Found 320 records.\n", " Extracted 277 occurrences with valid locations.\n", " Extracted 210 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\77253/atn_77253_false-killer-whale_trajectory_20080727-20080824_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77253\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83881\n", + " Saved data to 'data\\dwc\\77253\\atn_77253_false-killer-whale_trajectory_20080727-20080824_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77253\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77253\\meta.xml'.\n", "Processing atn_83881_ribbon-seal_trajectory_20080429-20080514.nc...\n", "Found 52 records.\n", " Extracted 34 occurrences with valid locations.\n", " Extracted 24 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83881/atn_83881_ribbon-seal_trajectory_20080429-20080514_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83881\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83885\n", + " Saved data to 'data\\dwc\\83881\\atn_83881_ribbon-seal_trajectory_20080429-20080514_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83881\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83881\\meta.xml'.\n", "Processing atn_83885_spotted-seal_trajectory_20090606-20100612.nc...\n", "Found 178 records.\n", " Extracted 108 occurrences with valid locations.\n", " Extracted 74 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83885/atn_83885_spotted-seal_trajectory_20090606-20100612_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83885\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83901\n", + " Saved data to 'data\\dwc\\83885\\atn_83885_spotted-seal_trajectory_20090606-20100612_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83885\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83885\\meta.xml'.\n", "Processing atn_83901_spotted-seal_trajectory_20090531-20090707.nc...\n", "Found 7 records.\n", " Extracted 6 occurrences with valid locations.\n", " Extracted 3 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83901/atn_83901_spotted-seal_trajectory_20090531-20090707_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83901\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83902\n", + " Saved data to 'data\\dwc\\83901\\atn_83901_spotted-seal_trajectory_20090531-20090707_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83901\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83901\\meta.xml'.\n", "Processing atn_83902_ribbon-seal_trajectory_20090602-20100101.nc...\n", "Found 18 records.\n", " Extracted 12 occurrences with valid locations.\n", " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83902/atn_83902_ribbon-seal_trajectory_20090602-20100101_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83902\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83904\n", + " Saved data to 'data\\dwc\\83902\\atn_83902_ribbon-seal_trajectory_20090602-20100101_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83902\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83902\\meta.xml'.\n", "Processing atn_83904_bearded-seal_trajectory_20090625-20120612.nc...\n", "Found 98 records.\n", " Extracted 37 occurrences with valid locations.\n", " Extracted 32 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83904/atn_83904_bearded-seal_trajectory_20090625-20120612_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83904\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83905\n", + " Saved data to 'data\\dwc\\83904\\atn_83904_bearded-seal_trajectory_20090625-20120612_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83904\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83904\\meta.xml'.\n", "Processing atn_83905_ribbon-seal_trajectory_20090602-20090607.nc...\n", "Found 7 records.\n", " Extracted 3 occurrences with valid locations.\n", " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83905/atn_83905_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83905\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83908\n", + " Saved data to 'data\\dwc\\83905\\atn_83905_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83905\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83905\\meta.xml'.\n", "Processing atn_83908_spotted-seal_trajectory_20090414-20100507.nc...\n", "Found 16 records.\n", " Extracted 9 occurrences with valid locations.\n", " Extracted 6 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83908/atn_83908_spotted-seal_trajectory_20090414-20100507_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83908\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83912\n", + " Saved data to 'data\\dwc\\83908\\atn_83908_spotted-seal_trajectory_20090414-20100507_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83908\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83908\\meta.xml'.\n", "Processing atn_83912_ribbon-seal_trajectory_20090530-20100520.nc...\n", "Found 113 records.\n", " Extracted 64 occurrences with valid locations.\n", " Extracted 43 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83912/atn_83912_ribbon-seal_trajectory_20090530-20100520_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83912\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83913\n", + " Saved data to 'data\\dwc\\83912\\atn_83912_ribbon-seal_trajectory_20090530-20100520_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83912\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83912\\meta.xml'.\n", "Processing atn_83913_spotted-seal_trajectory_20090606-20090902.nc...\n", "Found 25 records.\n", " Extracted 11 occurrences with valid locations.\n", " Extracted 9 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83913/atn_83913_spotted-seal_trajectory_20090606-20090902_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83913\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83916\n", + " Saved data to 'data\\dwc\\83913\\atn_83913_spotted-seal_trajectory_20090606-20090902_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83913\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83913\\meta.xml'.\n", "Processing atn_83916_spotted-seal_trajectory_20090529-20090707.nc...\n", "Found 6 records.\n", " Extracted 5 occurrences with valid locations.\n", " Extracted 1 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83916/atn_83916_spotted-seal_trajectory_20090529-20090707_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83916\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83918\n", + " Saved data to 'data\\dwc\\83916\\atn_83916_spotted-seal_trajectory_20090529-20090707_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83916\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83916\\meta.xml'.\n", "Processing atn_83918_ribbon-seal_trajectory_20090606-20100308.nc...\n", "Found 31 records.\n", " Extracted 20 occurrences with valid locations.\n", " Extracted 14 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83918/atn_83918_ribbon-seal_trajectory_20090606-20100308_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83918\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83922\n", + " Saved data to 'data\\dwc\\83918\\atn_83918_ribbon-seal_trajectory_20090606-20100308_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83918\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83918\\meta.xml'.\n", "Processing atn_83922_spotted-seal_trajectory_20090414-20120528.nc...\n", "Found 54 records.\n", " Extracted 18 occurrences with valid locations.\n", " Extracted 16 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83922/atn_83922_spotted-seal_trajectory_20090414-20120528_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83922\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83923\n", + " Saved data to 'data\\dwc\\83922\\atn_83922_spotted-seal_trajectory_20090414-20120528_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83922\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83922\\meta.xml'.\n", "Processing atn_83923_ribbon-seal_trajectory_20090604-20090609.nc...\n", "Found 13 records.\n", " Extracted 9 occurrences with valid locations.\n", " Extracted 7 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83923/atn_83923_ribbon-seal_trajectory_20090604-20090609_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83923\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/83926\n", + " Saved data to 'data\\dwc\\83923\\atn_83923_ribbon-seal_trajectory_20090604-20090609_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83923\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83923\\meta.xml'.\n", "Processing atn_83926_spotted-seal_trajectory_20090414-20100512.nc...\n", "Found 21 records.\n", " Extracted 8 occurrences with valid locations.\n", " Extracted 6 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\83926/atn_83926_spotted-seal_trajectory_20090414-20100512_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83926\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85567\n", + " Saved data to 'data\\dwc\\83926\\atn_83926_spotted-seal_trajectory_20090414-20100512_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83926\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83926\\meta.xml'.\n", "Processing atn_85567_false-killer-whale_trajectory_20081211-20090203.nc...\n", "Found 448 records.\n", " Extracted 391 occurrences with valid locations.\n", " Extracted 292 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85567/atn_85567_false-killer-whale_trajectory_20081211-20090203_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85567\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85568\n", + " Saved data to 'data\\dwc\\85567\\atn_85567_false-killer-whale_trajectory_20081211-20090203_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85567\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85567\\meta.xml'.\n", "Processing atn_85568_short-finned-pilot-whale_trajectory_20080705-20080802.nc...\n", "Found 397 records.\n", " Extracted 344 occurrences with valid locations.\n", " Extracted 277 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85568/atn_85568_short-finned-pilot-whale_trajectory_20080705-20080802_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85568\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85586\n", + " Saved data to 'data\\dwc\\85568\\atn_85568_short-finned-pilot-whale_trajectory_20080705-20080802_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85568\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85568\\meta.xml'.\n", "Processing atn_85586_false-killer-whale_trajectory_20080717-20080821.nc...\n", "Found 447 records.\n", " Extracted 412 occurrences with valid locations.\n", " Extracted 315 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85586/atn_85586_false-killer-whale_trajectory_20080717-20080821_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85586\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85587\n", + " Saved data to 'data\\dwc\\85586\\atn_85586_false-killer-whale_trajectory_20080717-20080821_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85586\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85586\\meta.xml'.\n", "Processing atn_85587_false-killer-whale_trajectory_20080717-20080806.nc...\n", "Found 202 records.\n", " Extracted 180 occurrences with valid locations.\n", " Extracted 137 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85587/atn_85587_false-killer-whale_trajectory_20080717-20080806_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85587\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85588\n", + " Saved data to 'data\\dwc\\85587\\atn_85587_false-killer-whale_trajectory_20080717-20080806_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85587\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85587\\meta.xml'.\n", "Processing atn_85588_false-killer-whale_trajectory_20080717-20080911.nc...\n", "Found 727 records.\n", " Extracted 672 occurrences with valid locations.\n", " Extracted 499 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85588/atn_85588_false-killer-whale_trajectory_20080717-20080911_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85588\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85589\n", + " Saved data to 'data\\dwc\\85588\\atn_85588_false-killer-whale_trajectory_20080717-20080911_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85588\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85588\\meta.xml'.\n", "Processing atn_85589_false-killer-whale_trajectory_20080717-20080723.nc...\n", "Found 63 records.\n", " Extracted 55 occurrences with valid locations.\n", " Extracted 41 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85589/atn_85589_false-killer-whale_trajectory_20080717-20080723_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85589\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85590\n", + " Saved data to 'data\\dwc\\85589\\atn_85589_false-killer-whale_trajectory_20080717-20080723_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85589\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85589\\meta.xml'.\n", "Processing atn_85590_false-killer-whale_trajectory_20080717-20081001.nc...\n", "Found 281 records.\n", " Extracted 207 occurrences with valid locations.\n", " Extracted 168 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85590/atn_85590_false-killer-whale_trajectory_20080717-20081001_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85590\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85853\n", + " Saved data to 'data\\dwc\\85590\\atn_85590_false-killer-whale_trajectory_20080717-20081001_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85590\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85590\\meta.xml'.\n", "Processing atn_85853_ribbon-seal_trajectory_20090605-20100318.nc...\n", "Found 2706 records.\n", " Extracted 518 occurrences with valid locations.\n", " Extracted 293 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85853/atn_85853_ribbon-seal_trajectory_20090605-20100318_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85853\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85854\n", + " Saved data to 'data\\dwc\\85853\\atn_85853_ribbon-seal_trajectory_20090605-20100318_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85853\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85853\\meta.xml'.\n", "Processing atn_85854_ribbon-seal_trajectory_20090607-20090926.nc...\n", "Found 281 records.\n", " Extracted 113 occurrences with valid locations.\n", " Extracted 73 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85854/atn_85854_ribbon-seal_trajectory_20090607-20090926_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85854\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85855\n", + " Saved data to 'data\\dwc\\85854\\atn_85854_ribbon-seal_trajectory_20090607-20090926_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85854\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85854\\meta.xml'.\n", "Processing atn_85855_spotted-seal_trajectory_20100508-20101031.nc...\n", "Found 2743 records.\n", " Extracted 1311 occurrences with valid locations.\n", " Extracted 746 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85855/atn_85855_spotted-seal_trajectory_20100508-20101031_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85855\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85857\n", + " Saved data to 'data\\dwc\\85855\\atn_85855_spotted-seal_trajectory_20100508-20101031_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85855\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85855\\meta.xml'.\n", "Processing atn_85857_spotted-seal_trajectory_20090607-20100130.nc...\n", "Found 4932 records.\n", " Extracted 1871 occurrences with valid locations.\n", " Extracted 1097 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85857/atn_85857_spotted-seal_trajectory_20090607-20100130_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85857\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85858\n", + " Saved data to 'data\\dwc\\85857\\atn_85857_spotted-seal_trajectory_20090607-20100130_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85857\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85857\\meta.xml'.\n", "Processing atn_85858_spotted-seal_trajectory_20100505-20110214.nc...\n", "Found 4459 records.\n", " Extracted 1325 occurrences with valid locations.\n", " Extracted 836 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85858/atn_85858_spotted-seal_trajectory_20100505-20110214_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85858\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85859\n", + " Saved data to 'data\\dwc\\85858\\atn_85858_spotted-seal_trajectory_20100505-20110214_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85858\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85858\\meta.xml'.\n", "Processing atn_85859_spotted-seal_trajectory_20090531-20100201.nc...\n", "Found 2504 records.\n", " Extracted 1129 occurrences with valid locations.\n", " Extracted 785 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85859/atn_85859_spotted-seal_trajectory_20090531-20100201_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85859\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85860\n", + " Saved data to 'data\\dwc\\85859\\atn_85859_spotted-seal_trajectory_20090531-20100201_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85859\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85859\\meta.xml'.\n", "Processing atn_85860_ribbon-seal_trajectory_20090604-20090801.nc...\n", "Found 148 records.\n", " Extracted 31 occurrences with valid locations.\n", " Extracted 25 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85860/atn_85860_ribbon-seal_trajectory_20090604-20090801_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85860\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85861\n", + " Saved data to 'data\\dwc\\85860\\atn_85860_ribbon-seal_trajectory_20090604-20090801_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85860\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85860\\meta.xml'.\n", "Processing atn_85861_ribbon-seal_trajectory_20090602-20090925.nc...\n", "Found 490 records.\n", " Extracted 205 occurrences with valid locations.\n", " Extracted 138 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85861/atn_85861_ribbon-seal_trajectory_20090602-20090925_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85861\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85862\n", + " Saved data to 'data\\dwc\\85861\\atn_85861_ribbon-seal_trajectory_20090602-20090925_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85861\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85861\\meta.xml'.\n", "Processing atn_85862_spotted-seal_trajectory_20090519-20090810.nc...\n", "Found 1282 records.\n", " Extracted 381 occurrences with valid locations.\n", " Extracted 273 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85862/atn_85862_spotted-seal_trajectory_20090519-20090810_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85862\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85863\n", + " Saved data to 'data\\dwc\\85862\\atn_85862_spotted-seal_trajectory_20090519-20090810_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85862\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85862\\meta.xml'.\n", "Processing atn_85863_ribbon-seal_trajectory_20090602-20100127.nc...\n", "Found 3682 records.\n", " Extracted 750 occurrences with valid locations.\n", " Extracted 559 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85863/atn_85863_ribbon-seal_trajectory_20090602-20100127_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85863\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85864\n", + " Saved data to 'data\\dwc\\85863\\atn_85863_ribbon-seal_trajectory_20090602-20100127_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85863\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85863\\meta.xml'.\n", "Processing atn_85864_spotted-seal_trajectory_20090519-20091216.nc...\n", "Found 3781 records.\n", " Extracted 1531 occurrences with valid locations.\n", " Extracted 942 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85864/atn_85864_spotted-seal_trajectory_20090519-20091216_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85864\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85865\n", + " Saved data to 'data\\dwc\\85864\\atn_85864_spotted-seal_trajectory_20090519-20091216_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85864\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85864\\meta.xml'.\n", "Processing atn_85865_ribbon-seal_trajectory_20100517-20110204.nc...\n", "Found 528 records.\n", " Extracted 178 occurrences with valid locations.\n", " Extracted 105 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85865/atn_85865_ribbon-seal_trajectory_20100517-20110204_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85865\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85866\n", + " Saved data to 'data\\dwc\\85865\\atn_85865_ribbon-seal_trajectory_20100517-20110204_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85865\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85865\\meta.xml'.\n", "Processing atn_85866_spotted-seal_trajectory_20090529-20090704.nc...\n", "Found 529 records.\n", " Extracted 174 occurrences with valid locations.\n", " Extracted 120 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85866/atn_85866_spotted-seal_trajectory_20090529-20090704_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85866\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85867\n", + " Saved data to 'data\\dwc\\85866\\atn_85866_spotted-seal_trajectory_20090529-20090704_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85866\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85866\\meta.xml'.\n", "Processing atn_85867_spotted-seal_trajectory_20090609-20090929.nc...\n", "Found 1164 records.\n", " Extracted 255 occurrences with valid locations.\n", " Extracted 175 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85867/atn_85867_spotted-seal_trajectory_20090609-20090929_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85867\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85868\n", + " Saved data to 'data\\dwc\\85867\\atn_85867_spotted-seal_trajectory_20090609-20090929_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85867\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85867\\meta.xml'.\n", "Processing atn_85868_ribbon-seal_trajectory_20090603-20100223.nc...\n", "Found 356 records.\n", " Extracted 153 occurrences with valid locations.\n", " Extracted 102 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85868/atn_85868_ribbon-seal_trajectory_20090603-20100223_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85868\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85869\n", + " Saved data to 'data\\dwc\\85868\\atn_85868_ribbon-seal_trajectory_20090603-20100223_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85868\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85868\\meta.xml'.\n", "Processing atn_85869_spotted-seal_trajectory_20100506-20110108.nc...\n", "Found 3842 records.\n", " Extracted 1198 occurrences with valid locations.\n", " Extracted 736 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85869/atn_85869_spotted-seal_trajectory_20100506-20110108_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85869\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85870\n", + " Saved data to 'data\\dwc\\85869\\atn_85869_spotted-seal_trajectory_20100506-20110108_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85869\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85869\\meta.xml'.\n", "Processing atn_85870_ribbon-seal_trajectory_20090609-20091228.nc...\n", "Found 961 records.\n", " Extracted 255 occurrences with valid locations.\n", " Extracted 145 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85870/atn_85870_ribbon-seal_trajectory_20090609-20091228_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85870\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85871\n", + " Saved data to 'data\\dwc\\85870\\atn_85870_ribbon-seal_trajectory_20090609-20091228_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85870\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85870\\meta.xml'.\n", "Processing atn_85871_spotted-seal_trajectory_20090523-20100228.nc...\n", "Found 4134 records.\n", " Extracted 938 occurrences with valid locations.\n", " Extracted 670 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85871/atn_85871_spotted-seal_trajectory_20090523-20100228_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85871\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85872\n", + " Saved data to 'data\\dwc\\85871\\atn_85871_spotted-seal_trajectory_20090523-20100228_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85871\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85871\\meta.xml'.\n", "Processing atn_85872_ribbon-seal_trajectory_20090607-20091204.nc...\n", "Found 774 records.\n", " Extracted 252 occurrences with valid locations.\n", " Extracted 153 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85872/atn_85872_ribbon-seal_trajectory_20090607-20091204_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85872\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85873\n", + " Saved data to 'data\\dwc\\85872\\atn_85872_ribbon-seal_trajectory_20090607-20091204_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85872\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85872\\meta.xml'.\n", "Processing atn_85873_ribbon-seal_trajectory_20100503-20100601.nc...\n", "Found 253 records.\n", " Extracted 135 occurrences with valid locations.\n", " Extracted 90 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85873/atn_85873_ribbon-seal_trajectory_20100503-20100601_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85873\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85874\n", + " Saved data to 'data\\dwc\\85873\\atn_85873_ribbon-seal_trajectory_20100503-20100601_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85873\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85873\\meta.xml'.\n", "Processing atn_85874_ribbon-seal_trajectory_20090602-20090812.nc...\n", "Found 249 records.\n", " Extracted 99 occurrences with valid locations.\n", " Extracted 70 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85874/atn_85874_ribbon-seal_trajectory_20090602-20090812_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85874\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85875\n", + " Saved data to 'data\\dwc\\85874\\atn_85874_ribbon-seal_trajectory_20090602-20090812_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85874\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85874\\meta.xml'.\n", "Processing atn_85875_spotted-seal_trajectory_20090531-20090921.nc...\n", "Found 908 records.\n", " Extracted 338 occurrences with valid locations.\n", " Extracted 207 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85875/atn_85875_spotted-seal_trajectory_20090531-20090921_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85875\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85876\n", + " Saved data to 'data\\dwc\\85875\\atn_85875_spotted-seal_trajectory_20090531-20090921_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85875\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85875\\meta.xml'.\n", "Processing atn_85876_ribbon-seal_trajectory_20090527-20100325.nc...\n", "Found 578 records.\n", " Extracted 324 occurrences with valid locations.\n", " Extracted 192 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85876/atn_85876_ribbon-seal_trajectory_20090527-20100325_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85876\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85877\n", + " Saved data to 'data\\dwc\\85876\\atn_85876_ribbon-seal_trajectory_20090527-20100325_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85876\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85876\\meta.xml'.\n", "Processing atn_85877_spotted-seal_trajectory_20100506-20100626.nc...\n", "Found 1649 records.\n", " Extracted 961 occurrences with valid locations.\n", " Extracted 523 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85877/atn_85877_spotted-seal_trajectory_20100506-20100626_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85877\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85878\n", + " Saved data to 'data\\dwc\\85877\\atn_85877_spotted-seal_trajectory_20100506-20100626_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85877\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85877\\meta.xml'.\n", "Processing atn_85878_spotted-seal_trajectory_20090608-20100320.nc...\n", "Found 5689 records.\n", " Extracted 1826 occurrences with valid locations.\n", " Extracted 1090 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85878/atn_85878_spotted-seal_trajectory_20090608-20100320_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85878\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85879\n", + " Saved data to 'data\\dwc\\85878\\atn_85878_spotted-seal_trajectory_20090608-20100320_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85878\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85878\\meta.xml'.\n", "Processing atn_85879_ribbon-seal_trajectory_20100509-20100630.nc...\n", "Found 244 records.\n", " Extracted 102 occurrences with valid locations.\n", " Extracted 71 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85879/atn_85879_ribbon-seal_trajectory_20100509-20100630_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85879\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85880\n", + " Saved data to 'data\\dwc\\85879\\atn_85879_ribbon-seal_trajectory_20100509-20100630_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85879\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85879\\meta.xml'.\n", "Processing atn_85880_ribbon-seal_trajectory_20100514-20101224.nc...\n", "Found 261 records.\n", " Extracted 82 occurrences with valid locations.\n", " Extracted 59 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85880/atn_85880_ribbon-seal_trajectory_20100514-20101224_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85880\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/85881\n", + " Saved data to 'data\\dwc\\85880\\atn_85880_ribbon-seal_trajectory_20100514-20101224_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85880\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85880\\meta.xml'.\n", "Processing atn_85881_ribbon-seal_trajectory_20090604-20100330.nc...\n", "Found 576 records.\n", " Extracted 161 occurrences with valid locations.\n", " Extracted 112 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\85881/atn_85881_ribbon-seal_trajectory_20090604-20100330_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85881\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94793\n", + " Saved data to 'data\\dwc\\85881\\atn_85881_ribbon-seal_trajectory_20090604-20100330_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85881\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85881\\meta.xml'.\n", "Processing atn_94793_false-killer-whale_trajectory_20091018-20091227.nc...\n", "Found 413 records.\n", " Extracted 354 occurrences with valid locations.\n", " Extracted 281 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94793/atn_94793_false-killer-whale_trajectory_20091018-20091227_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94793\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94804\n", + " Saved data to 'data\\dwc\\94793\\atn_94793_false-killer-whale_trajectory_20091018-20091227_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94793\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94793\\meta.xml'.\n", "Processing atn_94804_false-killer-whale_trajectory_20101016-20101029.nc...\n", "Found 166 records.\n", " Extracted 116 occurrences with valid locations.\n", " Extracted 100 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94804/atn_94804_false-killer-whale_trajectory_20101016-20101029_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94804\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94808\n", + " Saved data to 'data\\dwc\\94804\\atn_94804_false-killer-whale_trajectory_20101016-20101029_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94804\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94804\\meta.xml'.\n", "Processing atn_94808_false-killer-whale_trajectory_20091014-20091025.nc...\n", "Found 108 records.\n", " Extracted 96 occurrences with valid locations.\n", " Extracted 72 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94808/atn_94808_false-killer-whale_trajectory_20091014-20091025_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94808\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94811\n", + " Saved data to 'data\\dwc\\94808\\atn_94808_false-killer-whale_trajectory_20091014-20091025_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94808\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94808\\meta.xml'.\n", "Processing atn_94811_false-killer-whale_trajectory_20091006-20100103.nc...\n", "Found 676 records.\n", " Extracted 589 occurrences with valid locations.\n", " Extracted 448 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94811/atn_94811_false-killer-whale_trajectory_20091006-20100103_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94811\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94812\n", + " Saved data to 'data\\dwc\\94811\\atn_94811_false-killer-whale_trajectory_20091006-20100103_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94811\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94811\\meta.xml'.\n", "Processing atn_94812_false-killer-whale_trajectory_20091015-20100122.nc...\n", "Found 678 records.\n", " Extracted 596 occurrences with valid locations.\n", " Extracted 449 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94812/atn_94812_false-killer-whale_trajectory_20091015-20100122_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94812\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94813\n", + " Saved data to 'data\\dwc\\94812\\atn_94812_false-killer-whale_trajectory_20091015-20100122_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94812\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94812\\meta.xml'.\n", "Processing atn_94813_false-killer-whale_trajectory_20091017-20091117.nc...\n", "Found 287 records.\n", " Extracted 241 occurrences with valid locations.\n", " Extracted 184 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94813/atn_94813_false-killer-whale_trajectory_20091017-20091117_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94813\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94818\n", + " Saved data to 'data\\dwc\\94813\\atn_94813_false-killer-whale_trajectory_20091017-20091117_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94813\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94813\\meta.xml'.\n", "Processing atn_94818_false-killer-whale_trajectory_20091211-20100320.nc...\n", "Found 704 records.\n", " Extracted 598 occurrences with valid locations.\n", " Extracted 471 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94818/atn_94818_false-killer-whale_trajectory_20091211-20100320_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94818\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94819\n", + " Saved data to 'data\\dwc\\94818\\atn_94818_false-killer-whale_trajectory_20091211-20100320_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94818\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94818\\meta.xml'.\n", "Processing atn_94819_false-killer-whale_trajectory_20091211-20091227.nc...\n", "Found 131 records.\n", " Extracted 88 occurrences with valid locations.\n", " Extracted 73 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94819/atn_94819_false-killer-whale_trajectory_20091211-20091227_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94819\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94820\n", + " Saved data to 'data\\dwc\\94819\\atn_94819_false-killer-whale_trajectory_20091211-20091227_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94819\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94819\\meta.xml'.\n", "Processing atn_94820_false-killer-whale_trajectory_20091219-20100403.nc...\n", "Found 596 records.\n", " Extracted 410 occurrences with valid locations.\n", " Extracted 356 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94820/atn_94820_false-killer-whale_trajectory_20091219-20100403_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94820\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94821\n", + " Saved data to 'data\\dwc\\94820\\atn_94820_false-killer-whale_trajectory_20091219-20100403_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94820\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94820\\meta.xml'.\n", "Processing atn_94821_blainvilles-beaked-whale_trajectory_20091221-20100111.nc...\n", "Found 111 records.\n", " Extracted 80 occurrences with valid locations.\n", " Extracted 71 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94821/atn_94821_blainvilles-beaked-whale_trajectory_20091221-20100111_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94821\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/94822\n", + " Saved data to 'data\\dwc\\94821\\atn_94821_blainvilles-beaked-whale_trajectory_20091221-20100111_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94821\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94821\\meta.xml'.\n", "Processing atn_94822_false-killer-whale_trajectory_20091219-20100129.nc...\n", "Found 345 records.\n", " Extracted 249 occurrences with valid locations.\n", " Extracted 209 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\94822/atn_94822_false-killer-whale_trajectory_20091219-20100129_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94822\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/98364\n", + " Saved data to 'data\\dwc\\94822\\atn_94822_false-killer-whale_trajectory_20091219-20100129_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94822\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94822\\meta.xml'.\n", "Processing atn_98364_false-killer-whale_trajectory_20131023-20140223.nc...\n", "Found 824 records.\n", " Extracted 522 occurrences with valid locations.\n", " Extracted 373 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\98364/atn_98364_false-killer-whale_trajectory_20131023-20140223_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98364\\eml.xml'.\n", + " Saved data to 'data\\dwc\\98364\\atn_98364_false-killer-whale_trajectory_20131023-20140223_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98364\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\98364/atn_98364_false-killer-whale_trajectory_20131023-20140223_event.csv\n", + " Saved data to data\\dwc\\98364\\atn_98364_false-killer-whale_trajectory_20131023-20140223_event.csv\n", " no emof data found\n", - "Created output directory: data/dwc/98365\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98364\\meta.xml'.\n", "Processing atn_98365_false-killer-whale_trajectory_20131023-20131107.nc...\n", "Found 151 records.\n", " Extracted 94 occurrences with valid locations.\n", " Extracted 73 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\98365/atn_98365_false-killer-whale_trajectory_20131023-20131107_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98365\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99277\n", + " Saved data to 'data\\dwc\\98365\\atn_98365_false-killer-whale_trajectory_20131023-20131107_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98365\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98365\\meta.xml'.\n", "Processing atn_99277_ribbon-seal_trajectory_20140412-20140503.nc...\n", "Found 2531 records.\n", " Extracted 777 occurrences with valid locations.\n", " Extracted 241 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99277/atn_99277_ribbon-seal_trajectory_20140412-20140503_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99277\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99279\n", + " Saved data to 'data\\dwc\\99277\\atn_99277_ribbon-seal_trajectory_20140412-20140503_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99277\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99277\\meta.xml'.\n", "Processing atn_99279_ribbon-seal_trajectory_20140426-20140513.nc...\n", "Found 484 records.\n", " Extracted 46 occurrences with valid locations.\n", " Extracted 14 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99279/atn_99279_ribbon-seal_trajectory_20140426-20140513_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99279\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99280\n", + " Saved data to 'data\\dwc\\99279\\atn_99279_ribbon-seal_trajectory_20140426-20140513_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99279\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99279\\meta.xml'.\n", "Processing atn_99280_ribbon-seal_trajectory_20140428-20140506.nc...\n", "Found 731 records.\n", " Extracted 365 occurrences with valid locations.\n", " Extracted 101 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99280/atn_99280_ribbon-seal_trajectory_20140428-20140506_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99280\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99282\n", + " Saved data to 'data\\dwc\\99280\\atn_99280_ribbon-seal_trajectory_20140428-20140506_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99280\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99280\\meta.xml'.\n", "Processing atn_99282_ribbon-seal_trajectory_20140428-20140514.nc...\n", "Found 507 records.\n", " Extracted 153 occurrences with valid locations.\n", " Extracted 40 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99282/atn_99282_ribbon-seal_trajectory_20140428-20140514_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99282\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99283\n", + " Saved data to 'data\\dwc\\99282\\atn_99282_ribbon-seal_trajectory_20140428-20140514_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99282\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99282\\meta.xml'.\n", "Processing atn_99283_ribbon-seal_trajectory_20100509-20110518.nc...\n", "Found 5637 records.\n", " Extracted 684 occurrences with valid locations.\n", " Extracted 420 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99283/atn_99283_ribbon-seal_trajectory_20100509-20110518_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99283\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99287\n", + " Saved data to 'data\\dwc\\99283\\atn_99283_ribbon-seal_trajectory_20100509-20110518_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99283\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99283\\meta.xml'.\n", "Processing atn_99287_bearded-seal_trajectory_20120704-20130312.nc...\n", "Found 9936 records.\n", " Extracted 839 occurrences with valid locations.\n", " Extracted 539 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99287/atn_99287_bearded-seal_trajectory_20120704-20130312_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99287\\eml.xml'.\n", + " Saved data to 'data\\dwc\\99287\\atn_99287_bearded-seal_trajectory_20120704-20130312_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99287\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data/dwc\\99287/atn_99287_bearded-seal_trajectory_20120704-20130312_event.csv\n", + " Saved data to data\\dwc\\99287\\atn_99287_bearded-seal_trajectory_20120704-20130312_event.csv\n", " no emof data found\n", - "Created output directory: data/dwc/99288\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99287\\meta.xml'.\n", "Processing atn_99288_spotted-seal_trajectory_20100522-20100901.nc...\n", "Found 27 records.\n", " Extracted 15 occurrences with valid locations.\n", " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99288/atn_99288_spotted-seal_trajectory_20100522-20100901_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99288\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99292\n", + " Saved data to 'data\\dwc\\99288\\atn_99288_spotted-seal_trajectory_20100522-20100901_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99288\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99288\\meta.xml'.\n", "Processing atn_99292_ribbon-seal_trajectory_20100523-20100612.nc...\n", "Found 19 records.\n", " Extracted 11 occurrences with valid locations.\n", " Extracted 9 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99292/atn_99292_ribbon-seal_trajectory_20100523-20100612_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99292\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99293\n", + " Saved data to 'data\\dwc\\99292\\atn_99292_ribbon-seal_trajectory_20100523-20100612_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99292\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99292\\meta.xml'.\n", "Processing atn_99293_ribbon-seal_trajectory_20100509-20100801.nc...\n", "Found 49 records.\n", " Extracted 32 occurrences with valid locations.\n", " Extracted 16 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99293/atn_99293_ribbon-seal_trajectory_20100509-20100801_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99293\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99295\n", + " Saved data to 'data\\dwc\\99293\\atn_99293_ribbon-seal_trajectory_20100509-20100801_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99293\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99293\\meta.xml'.\n", "Processing atn_99295_spotted-seal_trajectory_20100523-20110730.nc...\n", "Found 169 records.\n", " Extracted 82 occurrences with valid locations.\n", " Extracted 54 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99295/atn_99295_spotted-seal_trajectory_20100523-20110730_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99295\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99297\n", + " Saved data to 'data\\dwc\\99295\\atn_99295_spotted-seal_trajectory_20100523-20110730_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99295\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99295\\meta.xml'.\n", "Processing atn_99297_ribbon-seal_trajectory_20100515-20100530.nc...\n", "Found 13 records.\n", " Extracted 5 occurrences with valid locations.\n", " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99297/atn_99297_ribbon-seal_trajectory_20100515-20100530_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99297\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99298\n", + " Saved data to 'data\\dwc\\99297\\atn_99297_ribbon-seal_trajectory_20100515-20100530_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99297\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99297\\meta.xml'.\n", "Processing atn_99298_ribbon-seal_trajectory_20100517-20120530.nc...\n", "Found 199 records.\n", " Extracted 104 occurrences with valid locations.\n", " Extracted 66 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99298/atn_99298_ribbon-seal_trajectory_20100517-20120530_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99298\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99299\n", + " Saved data to 'data\\dwc\\99298\\atn_99298_ribbon-seal_trajectory_20100517-20120530_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99298\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99298\\meta.xml'.\n", "Processing atn_99299_ribbon-seal_trajectory_20100505-20100605.nc...\n", "Found 39 records.\n", " Extracted 20 occurrences with valid locations.\n", " Extracted 12 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99299/atn_99299_ribbon-seal_trajectory_20100505-20100605_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99299\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99300\n", + " Saved data to 'data\\dwc\\99299\\atn_99299_ribbon-seal_trajectory_20100505-20100605_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99299\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99299\\meta.xml'.\n", "Processing atn_99300_ribbon-seal_trajectory_20100517-20110513.nc...\n", "Found 50 records.\n", " Extracted 30 occurrences with valid locations.\n", " Extracted 19 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99300/atn_99300_ribbon-seal_trajectory_20100517-20110513_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99300\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99301\n", + " Saved data to 'data\\dwc\\99300\\atn_99300_ribbon-seal_trajectory_20100517-20110513_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99300\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99300\\meta.xml'.\n", "Processing atn_99301_ribbon-seal_trajectory_20100523-20110201.nc...\n", "Found 33 records.\n", " Extracted 19 occurrences with valid locations.\n", " Extracted 12 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99301/atn_99301_ribbon-seal_trajectory_20100523-20110201_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99301\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99305\n", + " Saved data to 'data\\dwc\\99301\\atn_99301_ribbon-seal_trajectory_20100523-20110201_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99301\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99301\\meta.xml'.\n", "Processing atn_99305_spotted-seal_trajectory_20100522-20100730.nc...\n", "Found 55 records.\n", " Extracted 32 occurrences with valid locations.\n", " Extracted 20 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99305/atn_99305_spotted-seal_trajectory_20100522-20100730_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99305\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99306\n", + " Saved data to 'data\\dwc\\99305\\atn_99305_spotted-seal_trajectory_20100522-20100730_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99305\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99305\\meta.xml'.\n", "Processing atn_99306_ribbon-seal_trajectory_20100523-20100530.nc...\n", "Found 8 records.\n", " Extracted 6 occurrences with valid locations.\n", " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99306/atn_99306_ribbon-seal_trajectory_20100523-20100530_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99306\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99308\n", + " Saved data to 'data\\dwc\\99306\\atn_99306_ribbon-seal_trajectory_20100523-20100530_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99306\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99306\\meta.xml'.\n", "Processing atn_99308_ribbon-seal_trajectory_20100517-20110607.nc...\n", "Found 29 records.\n", " Extracted 0 occurrences with valid locations.\n", " Extracted 0 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99308/atn_99308_ribbon-seal_trajectory_20100517-20110607_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99308\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99309\n", + " Saved data to 'data\\dwc\\99308\\atn_99308_ribbon-seal_trajectory_20100517-20110607_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99308\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99308\\meta.xml'.\n", "Processing atn_99309_ribbon-seal_trajectory_20100514-20101215.nc...\n", "Found 28 records.\n", " Extracted 19 occurrences with valid locations.\n", " Extracted 7 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99309/atn_99309_ribbon-seal_trajectory_20100514-20101215_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99309\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99310\n", + " Saved data to 'data\\dwc\\99309\\atn_99309_ribbon-seal_trajectory_20100514-20101215_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99309\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99309\\meta.xml'.\n", "Processing atn_99310_bearded-seal_trajectory_20110617-20120606.nc...\n", "Found 155 records.\n", " Extracted 109 occurrences with valid locations.\n", " Extracted 54 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99310/atn_99310_bearded-seal_trajectory_20110617-20120606_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99310\\eml.xml'.\n", - " no HumanObservation events found\n", - "Created output directory: data/dwc/99312\n", + " Saved data to 'data\\dwc\\99310\\atn_99310_bearded-seal_trajectory_20110617-20120606_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99310\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99310\\meta.xml'.\n", "Processing atn_99312_ribbon-seal_trajectory_20100516-20100718.nc...\n", "Found 53 records.\n", " Extracted 32 occurrences with valid locations.\n", " Extracted 20 occurrences to first row in hour.\n", - " Saved data to 'data/dwc\\99312/atn_99312_ribbon-seal_trajectory_20100516-20100718_occurrence.csv'\n", - "EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99312\\eml.xml'.\n", - " no HumanObservation events found\n", + " Saved data to 'data\\dwc\\99312\\atn_99312_ribbon-seal_trajectory_20100516-20100718_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99312\\eml.xml'.\n", + "No HumanObservations found in the dataset.\n", + " no emof data found\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99312\\meta.xml'.\n", "\n", "--- 3. Conversion Complete ---\n", "✅ Success! Processed 289 files.\n" @@ -3192,7 +3516,8 @@ "import glob\n", "\n", "# Step 1: Download all .nc files from the URL\n", - "local_files = glob.glob('data/src/*.nc')\n", + "local_files = glob.glob('data\\\\src\\\\*.nc')#[:10]\n", + "\n", "\n", "# Step 2: Convert the downloaded files to individual Darwin Core CSVs\n", "if local_files:\n", @@ -3212,7 +3537,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 9, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -3238,34 +3563,13 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "# convert_to_dwc_individual(['data/src/atn_137491_spotted-seal_trajectory_20180418-20180526.nc'])" ] }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "ename": "NameError", - "evalue": "name 'eml_metadata' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[1;32mIn[10], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m save_eml_file(\u001b[43meml_metadata\u001b[49m)\n", - "\u001b[1;31mNameError\u001b[0m: name 'eml_metadata' is not defined" - ] - } - ], - "source": [ - "save_eml_file(eml_metadata)" - ] - }, { "cell_type": "code", "execution_count": null, diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv index 17c069a..a197e27 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv @@ -1,3 +1,3 @@ organismID,occurrenceID,eventID,measurementValue,measurementType,measurementMethod,measurementUnit -255021_spotted_seal,ioos_atn_2018-04-18T04:45:00Z_0.0_spotted_seal,spotted_seal_2018-04-18T04:45:00Z,69.0,animal_weight: mass of the animal as measured or estimated at deployment,69.0 (kg),kg -255021_spotted_seal,ioos_atn_2018-04-18T04:45:00Z_0.0_spotted_seal,spotted_seal_2018-04-18T04:45:00Z,129.0,animal_length: length of the animal as measured or estimated at deployment,129.0 (cm) standard length,cm +255021_spotted_seal,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,137491_spotted_seal_2018-04-18T04:45:00Z,69.0,animal_weight: mass of the animal as measured or estimated at deployment,69.0 (kg),kg +255021_spotted_seal,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,137491_spotted_seal_2018-04-18T04:45:00Z,129.0,animal_length: length of the animal as measured or estimated at deployment,129.0 (cm) standard length,cm diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv index c6bb996..d989c53 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv @@ -1,2 +1,2 @@ eventID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,minimumDepthInMeters,maximumDepthInMeters,countryCode,samplingProtocol -spotted_seal_2018-04-18T04:45:00Z,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,0.0,0.0,US,satellite telemetry +137491_spotted_seal_2018-04-18T04:45:00Z,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,0.0,0.0,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv index 832cf49..7242e1a 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv @@ -1,6 +1,6 @@ occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,eventID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,dataGeneralizations -ioos_atn_2018-04-18T04:45:00Z_0.0_spotted_seal,present,HumanObservation,255021_spotted_seal,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,spotted_seal_2018-04-18T04:45:00Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,0, -ioos_atn_2018-04-18T06:09:20Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-18T06:09:20Z,63.6399,-165.0595,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,spotted_seal_2018-04-18T06:09:20Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2018-04-29T07:05:19Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-29T07:05:19Z,60.0415,-164.4277,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,spotted_seal_2018-04-29T07:05:19Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2018-05-13T20:07:00Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-13T20:07:00Z,63.365,-164.0013,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,spotted_seal_2018-05-13T20:07:00Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. -ioos_atn_2018-05-20T19:26:36Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-20T19:26:36Z,64.6676,-161.5203,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,spotted_seal_2018-05-20T19:26:36Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,present,HumanObservation,255021_spotted_seal,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,137491_spotted_seal_2018-04-18T04:45:00Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,0, +ioos_atn_137491_2018-04-18T06:09:20Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-18T06:09:20Z,63.6399,-165.0595,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,137491_spotted_seal_2018-04-18T06:09:20Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_137491_2018-04-29T07:05:19Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-29T07:05:19Z,60.0415,-164.4277,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,137491_spotted_seal_2018-04-29T07:05:19Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_137491_2018-05-13T20:07:00Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-13T20:07:00Z,63.365,-164.0013,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,137491_spotted_seal_2018-05-13T20:07:00Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_137491_2018-05-20T19:26:36Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-20T19:26:36Z,64.6676,-161.5203,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,137491_spotted_seal_2018-05-20T19:26:36Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000, diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml index 32e6ead..9fa569e 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml @@ -29,8 +29,8 @@ - US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) - US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + US + (ATN) US Integrated Ocean Observing System Office Data Manager @@ -44,48 +44,47 @@ - Stacie Koslovsky - Stacie Koslovsky + Stacie + Koslovsky NOAA Alaska Fisheries Science Center stacie.koslovsky@noaa.gov https://orcid.org/0000-0002-9476-5383 author - + - Michael Cameron - Michael Cameron + Michael + Cameron NOAA Alaska Fisheries Science Center michael.cameron@noaa.gov author - + - Peter Boveng - Peter Boveng + Peter + Boveng NOAA Alaska Fisheries Science Center peter.boveng@noaa.gov https://orcid.org/0000-0003-2732-4833 author - + - Heather Ziel - Heather Ziel + Heather + Ziel NOAA Alaska Fisheries Science Center heather.ziel@noaa.gov https://orcid.org/0000-0001-7068-4418 author - 2025-05-27T21:27:32Z eng @@ -93,52 +92,28 @@ Wildlife Computers SPOT tag (ptt id 137491) deployed on a spotted seal (Phoca largha) by Josh London in the Bering Sea from 2018-04-18 to 2018-05-26 Abstract:A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 - + EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR - GCMD Science Keywords v15.1 - - EARTH SCIENCE > BIOSPHERE > ECOLOGICAL DYNAMICS > SPECIES/POPULATION INTERACTIONS > MIGRATORY RATES/ROUTES - GCMD Science Keywords v15.1 - - EARTH SCIENCE > OCEANS - GCMD Science Keywords v15.1 - - EARTH SCIENCE > CLIMATE INDICATORS > BIOSPHERIC INDICATORS > SPECIES MIGRATION - GCMD Science Keywords v15.1 - - EARTH SCIENCE > OCEANS - GCMD Science Keywords v15.1 - - EARTH SCIENCE > BIOLOGICAL CLASSIFICATION > ANIMALS/VERTEBRATES - GCMD Science Keywords v15.1 - - EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > MARINE ECOSYSTEMS - GCMD Science Keywords v15.1 - - PROVIDERS > GOVERNMENT AGENCIES-U.S. FEDERAL AGENCIES > DOC > NOAA > IOOS - GCMD Science Keywords v15.1 - - PROVIDERS > COMMERCIAL > Axiom Data Science + GCMD Science Keywords v15.1 - ATN @@ -176,7 +151,7 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - Bering Sea + Bering Sea -166.0702 -158.2506 @@ -199,7 +174,7 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht Species included below are tagged by this project and have left any embargo. Other individuals or species may later be appended to this dataset. species - Phoca largha + Phoca largha spotted seal @@ -209,8 +184,8 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - Josh London - Josh London + Josh + London NOAA Alaska Fisheries Science Center principalInvestigator @@ -253,8 +228,8 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 - Josh London - Josh London + Josh + London principalInvestigator diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml new file mode 100644 index 0000000..af481a7 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml @@ -0,0 +1,65 @@ + + + + + + atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv + + + + + + + + + + + + + + + atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv + + + + + + + + + + + + + \ No newline at end of file diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv index 1fecd96..e7fc51c 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv @@ -1,5 +1,5 @@ occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,eventID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,dataGeneralizations -ioos_atn_2014-04-26T00:51:11Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T00:51:11Z,60.6317,-178.0899,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,ribbon_seal_2014-04-26T00:51:11Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2014-04-26T19:21:24Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T19:21:24Z,61.0606,-177.8437,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,ribbon_seal_2014-04-26T19:21:24Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,first of 5 records. -ioos_atn_2014-04-27T14:31:07Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T14:31:07Z,61.1814,-177.471,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,ribbon_seal_2014-04-27T14:31:07Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2014-04-27T15:30:50Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T15:30:50Z,61.1712,-177.4029,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,ribbon_seal_2014-04-27T15:30:50Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_137494_2014-04-26T00:51:11Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T00:51:11Z,60.6317,-178.0899,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,137494_ribbon_seal_2014-04-26T00:51:11Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_137494_2014-04-26T19:21:24Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T19:21:24Z,61.0606,-177.8437,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,137494_ribbon_seal_2014-04-26T19:21:24Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,first of 5 records. +ioos_atn_137494_2014-04-27T14:31:07Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T14:31:07Z,61.1814,-177.471,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,137494_ribbon_seal_2014-04-27T14:31:07Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_137494_2014-04-27T15:30:50Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T15:30:50Z,61.1712,-177.4029,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,137494_ribbon_seal_2014-04-27T15:30:50Z,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml index 48ecf27..bda79b3 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml @@ -29,8 +29,8 @@ - US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) - US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + US + (ATN) US Integrated Ocean Observing System Office Data Manager @@ -44,48 +44,47 @@ - Stacie Koslovsky - Stacie Koslovsky + Stacie + Koslovsky NOAA Alaska Fisheries Science Center stacie.koslovsky@noaa.gov https://orcid.org/0000-0002-9476-5383 author - + - Michael Cameron - Michael Cameron + Michael + Cameron NOAA Alaska Fisheries Science Center michael.cameron@noaa.gov author - + - Peter Boveng - Peter Boveng + Peter + Boveng NOAA Alaska Fisheries Science Center peter.boveng@noaa.gov https://orcid.org/0000-0003-2732-4833 author - + - Heather Ziel - Heather Ziel + Heather + Ziel NOAA Alaska Fisheries Science Center heather.ziel@noaa.gov https://orcid.org/0000-0001-7068-4418 author - 2025-05-27T21:01:36Z eng @@ -93,52 +92,28 @@ Wildlife Computers SPOT tag (ptt id 137494) deployed on a ribbon seal (Histriophoca fasciata) by Josh London in the Bering Sea from 2014-04-26 to 2014-04-26 Abstract:A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 - + EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR - GCMD Science Keywords v15.1 - - EARTH SCIENCE > BIOSPHERE > ECOLOGICAL DYNAMICS > SPECIES/POPULATION INTERACTIONS > MIGRATORY RATES/ROUTES - GCMD Science Keywords v15.1 - - EARTH SCIENCE > OCEANS - GCMD Science Keywords v15.1 - - EARTH SCIENCE > CLIMATE INDICATORS > BIOSPHERIC INDICATORS > SPECIES MIGRATION - GCMD Science Keywords v15.1 - - EARTH SCIENCE > OCEANS - GCMD Science Keywords v15.1 - - EARTH SCIENCE > BIOLOGICAL CLASSIFICATION > ANIMALS/VERTEBRATES - GCMD Science Keywords v15.1 - - EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > MARINE ECOSYSTEMS - GCMD Science Keywords v15.1 - - PROVIDERS > GOVERNMENT AGENCIES-U.S. FEDERAL AGENCIES > DOC > NOAA > IOOS - GCMD Science Keywords v15.1 - - PROVIDERS > COMMERCIAL > Axiom Data Science + GCMD Science Keywords v15.1 - ATN @@ -176,7 +151,7 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - Bering Sea + Bering Sea -178.09 -177.397 @@ -199,7 +174,7 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht Species included below are tagged by this project and have left any embargo. Other individuals or species may later be appended to this dataset. species - Histriophoca fasciata + Histriophoca fasciata ribbon seal @@ -209,8 +184,8 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - Josh London - Josh London + Josh + London NOAA Alaska Fisheries Science Center principalInvestigator @@ -253,8 +228,8 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 - Josh London - Josh London + Josh + London principalInvestigator diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/137494/meta.xml new file mode 100644 index 0000000..6675cab --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/137494/meta.xml @@ -0,0 +1,36 @@ + + + + + + + atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv index ab12988..c0e4a03 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv @@ -1,2 +1,2 @@ eventID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,minimumDepthInMeters,maximumDepthInMeters,countryCode,samplingProtocol -bearded_seal_2011-06-18T03:00:00Z,2011-06-18T03:00:00Z,66.64,-163.0,EPSG:4326,0.0,0.0,US,satellite telemetry +38553_bearded_seal_2011-06-18T03:00:00Z,2011-06-18T03:00:00Z,66.64,-163.0,EPSG:4326,0.0,0.0,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv index d27c0e8..790f2c7 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv @@ -1,1219 +1,1219 @@ occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,eventID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,dataGeneralizations -ioos_atn_2011-06-18T03:00:00Z_0.0_bearded_seal,present,HumanObservation,137079_bearded_seal,2011-06-18T03:00:00Z,66.64,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T03:00:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,0,first of 3 records. -ioos_atn_2011-06-18T04:07:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T04:07:02Z,66.62,-162.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T04:07:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-18T05:16:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T05:16:18Z,66.617,-163.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T05:16:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-06-18T07:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T07:03:35Z,66.6,-163.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T07:03:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-06-18T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T09:11:19Z,66.601,-163.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T09:11:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-18T11:13:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T11:13:42Z,66.605,-163.096,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T11:13:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-18T12:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T12:50:52Z,66.625,-163.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T12:50:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-18T14:14:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T14:14:40Z,66.64,-163.08,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-18T14:14:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-19T00:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T00:08:08Z,66.662,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T00:08:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 6 records. -ioos_atn_2011-06-19T01:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T01:46:52Z,66.644,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T01:46:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-19T02:17:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T02:17:16Z,66.644,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T02:17:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. -ioos_atn_2011-06-19T03:25:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T03:25:37Z,66.646,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T03:25:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-06-19T05:06:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T05:06:44Z,66.665,-162.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T05:06:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-19T07:08:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T07:08:49Z,66.652,-163.029,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-19T07:08:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-20T00:07:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T00:07:22Z,66.629,-163.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-20T00:07:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-06-20T03:16:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T03:16:21Z,66.58,-162.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-20T03:16:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-06-20T04:53:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T04:53:44Z,66.537,-162.937,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-20T04:53:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-20T05:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T05:04:36Z,66.559,-162.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-20T05:04:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-20T06:38:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T06:38:36Z,66.548,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-20T06:38:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-06-21T00:19:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T00:19:43Z,66.631,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-21T00:19:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-21T01:19:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T01:19:38Z,66.639,-162.983,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-21T01:19:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. -ioos_atn_2011-06-21T03:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T03:01:07Z,66.632,-162.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-21T03:01:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-06-21T04:47:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T04:47:17Z,66.583,-162.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-21T04:47:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-06-21T06:27:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T06:27:31Z,66.561,-162.848,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-21T06:27:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. -ioos_atn_2011-06-22T00:02:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T00:02:33Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T00:02:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-22T01:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T01:03:38Z,66.61,-162.94,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T01:03:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. -ioos_atn_2011-06-22T02:17:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T02:17:13Z,66.597,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T02:17:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. -ioos_atn_2011-06-22T04:10:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T04:10:21Z,66.593,-162.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T04:10:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-22T05:52:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T05:52:14Z,66.527,-162.829,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T05:52:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-22T06:06:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T06:06:27Z,66.528,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T06:06:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-22T07:45:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T07:45:44Z,66.505,-162.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-22T07:45:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-06-23T01:34:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T01:34:03Z,66.431,-162.697,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T01:34:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-23T03:33:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T03:33:52Z,66.457,-162.769,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T03:33:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-23T04:23:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T04:23:32Z,66.475,-162.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T04:23:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-23T07:13:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T07:13:31Z,66.501,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T07:13:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-23T08:53:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T08:53:26Z,66.508,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T08:53:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-23T13:42:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T13:42:55Z,66.56,-162.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-23T13:42:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-24T00:32:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T00:32:04Z,66.593,-162.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T00:32:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-24T03:07:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T03:07:08Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T03:07:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. -ioos_atn_2011-06-24T05:51:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T05:51:21Z,66.615,-162.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T05:51:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-06-24T06:51:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T06:51:41Z,66.614,-162.957,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T06:51:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-06-24T07:10:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T07:10:49Z,66.611,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T07:10:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-24T08:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T08:51:08Z,66.609,-162.933,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-24T08:51:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-25T00:09:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T00:09:16Z,66.614,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T00:09:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-25T01:18:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T01:18:26Z,66.625,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T01:18:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. -ioos_atn_2011-06-25T02:41:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T02:41:14Z,66.616,-163.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T02:41:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-06-25T03:29:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T03:29:42Z,66.626,-163.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T03:29:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-25T04:41:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T04:41:52Z,66.611,-163.006,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T04:41:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-25T05:04:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T05:04:57Z,66.621,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T05:04:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-25T06:26:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T06:26:11Z,66.618,-162.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T06:26:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-25T07:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T07:22:06Z,66.634,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T07:22:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-25T08:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T08:06:03Z,66.611,-163.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-25T08:06:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-26T00:38:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T00:38:51Z,66.612,-162.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T00:38:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-06-26T02:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T02:03:51Z,66.606,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T02:03:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-26T03:09:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T03:09:42Z,66.628,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T03:09:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-26T04:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T04:20:01Z,66.615,-162.954,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T04:20:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-26T05:25:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T05:25:22Z,66.611,-162.949,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T05:25:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-26T06:24:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T06:24:28Z,66.628,-162.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T06:24:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-26T08:06:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T08:06:47Z,66.625,-162.903,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-26T08:06:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-06-27T00:53:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T00:53:46Z,66.504,-163.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T00:53:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-27T01:08:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T01:08:26Z,66.527,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T01:08:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-06-27T02:18:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T02:18:56Z,66.508,-163.036,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T02:18:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-06-27T03:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T03:33:11Z,66.518,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T03:33:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-06-27T04:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T04:29:26Z,66.525,-163.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T04:29:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-06-27T05:36:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T05:36:11Z,66.532,-163.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-27T05:36:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-06-28T03:03:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T03:03:22Z,66.627,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T03:03:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-28T05:00:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T05:00:08Z,66.634,-163.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T05:00:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-28T06:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T06:45:07Z,66.636,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T06:45:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-06-28T07:23:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T07:23:57Z,66.631,-163.082,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T07:23:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-06-28T08:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T08:36:02Z,66.63,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T08:36:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-06-28T09:04:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T09:04:12Z,66.617,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-28T09:04:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-06-29T00:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T00:29:26Z,66.7,-163.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-29T00:29:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-29T03:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T03:09:48Z,66.74,-163.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-29T03:09:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-06-29T17:38:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T17:38:47Z,66.842,-163.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-29T17:38:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-29T18:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T18:06:09Z,66.86,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-29T18:06:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-30T02:06:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T02:06:33Z,66.861,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-30T02:06:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-30T04:36:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T04:36:27Z,66.937,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-30T04:36:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-06-30T10:05:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T10:05:17Z,66.988,-163.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-06-30T10:05:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-01T01:02:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T01:02:21Z,67.031,-164.349,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-01T01:02:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-01T07:50:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T07:50:05Z,67.042,-164.584,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-01T07:50:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-01T15:35:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T15:35:51Z,67.083,-165.046,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-01T15:35:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. -ioos_atn_2011-07-02T07:42:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T07:42:23Z,67.429,-165.827,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-02T07:42:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-02T12:06:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T12:06:46Z,67.524,-165.951,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-02T12:06:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-02T13:32:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T13:32:11Z,67.563,-166.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-02T13:32:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-02T15:24:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T15:24:00Z,67.594,-166.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-02T15:24:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-02T16:51:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T16:51:50Z,67.624,-166.111,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-02T16:51:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-03T00:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T00:42:52Z,67.724,-166.456,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-03T00:42:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-03T01:09:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T01:09:17Z,67.726,-166.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-03T01:09:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-03T03:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T03:14:13Z,67.754,-166.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-03T03:14:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-03T07:19:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T07:19:08Z,67.83,-166.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-03T07:19:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-04T10:27:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T10:27:18Z,68.531,-167.802,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-04T10:27:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-04T13:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T13:22:06Z,68.614,-167.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-04T13:22:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-05T00:48:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T00:48:34Z,68.814,-167.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-05T00:48:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-05T01:15:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T01:15:53Z,68.799,-167.21,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-05T01:15:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-05T05:46:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T05:46:44Z,68.875,-166.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-05T05:46:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-05T07:07:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T07:07:39Z,68.88,-166.703,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-05T07:07:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-05T13:16:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T13:16:41Z,69.014,-166.442,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-05T13:16:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-07-06T01:45:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T01:45:55Z,69.275,-165.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T01:45:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-06T02:05:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T02:05:39Z,69.283,-165.986,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T02:05:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-06T04:37:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T04:37:29Z,69.309,-165.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T04:37:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-06T06:18:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T06:18:21Z,69.322,-165.82,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T06:18:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-06T07:08:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T07:08:44Z,69.32,-165.812,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T07:08:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-07-06T09:40:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T09:40:17Z,69.341,-165.751,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T09:40:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-06T11:20:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T11:20:44Z,69.346,-165.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-06T11:20:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-07T00:54:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T00:54:05Z,69.399,-165.385,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T00:54:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-07T01:01:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T01:01:21Z,69.416,-165.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T01:01:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-07T04:54:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T04:54:31Z,69.43,-165.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T04:54:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-07T05:05:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T05:05:05Z,69.436,-165.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T05:05:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-07T13:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T13:02:46Z,69.543,-164.969,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T13:02:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-07T20:22:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T20:22:52Z,69.629,-164.92,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-07T20:22:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-08T12:40:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-08T12:40:55Z,69.682,-164.257,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-08T12:40:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-09T02:34:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T02:34:30Z,69.818,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T02:34:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-09T05:23:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T05:23:26Z,69.824,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T05:23:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-09T06:57:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T06:57:06Z,69.835,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T06:57:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-09T08:01:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T08:01:24Z,69.83,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T08:01:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-09T10:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T10:51:51Z,69.85,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T10:51:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-09T14:09:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T14:09:09Z,69.834,-163.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T14:09:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-09T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T15:51:15Z,69.825,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-09T15:51:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-10T03:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T03:51:31Z,69.836,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T03:51:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-10T06:34:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T06:34:13Z,69.857,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T06:34:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-10T07:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T07:13:38Z,69.849,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T07:13:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-10T12:21:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T12:21:32Z,69.858,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T12:21:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-10T13:59:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T13:59:06Z,69.867,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T13:59:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-10T14:02:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T14:02:19Z,69.87,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T14:02:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-10T15:15:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T15:15:43Z,69.875,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-10T15:15:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-11T00:11:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T00:11:33Z,69.857,-163.606,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-11T00:11:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-11T01:49:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T01:49:20Z,69.863,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-11T01:49:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2011-07-11T02:56:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T02:56:55Z,69.858,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-11T02:56:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-11T03:27:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T03:27:49Z,69.869,-163.571,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-11T03:27:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-11T13:15:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T13:15:14Z,69.874,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-11T13:15:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-12T02:11:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T02:11:32Z,69.768,-163.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T02:11:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-12T06:30:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T06:30:41Z,69.779,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T06:30:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-12T09:19:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T09:19:42Z,69.816,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T09:19:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-12T11:59:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T11:59:25Z,69.827,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T11:59:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-12T13:37:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T13:37:28Z,69.831,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T13:37:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-12T17:42:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T17:42:31Z,69.85,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T17:42:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-12T18:41:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T18:41:42Z,69.867,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-12T18:41:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-13T13:29:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T13:29:37Z,70.028,-163.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-13T13:29:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-07-13T14:09:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T14:09:22Z,70.03,-163.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-13T14:09:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-07-14T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T05:10:23Z,70.184,-162.602,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-14T05:10:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-14T21:56:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T21:56:00Z,70.381,-161.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-14T21:56:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-15T11:28:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T11:28:11Z,70.453,-161.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-15T11:28:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-15T13:07:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T13:07:28Z,70.456,-161.425,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-15T13:07:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-15T15:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T15:02:20Z,70.42,-161.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-15T15:02:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-15T16:25:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T16:25:24Z,70.445,-161.553,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-15T16:25:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. -ioos_atn_2011-07-15T17:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T17:03:38Z,70.415,-161.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-15T17:03:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-07-16T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T00:50:28Z,70.4,-161.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-16T00:50:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-07-16T01:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T01:32:28Z,70.403,-161.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-16T01:32:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2011-07-16T02:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T02:32:28Z,70.409,-161.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-16T02:32:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. -ioos_atn_2011-07-16T03:06:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T03:06:58Z,70.396,-161.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-16T03:06:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-07-16T04:17:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T04:17:28Z,70.398,-161.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-16T04:17:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-07-17T01:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T01:06:22Z,70.386,-161.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T01:06:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-17T02:17:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T02:17:01Z,70.405,-161.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T02:17:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-17T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T06:13:20Z,70.407,-161.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T06:13:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-17T14:32:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T14:32:02Z,70.349,-162.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T14:32:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-07-17T16:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T16:08:51Z,70.311,-162.562,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T16:08:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-17T17:45:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T17:45:06Z,70.287,-162.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T17:45:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-17T18:11:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T18:11:09Z,70.275,-162.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T18:11:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-17T19:32:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T19:32:36Z,70.234,-162.748,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-17T19:32:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-18T00:27:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T00:27:32Z,70.114,-162.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T00:27:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. -ioos_atn_2011-07-18T02:43:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T02:43:18Z,70.084,-162.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T02:43:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. -ioos_atn_2011-07-18T03:28:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T03:28:15Z,70.07,-163.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T03:28:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-07-18T04:04:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T04:04:15Z,70.08,-162.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T04:04:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-07-18T05:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T05:07:15Z,70.082,-162.938,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T05:07:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-07-18T06:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T06:07:15Z,70.082,-162.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T06:07:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-18T07:09:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T07:09:55Z,70.086,-162.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-18T07:09:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-07-19T00:51:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T00:51:20Z,69.829,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T00:51:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. -ioos_atn_2011-07-19T03:03:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T03:03:50Z,69.814,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T03:03:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2011-07-19T04:11:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T04:11:20Z,69.822,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T04:11:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-19T08:29:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T08:29:50Z,69.842,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T08:29:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-19T12:28:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T12:28:03Z,69.757,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T12:28:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-19T13:17:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T13:17:09Z,69.756,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-19T13:17:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-20T03:13:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T03:13:16Z,69.734,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-20T03:13:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-20T05:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T05:41:26Z,69.748,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-20T05:41:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-20T06:39:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T06:39:56Z,69.755,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-20T06:39:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-07-20T07:22:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T07:22:41Z,69.755,-163.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-20T07:22:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-07-20T08:09:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T08:09:11Z,69.761,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-20T08:09:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-07-21T12:05:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T12:05:51Z,69.711,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-21T12:05:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-21T13:46:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T13:46:00Z,69.706,-163.611,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-21T13:46:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-21T15:21:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T15:21:15Z,69.706,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-21T15:21:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-22T00:08:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T00:08:54Z,69.693,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-22T00:08:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-22T04:08:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T04:08:05Z,69.68,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-22T04:08:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-22T11:52:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T11:52:21Z,69.691,-163.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-22T11:52:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-22T13:52:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T13:52:57Z,69.667,-163.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-22T13:52:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-07-23T01:32:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T01:32:47Z,69.628,-163.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-23T01:32:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-23T06:48:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T06:48:48Z,69.6,-163.877,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-23T06:48:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-07-23T07:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T07:06:03Z,69.6,-163.875,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-23T07:06:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-23T08:31:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T08:31:13Z,69.605,-163.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-23T08:31:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-07-23T11:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T11:41:00Z,69.613,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-23T11:41:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-24T00:10:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T00:10:03Z,69.688,-163.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T00:10:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-24T01:41:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T01:41:51Z,69.7,-163.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T01:41:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-24T02:51:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T02:51:36Z,69.696,-163.899,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T02:51:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-24T06:36:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T06:36:50Z,69.728,-163.935,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T06:36:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-24T08:20:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T08:20:12Z,69.748,-163.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T08:20:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-24T13:12:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T13:12:12Z,69.72,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T13:12:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-24T14:56:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T14:56:47Z,69.717,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-24T14:56:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-25T02:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T02:21:25Z,69.749,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-25T02:21:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-25T06:24:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T06:24:49Z,69.78,-163.585,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-25T06:24:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-25T11:23:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T11:23:44Z,69.774,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-25T11:23:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-25T13:04:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T13:04:26Z,69.767,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-25T13:04:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-25T14:14:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T14:14:49Z,69.756,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-25T14:14:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-07-26T04:29:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T04:29:07Z,69.766,-163.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-26T04:29:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-26T06:16:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T06:16:26Z,69.775,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-26T06:16:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-26T09:26:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T09:26:49Z,69.785,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-26T09:26:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-26T12:52:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T12:52:06Z,69.8,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-26T12:52:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-26T16:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T16:06:53Z,69.798,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-26T16:06:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-27T00:42:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T00:42:15Z,69.802,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-27T00:42:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. -ioos_atn_2011-07-27T02:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T02:14:06Z,69.83,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-27T02:14:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 5 records. -ioos_atn_2011-07-27T03:11:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T03:11:21Z,69.801,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-27T03:11:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-28T03:26:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T03:26:35Z,69.744,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-28T03:26:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-28T04:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T04:03:51Z,69.735,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-28T04:03:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-07-28T05:22:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T05:22:01Z,69.736,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-28T05:22:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-07-29T12:18:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T12:18:23Z,69.729,-163.52,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-29T12:18:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-07-29T20:02:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T20:02:45Z,69.696,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-29T20:02:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-30T01:53:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T01:53:52Z,69.702,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-30T01:53:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-30T04:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T04:47:02Z,69.679,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-30T04:47:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-07-30T05:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T05:22:07Z,69.669,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-30T05:22:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-07-30T06:03:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T06:03:17Z,69.669,-163.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-30T06:03:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-07-30T07:03:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T07:03:27Z,69.668,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-30T07:03:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-07-31T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T00:07:45Z,69.666,-163.649,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-31T00:07:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-31T03:13:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T03:13:57Z,69.669,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-31T03:13:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-07-31T07:42:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T07:42:40Z,69.655,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-31T07:42:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-07-31T09:02:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T09:02:22Z,69.656,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-31T09:02:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-07-31T13:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T13:36:04Z,69.667,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-07-31T13:36:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-08-01T01:18:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T01:18:30Z,69.665,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-01T01:18:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-08-01T03:15:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T03:15:30Z,69.668,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-01T03:15:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-01T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T04:31:07Z,69.669,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-01T04:31:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-01T05:13:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T05:13:58Z,69.664,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-01T05:13:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-08-01T06:42:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T06:42:09Z,69.67,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-01T06:42:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-08-02T02:27:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T02:27:23Z,69.672,-163.739,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-02T02:27:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-02T03:11:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T03:11:08Z,69.678,-163.646,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-02T03:11:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-08-02T04:06:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T04:06:38Z,69.68,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-02T04:06:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-08-02T14:54:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T14:54:19Z,69.656,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-02T14:54:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-03T01:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T01:09:48Z,69.675,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-03T01:09:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-03T02:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T02:00:42Z,69.675,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-03T02:00:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-03T04:31:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T04:31:10Z,69.663,-163.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-03T04:31:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-03T05:21:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T05:21:24Z,69.67,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-03T05:21:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-03T06:16:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T06:16:19Z,69.675,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-03T06:16:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-08-04T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T04:21:21Z,69.685,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T04:21:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-04T05:45:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T05:45:49Z,69.685,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T05:45:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-04T07:26:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T07:26:17Z,69.685,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T07:26:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-04T11:06:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T11:06:32Z,69.688,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T11:06:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-04T12:58:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T12:58:21Z,69.694,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T12:58:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-04T13:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T13:33:49Z,69.699,-163.59,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T13:33:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-04T14:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T14:33:26Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-04T14:33:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-05T00:58:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T00:58:31Z,69.676,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T00:58:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-05T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T04:21:21Z,69.69,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T04:21:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-05T05:20:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T05:20:19Z,69.687,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T05:20:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-05T12:47:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T12:47:47Z,69.668,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T12:47:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-08-05T15:58:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T15:58:19Z,69.658,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T15:58:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-05T17:42:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T17:42:10Z,69.659,-163.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-05T17:42:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-06T00:00:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T00:00:25Z,69.653,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-06T00:00:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 6 records. -ioos_atn_2011-08-06T01:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T01:38:40Z,69.65,-163.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-06T01:38:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-06T02:06:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T02:06:40Z,69.644,-163.567,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-06T02:06:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. -ioos_atn_2011-08-07T04:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T04:33:23Z,69.741,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T04:33:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-07T05:24:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T05:24:22Z,69.731,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T05:24:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-07T06:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T06:53:55Z,69.732,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T06:53:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-08-07T07:10:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T07:10:55Z,69.737,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T07:10:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-07T09:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T09:38:40Z,69.743,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T09:38:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-07T10:25:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T10:25:10Z,69.747,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-07T10:25:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-08-08T01:45:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T01:45:33Z,69.741,-163.619,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-08T01:45:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-08T03:22:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T03:22:23Z,69.732,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-08T03:22:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-08T10:03:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T10:03:23Z,69.724,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-08T10:03:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-08-09T00:04:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T00:04:58Z,69.732,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T00:04:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-09T01:16:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T01:16:31Z,69.732,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T01:16:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-08-09T03:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T03:24:48Z,69.725,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T03:24:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-09T06:47:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T06:47:37Z,69.706,-163.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T06:47:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-09T07:10:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T07:10:20Z,69.704,-163.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T07:10:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-09T08:01:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T08:01:20Z,69.7,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T08:01:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-08-09T09:36:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T09:36:35Z,69.698,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T09:36:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-08-09T10:26:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T10:26:05Z,69.698,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-09T10:26:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-10T04:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T04:13:56Z,69.678,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T04:13:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-10T05:59:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T05:59:52Z,69.708,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T05:59:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-10T06:45:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T06:45:48Z,69.707,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T06:45:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-10T09:14:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T09:14:52Z,69.72,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T09:14:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-10T11:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T11:46:33Z,69.721,-163.714,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T11:46:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-10T12:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T12:49:55Z,69.725,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-10T12:49:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-11T02:59:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T02:59:33Z,69.711,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-11T02:59:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-11T07:14:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T07:14:21Z,69.699,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-11T07:14:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-11T18:14:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T18:14:48Z,69.642,-163.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-11T18:14:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-08-12T14:46:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T14:46:19Z,69.686,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-12T14:46:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-12T15:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T15:08:55Z,69.684,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-12T15:08:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-12T16:25:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T16:25:21Z,69.684,-163.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-12T16:25:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-13T04:14:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T04:14:44Z,69.69,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-13T04:14:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-13T12:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T12:55:34Z,69.689,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-13T12:55:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-13T17:54:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T17:54:16Z,69.689,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-13T17:54:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-13T18:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T18:07:01Z,69.689,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-13T18:07:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2011-08-14T06:47:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-14T06:47:14Z,69.681,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-14T06:47:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-15T02:09:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T02:09:24Z,69.686,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-15T02:09:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-08-15T04:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T04:46:52Z,69.69,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-15T04:46:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-15T12:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T12:34:32Z,69.689,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-15T12:34:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-15T14:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T14:09:46Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-15T14:09:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-08-16T06:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T06:08:45Z,69.68,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-16T06:08:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-16T12:37:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T12:37:44Z,69.671,-163.717,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-16T12:37:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-16T17:02:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T17:02:18Z,69.668,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-16T17:02:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. -ioos_atn_2011-08-17T07:19:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T07:19:25Z,69.674,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-17T07:19:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-17T18:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T18:20:04Z,69.693,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-17T18:20:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-17T20:32:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T20:32:27Z,69.681,-163.658,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-17T20:32:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2011-08-17T22:46:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T22:46:07Z,69.686,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-17T22:46:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-18T16:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T16:13:38Z,69.694,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-18T16:13:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-18T17:18:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T17:18:15Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-18T17:18:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-08-19T00:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T00:02:43Z,69.634,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-19T00:02:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-19T04:49:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T04:49:42Z,69.659,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-19T04:49:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-19T06:07:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T06:07:54Z,69.644,-163.706,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-19T06:07:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-19T14:10:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T14:10:48Z,69.677,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-19T14:10:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-20T09:08:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T09:08:38Z,69.696,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-20T09:08:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-20T10:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T10:12:46Z,69.701,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-20T10:12:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-20T11:38:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T11:38:32Z,69.711,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-20T11:38:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-20T12:06:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T12:06:52Z,69.712,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-20T12:06:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-21T07:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T07:06:53Z,69.688,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T07:06:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-21T08:48:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T08:48:04Z,69.689,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T08:48:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-21T16:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T16:50:54Z,69.692,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T16:50:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-21T17:45:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T17:45:54Z,69.689,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T17:45:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-21T20:02:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T20:02:14Z,69.678,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T20:02:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-21T21:30:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T21:30:56Z,69.674,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-21T21:30:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-22T03:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T03:29:55Z,69.686,-163.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-22T03:29:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-22T05:10:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T05:10:29Z,69.676,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-22T05:10:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-08-22T06:44:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T06:44:54Z,69.665,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-22T06:44:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-22T07:04:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T07:04:18Z,69.662,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-22T07:04:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-23T03:56:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T03:56:30Z,69.671,-163.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T03:56:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-23T16:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T16:23:01Z,69.714,-163.833,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T16:23:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-23T17:33:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T17:33:56Z,69.712,-163.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T17:33:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-23T19:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T19:43:17Z,69.711,-163.819,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T19:43:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-23T21:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T21:07:36Z,69.713,-163.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T21:07:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-23T22:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T22:33:49Z,69.71,-163.817,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-23T22:33:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-24T07:07:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T07:07:27Z,69.641,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-24T07:07:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-24T08:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T08:53:27Z,69.64,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-24T08:53:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-24T09:25:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T09:25:30Z,69.638,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-24T09:25:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-08-25T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T16:45:07Z,69.675,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-25T16:45:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-25T17:49:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T17:49:47Z,69.681,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-25T17:49:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-25T22:59:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T22:59:37Z,69.68,-163.692,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-25T22:59:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-26T07:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T07:02:20Z,69.736,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-26T07:02:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-26T08:43:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T08:43:55Z,69.746,-163.685,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-26T08:43:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-26T10:51:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T10:51:10Z,69.751,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-26T10:51:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-27T00:43:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T00:43:42Z,69.758,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-27T00:43:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-27T10:04:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T10:04:20Z,69.689,-163.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-27T10:04:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-08-27T12:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T12:03:00Z,69.692,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-27T12:03:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-08-28T04:38:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T04:38:52Z,69.676,-163.698,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T04:38:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-08-28T06:21:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T06:21:05Z,69.678,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T06:21:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-28T09:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T09:48:01Z,69.685,-163.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T09:48:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-28T10:12:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T10:12:16Z,69.677,-163.695,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T10:12:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-28T11:50:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T11:50:56Z,69.688,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T11:50:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-28T12:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T12:07:36Z,69.685,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-28T12:07:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-29T04:23:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T04:23:52Z,69.689,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-29T04:23:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-29T07:54:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T07:54:54Z,69.684,-163.709,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-29T07:54:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-29T09:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T09:19:26Z,69.666,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-29T09:19:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-08-29T10:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T10:01:01Z,69.669,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-29T10:01:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-08-30T04:28:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T04:28:16Z,69.682,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-30T04:28:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-30T05:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T05:32:28Z,69.682,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-30T05:32:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-08-30T09:01:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T09:01:06Z,69.693,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-30T09:01:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-08-30T10:09:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T10:09:41Z,69.688,-163.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-30T10:09:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-08-30T11:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T11:33:26Z,69.682,-163.726,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-30T11:33:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-08-31T00:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T00:24:48Z,69.684,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-31T00:24:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-31T08:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T08:39:37Z,69.687,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-31T08:39:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-08-31T12:59:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T12:59:16Z,69.696,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-08-31T12:59:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-01T00:30:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T00:30:29Z,69.686,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T00:30:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-01T02:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T02:09:46Z,69.685,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T02:09:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-01T03:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T03:43:17Z,69.682,-163.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T03:43:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-01T06:45:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T06:45:01Z,69.683,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T06:45:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-01T07:12:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T07:12:04Z,69.682,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T07:12:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-01T08:09:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T08:09:57Z,69.668,-163.705,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T08:09:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-09-01T09:48:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T09:48:12Z,69.68,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T09:48:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-01T10:06:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T10:06:57Z,69.68,-163.69,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-01T10:06:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-02T07:58:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T07:58:57Z,69.691,-163.657,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-02T07:58:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-02T09:40:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T09:40:52Z,69.687,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-02T09:40:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-09-02T10:56:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T10:56:57Z,69.693,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-02T10:56:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-02T11:20:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T11:20:42Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-02T11:20:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-09-03T00:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T00:41:30Z,69.704,-163.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T00:41:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-09-03T02:18:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T02:18:07Z,69.698,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T02:18:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-03T05:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T05:39:01Z,69.688,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T05:39:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-03T07:20:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T07:20:03Z,69.68,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T07:20:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-03T08:32:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T08:32:12Z,69.683,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T08:32:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-09-03T09:03:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T09:03:57Z,69.678,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T09:03:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-09-03T10:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T10:49:16Z,69.686,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T10:49:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-03T12:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T12:49:48Z,69.676,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-03T12:49:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-04T02:14:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T02:14:56Z,69.682,-163.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-04T02:14:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-04T08:57:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T08:57:37Z,69.684,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-04T08:57:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-04T22:39:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T22:39:59Z,69.666,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-04T22:39:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-09-05T02:05:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T02:05:44Z,69.683,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-05T02:05:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-05T10:23:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T10:23:09Z,69.687,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-05T10:23:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-05T19:01:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T19:01:41Z,69.677,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-05T19:01:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-06T06:34:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T06:34:11Z,69.697,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-06T06:34:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-06T07:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T07:52:15Z,69.682,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-06T07:52:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-06T08:54:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T08:54:36Z,69.674,-163.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-06T08:54:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-09-06T09:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T09:34:14Z,69.683,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-06T09:34:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-07T09:15:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-07T09:15:50Z,69.816,-163.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-07T09:15:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-08T04:04:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T04:04:27Z,69.678,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-08T04:04:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-08T07:30:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T07:30:16Z,69.693,-163.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-08T07:30:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-09-08T08:44:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T08:44:44Z,69.698,-163.856,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-08T08:44:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-08T09:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T09:20:10Z,69.692,-163.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-08T09:20:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-09-08T10:15:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T10:15:04Z,69.691,-163.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-08T10:15:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-09T01:22:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T01:22:57Z,69.688,-164.088,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-09T01:22:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-09T03:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T03:53:55Z,69.69,-164.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-09T03:53:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-09T04:54:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T04:54:40Z,69.686,-164.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-09T04:54:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-09T07:16:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T07:16:53Z,69.691,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-09T07:16:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-09-09T08:53:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T08:53:14Z,69.694,-164.073,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-09T08:53:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-09-10T02:54:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T02:54:12Z,69.632,-164.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T02:54:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-10T03:41:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T03:41:02Z,69.635,-164.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T03:41:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-10T05:22:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T05:22:51Z,69.633,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T05:22:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-10T07:05:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T07:05:49Z,69.637,-164.14,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T07:05:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-10T08:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T08:34:21Z,69.63,-164.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T08:34:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-10T11:14:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T11:14:32Z,69.61,-164.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-10T11:14:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-11T00:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T00:34:50Z,69.607,-164.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T00:34:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-11T01:19:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T01:19:22Z,69.603,-164.151,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T01:19:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-09-11T03:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T03:15:32Z,69.596,-164.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T03:15:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-11T04:50:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T04:50:43Z,69.597,-164.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T04:50:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-11T05:53:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T05:53:29Z,69.594,-164.211,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T05:53:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-11T13:06:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T13:06:36Z,69.602,-164.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T13:06:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-11T16:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T16:01:07Z,69.608,-164.16,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T16:01:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-11T17:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T17:15:32Z,69.605,-164.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-11T17:15:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-12T07:52:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T07:52:25Z,69.749,-163.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-12T07:52:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-09-12T08:30:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T08:30:40Z,69.752,-163.736,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-12T08:30:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-09-13T06:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T06:34:50Z,70.054,-163.138,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-13T06:34:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-09-13T07:30:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T07:30:20Z,70.041,-163.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-13T07:30:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-09-13T08:13:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T08:13:05Z,70.038,-163.18,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-13T08:13:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-13T19:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T19:02:46Z,70.169,-162.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-13T19:02:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-09-14T20:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T20:33:23Z,70.423,-161.314,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-14T20:33:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-14T22:13:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T22:13:11Z,70.43,-161.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-14T22:13:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-14T23:52:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T23:52:41Z,70.438,-161.263,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-14T23:52:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-15T06:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T06:48:01Z,70.454,-161.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-15T06:48:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-15T07:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T07:42:11Z,70.456,-160.972,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-15T07:42:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-09-17T02:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T02:20:01Z,70.965,-158.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-17T02:20:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-17T23:07:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T23:07:30Z,71.244,-157.374,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-17T23:07:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-18T00:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T00:27:05Z,71.228,-157.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-18T00:27:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-18T15:37:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T15:37:55Z,71.43,-156.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-18T15:37:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-19T01:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T01:03:35Z,71.46,-156.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-19T01:03:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-19T03:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T03:07:01Z,71.478,-156.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-19T03:07:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-20T05:39:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T05:39:40Z,71.198,-154.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T05:39:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-09-20T09:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T09:51:31Z,71.122,-154.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T09:51:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-20T11:31:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T11:31:18Z,71.055,-154.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T11:31:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-09-20T12:45:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T12:45:28Z,71.05,-154.613,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T12:45:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-09-20T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T13:02:32Z,71.066,-154.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T13:02:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-20T14:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T14:25:16Z,71.094,-154.575,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-20T14:25:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-21T00:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T00:42:11Z,71.356,-156.058,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T00:42:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-21T01:28:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T01:28:02Z,71.355,-156.197,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T01:28:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-21T04:50:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T04:50:51Z,71.414,-156.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T04:50:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-21T06:23:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T06:23:45Z,71.406,-156.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T06:23:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-21T09:39:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T09:39:45Z,71.383,-156.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T09:39:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-21T10:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T10:55:34Z,71.358,-157.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T10:55:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-21T12:58:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T12:58:33Z,71.25,-157.451,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T12:58:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-21T17:34:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T17:34:06Z,71.162,-157.974,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-21T17:34:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-09-22T02:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T02:48:06Z,71.154,-158.309,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T02:48:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-22T04:49:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T04:49:54Z,71.154,-158.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T04:49:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-22T06:09:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T06:09:56Z,71.148,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T06:09:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-22T08:05:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T08:05:34Z,71.15,-158.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T08:05:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-22T12:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T12:25:31Z,71.156,-158.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T12:25:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-22T14:07:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T14:07:32Z,71.165,-158.281,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T14:07:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-22T15:37:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T15:37:45Z,71.165,-158.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T15:37:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-22T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T16:45:07Z,71.155,-158.327,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T16:45:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-22T17:18:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T17:18:10Z,71.151,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-22T17:18:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-23T00:06:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T00:06:34Z,71.157,-158.329,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-23T00:06:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-23T04:08:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T04:08:23Z,71.17,-158.325,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-23T04:08:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-23T12:10:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T12:10:45Z,71.1,-158.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-23T12:10:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-24T05:46:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-24T05:46:01Z,71.152,-158.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-24T05:46:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-25T22:21:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-25T22:21:18Z,70.489,-162.084,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-25T22:21:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-26T01:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T01:23:07Z,70.501,-162.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-26T01:23:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-26T04:47:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T04:47:46Z,70.493,-162.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-26T04:47:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-26T07:14:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T07:14:38Z,70.501,-162.583,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-26T07:14:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-26T08:01:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T08:01:56Z,70.503,-162.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-26T08:01:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-27T01:35:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T01:35:00Z,70.299,-163.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T01:35:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-27T02:44:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T02:44:50Z,70.302,-163.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T02:44:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-27T04:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T04:27:15Z,70.287,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T04:27:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-27T05:24:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T05:24:12Z,70.284,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T05:24:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-27T07:07:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T07:07:34Z,70.278,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T07:07:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-09-27T09:22:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T09:22:45Z,70.265,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T09:22:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-27T15:18:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T15:18:43Z,70.241,-164.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-27T15:18:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-28T00:09:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T00:09:33Z,70.205,-164.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T00:09:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-28T02:24:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T02:24:10Z,70.205,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T02:24:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-28T03:30:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T03:30:30Z,70.193,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T03:30:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-28T04:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T04:11:43Z,70.19,-164.093,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T04:11:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-28T05:12:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T05:12:11Z,70.189,-164.112,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T05:12:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-09-28T06:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T06:51:08Z,70.178,-164.142,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T06:51:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-09-28T07:20:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T07:20:30Z,70.175,-164.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T07:20:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-09-28T08:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T08:23:25Z,70.171,-164.156,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T08:23:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-28T09:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T09:02:07Z,70.168,-164.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-28T09:02:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-09-29T02:08:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T02:08:12Z,70.133,-164.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-29T02:08:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-29T03:48:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T03:48:43Z,70.122,-164.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-29T03:48:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-09-29T06:44:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T06:44:34Z,70.127,-164.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-29T06:44:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-09-29T07:08:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T07:08:36Z,70.125,-164.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-29T07:08:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-29T08:29:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T08:29:36Z,70.125,-164.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-29T08:29:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-30T00:17:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T00:17:46Z,70.093,-164.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T00:17:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-09-30T01:24:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T01:24:34Z,70.098,-164.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T01:24:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-09-30T03:05:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T03:05:42Z,70.081,-164.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T03:05:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-09-30T04:45:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T04:45:38Z,70.065,-164.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T04:45:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-30T05:03:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T05:03:44Z,70.071,-164.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T05:03:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-09-30T08:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T08:10:17Z,70.068,-164.452,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T08:10:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-09-30T09:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T09:47:02Z,70.068,-164.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-09-30T09:47:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-01T01:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T01:24:18Z,70.099,-164.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T01:24:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-01T03:16:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T03:16:13Z,70.108,-164.249,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T03:16:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-01T07:58:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T07:58:23Z,70.103,-164.245,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T07:58:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-01T08:10:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T08:10:13Z,70.109,-164.226,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T08:10:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-01T09:34:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T09:34:35Z,70.116,-164.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T09:34:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-01T15:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T15:20:01Z,70.1,-164.269,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-01T15:20:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-02T00:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T00:08:45Z,70.085,-164.296,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-02T00:08:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-02T01:03:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T01:03:21Z,70.09,-164.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-02T01:03:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-02T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T02:41:57Z,70.093,-164.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-02T02:41:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-10-02T04:20:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T04:20:36Z,70.102,-164.29,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-02T04:20:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-02T07:47:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T07:47:49Z,70.078,-164.272,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-02T07:47:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-03T00:31:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T00:31:26Z,70.214,-164.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-03T00:31:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-03T03:56:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T03:56:15Z,70.243,-164.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-03T03:56:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-03T05:35:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T05:35:57Z,70.246,-164.047,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-03T05:35:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-03T07:18:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T07:18:20Z,70.257,-164.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-03T07:18:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-10-03T16:11:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T16:11:31Z,70.152,-164.241,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-03T16:11:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-04T00:21:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T00:21:07Z,70.106,-164.271,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T00:21:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-04T03:46:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T03:46:32Z,70.058,-164.335,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T03:46:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-04T05:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T05:08:47Z,70.049,-164.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T05:08:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-10-04T06:52:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T06:52:55Z,70.022,-164.411,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T06:52:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-04T07:22:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T07:22:40Z,70.025,-164.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T07:22:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-04T08:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T08:37:00Z,70.025,-164.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-04T08:37:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-05T02:05:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T02:05:06Z,69.916,-164.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-05T02:05:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-05T05:23:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T05:23:51Z,69.875,-164.822,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-05T05:23:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-05T06:29:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T06:29:21Z,69.874,-164.838,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-05T06:29:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-05T07:10:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T07:10:39Z,69.871,-164.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-05T07:10:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-05T08:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T08:12:01Z,69.864,-164.879,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-05T08:12:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-10-06T00:12:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T00:12:18Z,70.011,-164.503,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T00:12:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-06T03:34:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T03:34:18Z,70.005,-164.472,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T03:34:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-06T04:24:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T04:24:44Z,70.015,-164.462,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T04:24:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-10-06T05:14:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T05:14:37Z,70.025,-164.46,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T05:14:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-06T06:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T06:06:22Z,70.035,-164.47,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T06:06:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-10-06T07:47:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T07:47:10Z,70.04,-164.506,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T07:47:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-10-06T08:40:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T08:40:02Z,70.042,-164.547,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-06T08:40:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-07T05:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-07T05:45:00Z,69.87,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-07T05:45:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-08T04:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T04:51:51Z,70.231,-162.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-08T04:51:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-08T05:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T05:14:55Z,70.228,-162.31,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-08T05:14:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-10-08T06:31:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T06:31:25Z,70.245,-162.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-08T06:31:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-08T19:32:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T19:32:32Z,70.484,-162.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-08T19:32:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-08T20:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T20:42:54Z,70.461,-162.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-08T20:42:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-09T00:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T00:33:11Z,70.499,-162.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T00:33:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-09T02:57:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T02:57:24Z,70.503,-162.627,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T02:57:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-09T03:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T03:12:01Z,70.512,-162.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T03:12:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-09T04:54:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T04:54:13Z,70.513,-162.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T04:54:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-09T06:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T06:23:07Z,70.516,-162.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T06:23:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-10-09T17:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T17:01:07Z,70.451,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T17:01:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-09T20:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T20:17:48Z,70.433,-163.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-09T20:17:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-10-10T00:31:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T00:31:49Z,70.374,-164.024,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T00:31:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-10T01:35:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T01:35:53Z,70.354,-164.042,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T01:35:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-10-10T02:45:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T02:45:29Z,70.345,-164.066,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T02:45:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-10T04:24:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T04:24:13Z,70.322,-164.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T04:24:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-10-10T06:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T06:07:55Z,70.285,-164.118,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T06:07:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-10-10T07:51:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T07:51:45Z,70.289,-164.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T07:51:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-10-10T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T13:02:32Z,70.22,-164.256,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-10T13:02:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-11T01:54:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T01:54:17Z,70.067,-164.33,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-11T01:54:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-11T02:30:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T02:30:02Z,70.066,-164.356,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-11T02:30:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-11T04:12:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T04:12:50Z,70.052,-164.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-11T04:12:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-10-11T05:47:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T05:47:36Z,70.031,-164.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-11T05:47:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-10-11T06:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T06:10:17Z,70.02,-164.41,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-11T06:10:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-12T00:31:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T00:31:30Z,70.074,-164.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-12T00:31:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-12T03:44:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T03:44:13Z,70.051,-164.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-12T03:44:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-12T05:21:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T05:21:13Z,70.041,-164.377,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-12T05:21:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-10-12T07:02:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T07:02:37Z,70.048,-164.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-12T07:02:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-13T00:29:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T00:29:13Z,69.979,-164.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T00:29:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-13T01:46:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T01:46:11Z,69.968,-164.814,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T01:46:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-10-13T03:53:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T03:53:43Z,69.942,-164.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T03:53:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-13T05:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T05:33:21Z,69.93,-164.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T05:33:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-13T12:28:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T12:28:12Z,69.869,-165.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T12:28:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-13T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T15:51:15Z,69.895,-165.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T15:51:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-13T17:41:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T17:41:36Z,69.903,-165.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T17:41:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-13T18:37:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T18:37:53Z,69.912,-165.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-13T18:37:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-14T00:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T00:15:05Z,69.995,-165.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T00:15:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-14T01:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T01:51:13Z,70.005,-165.735,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T01:51:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-14T03:36:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T03:36:45Z,70.009,-165.849,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T03:36:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-14T05:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T05:08:51Z,70.012,-165.922,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T05:08:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-14T06:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T06:48:13Z,70.025,-165.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T06:48:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-14T07:04:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T07:04:21Z,70.028,-165.887,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T07:04:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-14T08:00:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T08:00:16Z,70.035,-165.863,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-14T08:00:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-10-15T00:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T00:07:48Z,69.941,-166.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T00:07:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-15T04:10:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T04:10:52Z,69.867,-165.936,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T04:10:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-10-15T05:07:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T05:07:23Z,69.847,-165.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T05:07:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-10-15T13:50:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T13:50:42Z,69.651,-165.808,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T13:50:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-15T14:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T14:59:21Z,69.622,-165.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T14:59:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-15T16:15:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T16:15:03Z,69.601,-165.888,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T16:15:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-15T20:36:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T20:36:05Z,69.487,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-15T20:36:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-16T02:07:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T02:07:56Z,69.351,-165.798,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-16T02:07:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-16T04:57:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T04:57:44Z,69.328,-165.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-16T04:57:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-16T11:27:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T11:27:46Z,69.279,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-16T11:27:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-16T12:04:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T12:04:10Z,69.272,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-16T12:04:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-17T01:47:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T01:47:12Z,68.941,-165.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T01:47:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-17T03:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T03:04:22Z,68.898,-165.539,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T03:04:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-17T04:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T04:12:46Z,68.866,-165.455,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T04:12:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-17T05:46:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T05:46:28Z,68.863,-165.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T05:46:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-17T06:46:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T06:46:05Z,68.871,-165.252,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T06:46:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-10-17T07:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T07:27:15Z,68.884,-165.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T07:27:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-17T08:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T08:09:30Z,68.885,-165.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T08:09:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-17T09:08:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T09:08:13Z,68.893,-165.231,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-17T09:08:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-18T21:06:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T21:06:28Z,68.395,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-18T21:06:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-18T23:21:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T23:21:47Z,68.392,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-18T23:21:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-19T00:09:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T00:09:54Z,68.385,-167.24,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T00:09:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-19T01:03:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T01:03:52Z,68.377,-167.28,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T01:03:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-19T03:30:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T03:30:48Z,68.342,-167.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T03:30:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-19T05:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T05:04:51Z,68.318,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T05:04:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-19T06:45:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T06:45:16Z,68.309,-167.398,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T06:45:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-19T07:40:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T07:40:46Z,68.318,-167.434,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T07:40:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-10-19T08:27:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T08:27:16Z,68.339,-167.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T08:27:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-19T10:08:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T10:08:31Z,68.37,-167.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-19T10:08:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-20T01:26:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T01:26:36Z,68.15,-167.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T01:26:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-20T04:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T04:50:52Z,68.076,-167.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T04:50:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-20T05:33:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T05:33:55Z,68.064,-167.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T05:33:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-20T11:17:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T11:17:40Z,67.946,-167.876,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T11:17:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-20T14:04:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T14:04:09Z,67.909,-167.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T14:04:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-20T17:55:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T17:55:10Z,67.855,-167.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-20T17:55:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-21T03:58:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T03:58:17Z,67.717,-167.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-21T03:58:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-21T04:29:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T04:29:40Z,67.728,-167.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-21T04:29:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-21T05:13:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T05:13:37Z,67.724,-167.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-21T05:13:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-10-21T06:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T06:51:07Z,67.732,-167.295,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-21T06:51:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-10-21T07:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T07:44:22Z,67.745,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-21T07:44:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-22T01:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T01:33:11Z,67.601,-166.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-22T01:33:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-22T04:07:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T04:07:00Z,67.551,-166.32,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-22T04:07:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-22T13:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T13:41:00Z,67.3,-165.916,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-22T13:41:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-22T20:56:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T20:56:49Z,67.154,-165.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-22T20:56:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-23T00:17:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T00:17:27Z,67.12,-165.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-23T00:17:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-23T01:27:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T01:27:33Z,67.106,-165.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-23T01:27:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-23T02:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T02:46:02Z,67.096,-165.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-23T02:46:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-23T05:13:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T05:13:14Z,67.072,-165.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-23T05:13:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-23T06:03:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T06:03:39Z,67.082,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-23T06:03:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-24T00:14:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T00:14:18Z,67.135,-166.069,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T00:14:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-24T01:40:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T01:40:00Z,67.149,-166.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T01:40:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-24T03:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T03:59:21Z,67.179,-166.179,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T03:59:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-24T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T04:03:01Z,67.183,-166.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T04:03:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-24T05:02:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T05:02:59Z,67.195,-166.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T05:02:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-24T12:16:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T12:16:22Z,67.244,-166.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T12:16:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-24T13:58:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T13:58:42Z,67.252,-166.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T13:58:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-24T15:58:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T15:58:38Z,67.239,-166.601,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T15:58:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-24T17:41:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T17:41:20Z,67.243,-166.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-24T17:41:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-25T01:59:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T01:59:27Z,67.167,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-25T01:59:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-25T02:04:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T02:04:07Z,67.161,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-25T02:04:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-25T18:53:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T18:53:48Z,67.255,-167.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-25T18:53:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-25T20:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T20:20:10Z,67.281,-167.424,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-25T20:20:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-25T22:00:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T22:00:30Z,67.316,-167.414,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-25T22:00:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-26T03:16:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T03:16:10Z,67.423,-167.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-26T03:16:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-26T06:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T06:38:11Z,67.456,-167.288,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-26T06:38:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-26T15:15:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T15:15:42Z,67.689,-166.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-26T15:15:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-26T16:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T16:21:25Z,67.702,-167.015,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-26T16:21:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-10-27T00:43:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T00:43:29Z,67.855,-167.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T00:43:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-27T01:08:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T01:08:00Z,67.877,-167.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T01:08:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T02:24:24Z,67.911,-167.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T02:24:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-27T04:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T04:22:30Z,67.893,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T04:22:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-27T06:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T06:07:52Z,67.903,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T06:07:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-27T11:42:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T11:42:26Z,67.942,-167.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T11:42:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-27T12:47:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T12:47:55Z,67.958,-167.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-27T12:47:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-28T00:32:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T00:32:30Z,67.955,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-28T00:32:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2011-10-28T01:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T01:10:36Z,67.958,-167.426,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-28T01:10:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-28T02:15:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T02:15:46Z,67.979,-167.466,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-28T02:15:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2011-10-28T07:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T07:36:02Z,67.951,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-28T07:36:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-28T13:13:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T13:13:21Z,67.974,-167.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-28T13:13:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-10-29T00:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T00:18:22Z,68.211,-167.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T00:18:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-10-29T03:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T03:45:00Z,68.267,-167.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T03:45:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-29T04:03:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T04:03:31Z,68.278,-167.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T04:03:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-29T14:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T14:04:36Z,68.562,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T14:04:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-29T15:41:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T15:41:17Z,68.553,-167.233,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T15:41:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-29T16:26:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T16:26:40Z,68.554,-167.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T16:26:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-29T17:30:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T17:30:38Z,68.544,-167.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T17:30:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-29T18:56:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T18:56:52Z,68.552,-167.216,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T18:56:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-10-29T19:08:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T19:08:41Z,68.545,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-29T19:08:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-30T00:10:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T00:10:15Z,68.564,-167.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T00:10:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2011-10-30T01:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T01:54:43Z,68.558,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T01:54:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2011-10-30T02:10:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T02:10:32Z,68.557,-167.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T02:10:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-30T03:03:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T03:03:04Z,68.553,-167.205,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T03:03:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2011-10-30T04:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T04:37:00Z,68.556,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T04:37:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-10-30T05:28:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T05:28:22Z,68.547,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T05:28:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-30T06:23:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T06:23:03Z,68.55,-167.157,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T06:23:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-30T07:58:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T07:58:32Z,68.552,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T07:58:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-30T09:44:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T09:44:16Z,68.552,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-30T09:44:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-10-31T00:39:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T00:39:24Z,68.555,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T00:39:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-31T01:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T01:41:26Z,68.561,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T01:41:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-31T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T02:41:57Z,68.564,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T02:41:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-10-31T03:36:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T03:36:34Z,68.567,-167.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T03:36:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-31T04:34:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T04:34:07Z,68.557,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T04:34:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-10-31T05:17:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T05:17:26Z,68.558,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T05:17:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-31T06:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T06:18:36Z,68.543,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T06:18:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-31T07:38:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T07:38:19Z,68.537,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T07:38:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-10-31T08:00:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T08:00:31Z,68.531,-167.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T08:00:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-10-31T09:18:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T09:18:59Z,68.531,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-10-31T09:18:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-01T00:49:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T00:49:31Z,68.563,-167.166,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T00:49:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-11-01T01:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T01:30:26Z,68.548,-167.192,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T01:30:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-01T02:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T02:07:01Z,68.544,-167.15,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T02:07:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-01T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T04:03:01Z,68.541,-167.124,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T04:03:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-01T05:07:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T05:07:25Z,68.535,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T05:07:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. -ioos_atn_2011-11-01T06:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T06:44:12Z,68.519,-167.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T06:44:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-01T07:15:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T07:15:10Z,68.523,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T07:15:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-01T08:56:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T08:56:10Z,68.512,-167.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-01T08:56:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-02T00:19:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T00:19:00Z,68.555,-167.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T00:19:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-11-02T01:21:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T01:21:14Z,68.559,-167.128,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T01:21:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-02T02:04:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T02:04:06Z,68.557,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T02:04:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-02T03:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T03:41:30Z,68.55,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T03:41:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-02T05:26:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T05:26:25Z,68.533,-167.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T05:26:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-02T06:33:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T06:33:41Z,68.534,-167.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T06:33:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-02T12:22:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T12:22:54Z,68.506,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T12:22:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-02T15:07:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T15:07:44Z,68.515,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-02T15:07:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-11-03T03:03:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T03:03:09Z,68.518,-166.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T03:03:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-03T05:00:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T05:00:07Z,68.505,-166.944,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T05:00:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-03T08:22:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T08:22:18Z,68.502,-166.966,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T08:22:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-03T12:11:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T12:11:58Z,68.495,-166.984,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T12:11:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-03T13:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T13:13:56Z,68.492,-166.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T13:13:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-03T14:57:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T14:57:05Z,68.502,-166.961,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T14:57:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-03T15:21:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T15:21:31Z,68.505,-166.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-03T15:21:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-04T01:20:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T01:20:28Z,68.5,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T01:20:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-04T02:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T02:49:16Z,68.506,-167.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T02:49:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-04T03:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T03:03:00Z,68.507,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T03:03:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-04T04:42:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T04:42:32Z,68.512,-166.995,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T04:42:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2011-11-04T07:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T07:53:27Z,68.489,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T07:53:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-04T13:08:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T13:08:43Z,68.508,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-04T13:08:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-05T00:47:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T00:47:53Z,68.532,-167.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T00:47:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2011-11-05T02:31:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T02:31:45Z,68.527,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T02:31:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-05T04:21:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T04:21:16Z,68.522,-167.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T04:21:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-11-05T06:00:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T06:00:43Z,68.525,-167.079,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T06:00:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-05T07:38:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T07:38:23Z,68.545,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T07:38:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-05T13:31:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T13:31:47Z,68.543,-167.104,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-05T13:31:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-06T00:26:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T00:26:03Z,68.531,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-06T00:26:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-06T01:18:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T01:18:01Z,68.528,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-06T01:18:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-06T02:17:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T02:17:38Z,68.529,-167.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-06T02:17:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-11-06T03:54:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T03:54:20Z,68.527,-167.007,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-06T03:54:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-11-06T05:34:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T05:34:44Z,68.54,-166.992,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-06T05:34:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2011-11-07T00:21:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T00:21:54Z,68.542,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T00:21:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-07T01:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T01:11:39Z,68.54,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T01:11:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-11-07T02:03:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T02:03:24Z,68.538,-167.11,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T02:03:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-07T03:31:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T03:31:15Z,68.537,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T03:31:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-07T05:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T05:06:09Z,68.54,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T05:06:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-11-07T06:52:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T06:52:10Z,68.522,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T06:52:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-11-07T07:16:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T07:16:55Z,68.536,-167.129,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T07:16:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-11-07T14:13:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T14:13:12Z,68.534,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-07T14:13:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-08T00:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T00:08:55Z,68.637,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-08T00:08:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-08T11:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T11:18:22Z,68.545,-167.23,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-08T11:18:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-08T13:58:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T13:58:34Z,68.538,-167.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-08T13:58:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-08T15:40:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T15:40:34Z,68.545,-167.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-08T15:40:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-08T16:20:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T16:20:51Z,68.542,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-08T16:20:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-11-09T00:55:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T00:55:21Z,68.524,-167.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-09T00:55:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-09T02:45:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T02:45:22Z,68.516,-167.011,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-09T02:45:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-09T04:16:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T04:16:37Z,68.511,-167.021,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-09T04:16:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-09T12:49:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T12:49:01Z,68.53,-167.051,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-09T12:49:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-11-10T02:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T02:12:01Z,68.526,-166.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T02:12:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-10T03:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T03:50:53Z,68.527,-166.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T03:50:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-11-10T04:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T04:14:13Z,68.532,-166.84,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T04:14:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-10T06:36:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T06:36:46Z,68.562,-166.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T06:36:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-10T12:38:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T12:38:15Z,68.584,-166.796,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T12:38:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-10T13:38:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T13:38:05Z,68.594,-166.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-10T13:38:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-11T00:04:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T00:04:33Z,68.513,-167.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T00:04:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-11-11T01:22:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T01:22:13Z,68.512,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T01:22:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-11T03:04:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T03:04:40Z,68.517,-167.127,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T03:04:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 5 records. -ioos_atn_2011-11-11T04:47:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T04:47:26Z,68.507,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T04:47:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-11T05:15:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T05:15:35Z,68.508,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T05:15:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-11T06:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T06:24:38Z,68.509,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T06:24:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-11T10:46:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T10:46:03Z,68.494,-167.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T10:46:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-11T12:28:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T12:28:51Z,68.497,-167.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T12:28:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-11T13:48:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T13:48:03Z,68.496,-167.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-11T13:48:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-11-12T00:14:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T00:14:16Z,68.513,-167.035,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T00:14:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-12T01:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T01:51:15Z,68.51,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T01:51:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2011-11-12T02:53:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T02:53:05Z,68.502,-167.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T02:53:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-12T03:00:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T03:00:15Z,68.506,-167.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T03:00:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-12T04:37:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T04:37:04Z,68.493,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T04:37:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-12T05:14:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T05:14:29Z,68.495,-167.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T05:14:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-12T06:39:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T06:39:34Z,68.482,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T06:39:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-12T12:15:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T12:15:49Z,68.492,-166.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T12:15:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-12T13:19:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T13:19:17Z,68.496,-167.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-12T13:19:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-13T00:56:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T00:56:40Z,68.446,-167.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-13T00:56:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-11-13T02:41:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T02:41:45Z,68.465,-167.107,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-13T02:41:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-13T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T04:31:07Z,68.485,-167.125,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-13T04:31:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-13T06:16:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T06:16:01Z,68.486,-167.114,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-13T06:16:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-13T13:05:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T13:05:22Z,68.499,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-13T13:05:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-14T00:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T00:34:21Z,68.505,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T00:34:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. -ioos_atn_2011-11-14T01:13:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T01:13:40Z,68.546,-167.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T01:13:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-14T02:53:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T02:53:11Z,68.493,-167.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T02:53:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. -ioos_atn_2011-11-14T03:54:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T03:54:41Z,68.48,-167.147,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T03:54:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-11-14T04:07:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T04:07:41Z,68.482,-167.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T04:07:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-11-14T05:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T05:50:11Z,68.473,-167.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-14T05:50:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-11-15T00:49:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T00:49:43Z,68.424,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T00:49:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. -ioos_atn_2011-11-15T01:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T01:50:53Z,68.423,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T01:50:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-15T02:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T02:04:51Z,68.425,-167.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T02:04:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. -ioos_atn_2011-11-15T03:28:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T03:28:37Z,68.432,-166.999,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T03:28:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-15T04:00:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T04:00:52Z,68.432,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T04:00:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-11-15T05:22:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T05:22:37Z,68.424,-166.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-15T05:22:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-16T00:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T00:28:23Z,68.299,-167.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T00:28:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2011-11-16T01:41:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T01:41:08Z,68.286,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T01:41:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-11-16T02:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T02:08:08Z,68.278,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T02:08:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-11-16T03:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T03:05:08Z,68.264,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T03:05:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. -ioos_atn_2011-11-16T04:46:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T04:46:23Z,68.245,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T04:46:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-16T05:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T05:28:23Z,68.236,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-16T05:28:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-17T00:17:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T00:17:08Z,68.224,-166.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T00:17:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-11-17T01:02:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T01:02:08Z,68.228,-166.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T01:02:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. -ioos_atn_2011-11-17T02:00:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T02:00:38Z,68.233,-166.718,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T02:00:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-11-17T03:36:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T03:36:38Z,68.243,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T03:36:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-11-17T04:23:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T04:23:08Z,68.248,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T04:23:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-17T05:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T05:14:53Z,68.258,-166.738,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-17T05:14:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-11-18T01:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T01:28:50Z,68.306,-166.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-18T01:28:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-18T07:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T07:36:04Z,68.384,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-18T07:36:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-18T08:05:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T08:05:29Z,68.391,-166.985,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-18T08:05:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-18T13:53:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T13:53:49Z,68.496,-167.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-18T13:53:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-19T00:10:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T00:10:25Z,68.53,-167.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T00:10:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-11-19T01:33:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T01:33:40Z,68.534,-167.099,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T01:33:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-11-19T02:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T02:49:55Z,68.539,-167.109,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T02:49:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-11-19T03:50:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T03:50:10Z,68.535,-167.116,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T03:50:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-11-19T04:29:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T04:29:10Z,68.536,-167.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T04:29:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-11-19T05:27:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T05:27:40Z,68.539,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T05:27:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-19T06:09:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T06:09:40Z,68.539,-167.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-19T06:09:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-11-20T00:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T00:24:38Z,68.479,-167.137,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T00:24:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-20T01:30:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T01:30:31Z,68.474,-167.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T01:30:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2011-11-20T02:29:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T02:29:01Z,68.468,-167.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T02:29:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-20T03:09:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T03:09:04Z,68.457,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T03:09:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. -ioos_atn_2011-11-20T04:09:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T04:09:31Z,68.449,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T04:09:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-11-20T05:06:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T05:06:31Z,68.441,-167.208,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T05:06:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-11-20T06:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T06:23:01Z,68.429,-167.228,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-20T06:23:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-11-21T00:18:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T00:18:08Z,68.16,-167.554,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T00:18:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-11-21T01:05:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T01:05:19Z,68.139,-167.544,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T01:05:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-11-21T02:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T02:49:15Z,68.069,-167.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T02:49:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-11-21T03:02:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T03:02:50Z,68.074,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T03:02:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-21T04:24:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T04:24:37Z,68.052,-167.492,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T04:24:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-11-21T05:27:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T05:27:37Z,68.041,-167.473,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T05:27:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-11-21T06:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T06:11:43Z,68.032,-167.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-21T06:11:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-11-22T01:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T01:03:51Z,67.684,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-22T01:03:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-11-22T10:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T10:30:26Z,67.427,-167.284,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-22T10:30:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-22T12:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T12:14:14Z,67.366,-167.285,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-22T12:14:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-22T13:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T13:07:52Z,67.339,-167.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-22T13:07:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-11-23T01:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T01:53:55Z,67.016,-167.791,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-23T01:53:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-11-23T07:14:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T07:14:50Z,66.906,-168.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-23T07:14:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-23T08:02:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T08:02:51Z,66.896,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-23T08:02:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-23T17:49:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T17:49:44Z,66.766,-168.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-23T17:49:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-24T00:39:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T00:39:05Z,66.653,-168.85,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T00:39:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-24T03:14:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T03:14:05Z,66.6,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T03:14:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-11-24T05:09:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T05:09:53Z,66.566,-168.81,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T05:09:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-24T14:29:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T14:29:57Z,66.385,-168.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T14:29:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-24T15:15:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T15:15:58Z,66.374,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T15:15:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-24T16:09:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T16:09:35Z,66.366,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-24T16:09:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-25T05:18:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T05:18:45Z,66.018,-168.025,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-25T05:18:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-25T14:46:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T14:46:54Z,65.697,-168.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-25T14:46:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-25T20:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T20:07:55Z,65.456,-168.587,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-25T20:07:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-26T00:18:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T00:18:17Z,65.406,-168.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T00:18:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-26T01:46:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T01:46:57Z,65.381,-168.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T01:46:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-26T02:42:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T02:42:07Z,65.358,-168.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T02:42:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-26T07:00:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T07:00:48Z,65.295,-168.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T07:00:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-11-26T08:38:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T08:38:37Z,65.263,-168.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T08:38:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-26T14:10:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T14:10:09Z,65.179,-168.572,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-26T14:10:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-11-27T00:17:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T00:17:18Z,65.063,-168.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T00:17:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-27T03:18:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T03:18:46Z,65.025,-168.737,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T03:18:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2011-11-27T04:58:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T04:58:58Z,65.006,-168.73,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T04:58:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-11-27T06:35:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T06:35:04Z,64.98,-168.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T06:35:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-27T07:25:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T07:25:15Z,64.965,-168.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T07:25:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-27T11:23:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T11:23:35Z,64.918,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-27T11:23:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-28T00:47:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T00:47:32Z,64.739,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-28T00:47:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-28T01:36:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T01:36:15Z,64.732,-168.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-28T01:36:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-28T03:09:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T03:09:49Z,64.695,-168.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-28T03:09:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-11-28T06:59:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T06:59:22Z,64.626,-168.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-28T06:59:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-28T18:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T18:33:22Z,64.443,-168.394,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-28T18:33:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-11-29T00:36:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T00:36:13Z,64.302,-168.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T00:36:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-29T04:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T04:51:13Z,64.227,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T04:51:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-29T06:39:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T06:39:41Z,64.196,-168.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T06:39:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-29T07:58:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T07:58:16Z,64.17,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T07:58:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-11-29T13:34:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T13:34:05Z,64.073,-168.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T13:34:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-29T15:14:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T15:14:35Z,64.044,-168.463,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T15:14:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-29T16:02:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T16:02:17Z,64.035,-168.495,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T16:02:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-29T18:21:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T18:21:52Z,64.005,-168.469,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-29T18:21:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-30T02:21:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T02:21:35Z,63.893,-168.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-30T02:21:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-11-30T12:30:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T12:30:14Z,63.714,-168.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-30T12:30:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-11-30T15:03:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T15:03:02Z,63.643,-168.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-30T15:03:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-11-30T18:18:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T18:18:19Z,63.552,-168.513,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-30T18:18:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-11-30T19:49:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T19:49:53Z,63.519,-168.487,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-11-30T19:49:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-12-01T00:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T00:52:15Z,63.38,-168.373,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T00:52:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-01T05:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T05:51:46Z,63.179,-168.261,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T05:51:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-01T08:42:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T08:42:24Z,63.044,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T08:42:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-01T13:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T13:12:37Z,62.941,-168.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T13:12:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-01T15:52:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T15:52:12Z,62.919,-168.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T15:52:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-12-01T23:57:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T23:57:47Z,62.886,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-01T23:57:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-02T02:41:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T02:41:10Z,62.855,-168.823,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-02T02:41:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-02T12:10:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T12:10:31Z,62.793,-169.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-02T12:10:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-02T13:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T13:03:01Z,62.792,-169.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-02T13:03:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-12-04T02:11:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T02:11:24Z,62.72,-170.217,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T02:11:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-12-04T03:33:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T03:33:19Z,62.722,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T03:33:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-04T04:11:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T04:11:49Z,62.718,-170.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T04:11:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-04T05:15:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T05:15:15Z,62.704,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T05:15:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-04T07:32:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T07:32:57Z,62.685,-170.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T07:32:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-04T11:49:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T11:49:08Z,62.684,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-04T11:49:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-05T04:10:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T04:10:22Z,62.475,-170.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T04:10:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-05T05:56:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T05:56:27Z,62.449,-169.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T05:56:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-05T07:14:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T07:14:31Z,62.452,-169.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T07:14:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-05T12:27:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T12:27:54Z,62.461,-169.869,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T12:27:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-05T13:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T13:17:30Z,62.462,-169.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T13:17:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-05T17:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T17:27:05Z,62.471,-169.864,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T17:27:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-05T18:49:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T18:49:00Z,62.477,-169.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-05T18:49:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-06T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T00:07:45Z,62.519,-169.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-06T00:07:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-06T01:01:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T01:01:45Z,62.513,-169.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-06T01:01:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-12-06T03:16:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T03:16:45Z,62.499,-169.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-06T03:16:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-12-06T05:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T05:17:30Z,62.479,-169.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-06T05:17:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-07T00:45:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T00:45:17Z,62.354,-170.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-07T00:45:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-07T01:18:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T01:18:04Z,62.351,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-07T01:18:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-07T03:23:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T03:23:10Z,62.349,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-07T03:23:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-07T05:02:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T05:02:23Z,62.372,-170.365,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-07T05:02:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-08T00:53:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T00:53:34Z,62.565,-170.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T00:53:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-08T02:19:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T02:19:55Z,62.578,-170.512,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T02:19:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-08T04:17:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T04:17:23Z,62.605,-170.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T04:17:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-08T06:05:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T06:05:35Z,62.628,-170.493,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T06:05:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-08T09:33:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T09:33:01Z,62.668,-170.441,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T09:33:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-08T13:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T13:38:11Z,62.737,-170.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T13:38:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-08T14:26:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T14:26:58Z,62.75,-170.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T14:26:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-08T16:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T16:08:08Z,62.792,-170.382,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-08T16:08:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-09T00:58:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T00:58:03Z,62.87,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T00:58:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-12-09T01:15:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T01:15:18Z,62.872,-170.221,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T01:15:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-09T02:09:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T02:09:18Z,62.869,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T02:09:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. -ioos_atn_2011-12-09T03:07:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T03:07:47Z,62.835,-170.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T03:07:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-09T06:03:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T06:03:34Z,62.869,-170.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T06:03:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-09T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T09:11:19Z,62.882,-170.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-09T09:11:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-10T00:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T00:23:25Z,62.835,-169.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T00:23:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-10T05:29:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T05:29:56Z,62.804,-169.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T05:29:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-12-10T07:25:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T07:25:51Z,62.799,-169.45,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T07:25:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-12-10T08:48:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T08:48:37Z,62.815,-169.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T08:48:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-10T14:57:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T14:57:43Z,62.838,-169.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T14:57:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-10T18:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T18:44:22Z,62.868,-169.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-10T18:44:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-11T03:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T03:48:13Z,62.882,-168.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T03:48:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-11T04:41:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T04:41:21Z,62.878,-168.76,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T04:41:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-11T05:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T05:09:51Z,62.879,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T05:09:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-12-11T06:49:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T06:49:21Z,62.894,-168.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T06:49:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-11T07:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T07:14:06Z,62.902,-168.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T07:14:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-11T08:29:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T08:29:51Z,62.926,-168.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-11T08:29:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-12-12T01:32:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T01:32:39Z,62.881,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-12T01:32:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-12T04:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T04:17:48Z,62.847,-168.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-12T04:17:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-12T13:44:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T13:44:07Z,62.782,-168.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-12T13:44:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-12T14:37:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T14:37:47Z,62.788,-168.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-12T14:37:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-12T16:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T16:19:26Z,62.788,-168.416,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-12T16:19:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-13T00:07:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T00:07:18Z,62.791,-168.267,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-13T00:07:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-13T06:06:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T06:06:00Z,62.77,-168.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-13T06:06:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-13T07:45:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T07:45:47Z,62.773,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-13T07:45:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-13T13:37:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T13:37:40Z,62.758,-168.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-13T13:37:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-13T15:52:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T15:52:11Z,62.753,-168.224,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-13T15:52:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-14T00:22:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T00:22:02Z,62.798,-168.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-14T00:22:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-12-14T01:37:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T01:37:23Z,62.795,-168.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-14T01:37:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-12-14T02:33:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T02:33:24Z,62.806,-168.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-14T02:33:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-12-14T03:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T03:14:14Z,62.804,-168.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-14T03:14:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-12-15T03:02:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T03:02:30Z,62.669,-168.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-15T03:02:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-15T04:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T04:44:22Z,62.654,-168.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-15T04:44:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-12-15T14:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T14:04:22Z,62.506,-168.846,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-15T14:04:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-15T15:46:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T15:46:04Z,62.471,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-15T15:46:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-15T16:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T16:46:02Z,62.468,-168.87,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-15T16:46:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-16T04:49:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T04:49:26Z,62.326,-169.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-16T04:49:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-16T11:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T11:22:07Z,62.316,-169.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-16T11:22:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-16T15:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T15:34:14Z,62.311,-169.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-16T15:34:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-16T16:17:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T16:17:29Z,62.314,-169.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-16T16:17:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-16T18:01:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T18:01:02Z,62.307,-169.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-16T18:01:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2011-12-17T00:46:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T00:46:09Z,62.254,-169.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T00:46:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-17T12:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T12:51:46Z,62.205,-170.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T12:51:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-17T14:33:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T14:33:25Z,62.245,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T14:33:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-17T18:42:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T18:42:06Z,62.309,-170.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T18:42:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-17T19:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T19:49:15Z,62.332,-170.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T19:49:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-12-17T21:31:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T21:31:14Z,62.351,-170.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-17T21:31:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-18T03:31:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T03:31:59Z,62.398,-170.479,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-18T03:31:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-18T04:03:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T04:03:55Z,62.395,-170.483,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-18T04:03:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-12-18T07:42:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T07:42:35Z,62.398,-170.496,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-18T07:42:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-12-18T16:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T16:50:28Z,62.437,-170.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-18T16:50:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-19T03:03:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T03:03:58Z,62.519,-170.797,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-19T03:03:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-19T05:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T05:18:36Z,62.522,-170.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-19T05:18:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2011-12-19T07:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T07:08:47Z,62.522,-170.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-19T07:08:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-20T04:56:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T04:56:42Z,62.438,-170.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-20T04:56:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-12-20T05:28:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T05:28:27Z,62.436,-170.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-20T05:28:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-20T06:45:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T06:45:42Z,62.428,-170.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-20T06:45:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-12-20T07:02:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T07:02:57Z,62.429,-170.803,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-20T07:02:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-12-20T08:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T08:44:12Z,62.435,-170.816,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-20T08:44:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-12-21T00:44:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T00:44:43Z,62.52,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T00:44:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-21T01:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T01:17:50Z,62.525,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T01:17:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2011-12-21T02:32:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T02:32:53Z,62.535,-170.766,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T02:32:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-12-21T03:31:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T03:31:23Z,62.537,-170.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T03:31:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2011-12-21T04:33:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T04:33:38Z,62.531,-170.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T04:33:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-12-21T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T05:10:23Z,62.529,-170.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T05:10:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2011-12-21T06:20:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T06:20:53Z,62.526,-170.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-21T06:20:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-22T00:36:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T00:36:01Z,62.482,-170.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-22T00:36:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-22T04:08:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T04:08:59Z,62.41,-170.78,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-22T04:08:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2011-12-22T05:49:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T05:49:11Z,62.405,-170.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-22T05:49:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-22T09:42:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T09:42:44Z,62.309,-170.807,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-22T09:42:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-22T14:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T14:25:59Z,62.274,-170.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-22T14:25:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2011-12-23T00:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T00:33:21Z,62.232,-171.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T00:33:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-23T01:30:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T01:30:22Z,62.198,-171.159,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T01:30:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-23T03:45:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T03:45:10Z,62.17,-171.209,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T03:45:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-23T07:15:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T07:15:13Z,62.11,-171.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T07:15:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-12-23T20:15:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T20:15:19Z,61.942,-171.594,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T20:15:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-23T21:25:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T21:25:39Z,61.912,-171.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-23T21:25:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-25T16:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T16:01:01Z,61.638,-171.144,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-25T16:01:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-25T21:49:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T21:49:25Z,61.515,-171.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-25T21:49:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-26T03:17:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T03:17:34Z,61.414,-171.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-26T03:17:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-26T04:13:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T04:13:26Z,61.386,-171.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-26T04:13:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-26T05:49:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T05:49:13Z,61.346,-171.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-26T05:49:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-26T23:44:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T23:44:51Z,61.145,-171.634,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-26T23:44:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-27T01:27:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T01:27:56Z,61.141,-171.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-27T01:27:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-27T14:29:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T14:29:22Z,60.937,-171.847,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-27T14:29:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-28T05:08:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T05:08:52Z,60.725,-171.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-28T05:08:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-28T12:39:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T12:39:46Z,60.671,-171.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-28T12:39:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-28T14:27:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T14:27:22Z,60.702,-171.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-28T14:27:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-28T15:05:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T15:05:41Z,60.719,-171.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-28T15:05:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-28T16:00:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T16:00:46Z,60.763,-171.793,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-28T16:00:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-29T06:59:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T06:59:09Z,61.111,-171.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-29T06:59:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-29T12:28:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T12:28:13Z,61.136,-171.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-29T12:28:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-29T14:51:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T14:51:39Z,61.139,-171.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-29T14:51:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-29T17:51:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T17:51:14Z,61.154,-171.722,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-29T17:51:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-30T00:47:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T00:47:08Z,61.156,-171.929,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-30T00:47:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-30T03:43:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T03:43:02Z,61.181,-171.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-30T03:43:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-30T14:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T14:42:52Z,61.118,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-30T14:42:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-31T00:38:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T00:38:33Z,61.106,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T00:38:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2011-12-31T01:45:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T01:45:02Z,61.099,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T01:45:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2011-12-31T02:25:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T02:25:55Z,61.071,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T02:25:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2011-12-31T03:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T03:11:39Z,61.078,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T03:11:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2011-12-31T04:57:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T04:57:50Z,61.064,-172.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T04:57:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2011-12-31T05:00:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T05:00:50Z,61.068,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T05:00:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2011-12-31T06:35:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T06:35:20Z,61.051,-172.176,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2011-12-31T06:35:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-01-01T00:36:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T00:36:20Z,61.067,-172.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-01T00:36:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-01T07:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T07:00:42Z,61.022,-172.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-01T07:00:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-01T21:40:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T21:40:32Z,60.938,-172.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-01T21:40:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-02T02:22:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T02:22:11Z,60.951,-172.545,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-02T02:22:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-02T06:12:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T06:12:45Z,60.949,-172.543,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-02T06:12:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-01-02T07:33:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T07:33:15Z,60.95,-172.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-02T07:33:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-02T18:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T18:27:03Z,61.007,-172.435,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-02T18:27:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-02T20:16:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T20:16:40Z,60.996,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-02T20:16:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-03T03:37:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T03:37:22Z,60.931,-172.407,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-03T03:37:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-03T17:18:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T17:18:27Z,60.886,-172.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-03T17:18:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-05T01:23:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T01:23:16Z,60.756,-172.101,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-05T01:23:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-05T06:30:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T06:30:25Z,60.768,-171.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-05T06:30:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-05T07:00:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T07:00:01Z,60.78,-171.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-05T07:00:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-01-05T21:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T21:02:07Z,60.749,-171.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-05T21:02:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-06T01:13:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T01:13:18Z,60.749,-171.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T01:13:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-06T02:29:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T02:29:35Z,60.77,-171.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T02:29:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-06T03:40:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T03:40:57Z,60.776,-171.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T03:40:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-01-06T04:10:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T04:10:02Z,60.805,-171.439,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T04:10:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2012-01-06T05:50:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T05:50:07Z,60.775,-171.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T05:50:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-01-06T06:11:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T06:11:07Z,60.766,-171.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T06:11:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-06T07:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T07:02:43Z,60.762,-171.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-06T07:02:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-07T14:59:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T14:59:56Z,61.009,-172.201,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-07T14:59:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-07T15:53:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T15:53:35Z,61.001,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-07T15:53:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-08T03:24:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T03:24:06Z,60.912,-172.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-08T03:24:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-08T18:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T18:46:33Z,60.878,-172.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-08T18:46:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-08T19:36:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T19:36:36Z,60.886,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-08T19:36:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-01-08T20:55:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T20:55:23Z,60.887,-172.022,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-08T20:55:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-09T20:14:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T20:14:54Z,60.9,-172.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-09T20:14:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-09T23:54:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T23:54:32Z,60.86,-172.018,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-09T23:54:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-10T00:38:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T00:38:41Z,60.865,-172.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-10T00:38:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-10T01:37:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T01:37:56Z,60.852,-172.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-10T01:37:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-10T02:36:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T02:36:53Z,60.848,-172.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-10T02:36:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-01-10T21:59:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T21:59:38Z,60.953,-171.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-10T21:59:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-10T23:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T23:39:01Z,60.945,-171.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-10T23:39:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-12T23:59:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-12T23:59:26Z,61.006,-171.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-12T23:59:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-13T01:44:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T01:44:14Z,61.024,-171.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-13T01:44:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-13T03:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T03:50:54Z,61.064,-172.056,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-13T03:50:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-13T22:32:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T22:32:37Z,61.087,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-13T22:32:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-14T02:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T02:42:54Z,61.054,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-14T02:42:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-14T10:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T10:12:37Z,61.084,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-14T10:12:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-15T00:33:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T00:33:43Z,61.232,-172.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T00:33:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-01-15T01:55:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T01:55:03Z,61.201,-172.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T01:55:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2012-01-15T02:14:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T02:14:51Z,61.191,-172.529,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T02:14:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2012-01-15T03:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T03:07:48Z,61.185,-172.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T03:07:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. -ioos_atn_2012-01-15T04:44:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T04:44:33Z,61.186,-172.57,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T04:44:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-01-15T05:31:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T05:31:03Z,61.186,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T05:31:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-01-15T06:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T06:24:18Z,61.19,-172.576,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-15T06:24:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-16T01:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T01:15:05Z,61.253,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T01:15:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-01-16T02:53:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T02:53:04Z,61.255,-172.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T02:53:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. -ioos_atn_2012-01-16T03:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T03:20:04Z,61.242,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T03:20:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-01-16T04:20:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T04:20:49Z,61.248,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T04:20:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-01-16T05:01:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T05:01:42Z,61.246,-172.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T05:01:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-01-16T06:05:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T06:05:04Z,61.25,-172.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-16T06:05:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2012-01-17T00:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T00:54:43Z,61.265,-172.294,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-17T00:54:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-17T01:25:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T01:25:45Z,61.261,-172.304,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-17T01:25:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-17T02:44:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T02:44:52Z,61.259,-172.274,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-17T02:44:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-17T07:25:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T07:25:06Z,61.221,-172.387,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-17T07:25:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-17T16:43:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T16:43:31Z,61.227,-172.482,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-17T16:43:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-18T05:59:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T05:59:48Z,60.996,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-18T05:59:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-18T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T06:13:20Z,61.012,-172.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-18T06:13:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-18T12:17:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T12:17:42Z,60.975,-172.874,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-18T12:17:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-19T04:22:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T04:22:42Z,60.925,-172.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-19T04:22:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-19T06:41:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T06:41:13Z,60.933,-172.313,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-19T06:41:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-19T13:49:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T13:49:23Z,60.96,-172.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-19T13:49:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-19T22:09:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T22:09:03Z,60.913,-171.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-19T22:09:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-19T23:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T23:48:06Z,60.939,-171.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-19T23:48:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-20T06:00:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T06:00:39Z,60.966,-171.841,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-20T06:00:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-01-20T11:58:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T11:58:12Z,60.982,-171.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-20T11:58:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-20T17:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T17:20:06Z,60.973,-171.768,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-20T17:20:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-20T19:41:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T19:41:46Z,60.957,-171.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-20T19:41:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-21T01:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T01:58:36Z,60.857,-171.828,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T01:58:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-21T04:00:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T04:00:49Z,60.829,-171.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T04:00:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-01-21T13:27:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T13:27:08Z,60.771,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T13:27:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-21T16:50:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T16:50:02Z,60.796,-171.915,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T16:50:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-21T19:31:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T19:31:28Z,60.78,-171.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T19:31:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-21T22:20:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T22:20:17Z,60.729,-171.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T22:20:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-21T23:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T23:25:16Z,60.717,-171.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-21T23:25:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-22T01:03:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T01:03:16Z,60.703,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-22T01:03:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-01-22T17:13:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T17:13:17Z,60.705,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-22T17:13:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-22T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T20:47:29Z,60.704,-171.886,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-22T20:47:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-23T00:53:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T00:53:18Z,60.666,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-23T00:53:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-23T02:22:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T02:22:34Z,60.637,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-23T02:22:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-23T04:01:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T04:01:29Z,60.624,-171.912,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-23T04:01:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-23T06:37:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T06:37:11Z,60.627,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-23T06:37:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-23T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T20:47:29Z,60.495,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-23T20:47:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-01-24T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T00:50:28Z,60.504,-171.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T00:50:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-24T01:22:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T01:22:43Z,60.509,-171.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T01:22:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-24T15:14:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T15:14:07Z,60.627,-171.946,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T15:14:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-24T18:57:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T18:57:40Z,60.649,-171.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T18:57:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-24T20:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T20:34:32Z,60.675,-171.934,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T20:34:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-24T22:09:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T22:09:59Z,60.682,-171.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-24T22:09:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-25T01:12:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T01:12:57Z,60.656,-171.976,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-25T01:12:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-25T04:58:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T04:58:52Z,60.683,-172.041,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-25T04:58:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-26T00:56:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-26T00:56:18Z,60.842,-171.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-26T00:56:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T02:24:24Z,60.894,-171.593,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T02:24:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-27T03:25:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T03:25:03Z,60.898,-171.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T03:25:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-27T04:31:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T04:31:48Z,60.883,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T04:31:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2012-01-27T05:01:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T05:01:48Z,60.884,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T05:01:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-01-27T06:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T06:16:03Z,60.887,-171.636,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T06:16:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-01-27T07:18:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T07:18:18Z,60.891,-171.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-27T07:18:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-01-28T16:09:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T16:09:15Z,60.941,-171.815,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-28T16:09:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-01-28T23:49:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T23:49:34Z,61.026,-171.852,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-28T23:49:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-29T00:22:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T00:22:49Z,61.033,-171.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T00:22:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-29T01:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T01:33:22Z,61.047,-171.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T01:33:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-01-29T15:57:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T15:57:01Z,61.083,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T15:57:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-01-29T19:44:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T19:44:01Z,61.067,-172.076,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T19:44:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-01-29T21:15:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T21:15:39Z,61.064,-172.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T21:15:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-29T23:46:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T23:46:36Z,61.055,-172.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-29T23:46:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-01-30T02:44:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-30T02:44:23Z,61.056,-172.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-01-30T02:44:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-05T08:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T08:17:50Z,60.796,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-05T08:17:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-05T12:30:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T12:30:12Z,60.777,-173.023,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-05T12:30:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-06T07:34:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T07:34:57Z,60.769,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-06T07:34:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-02-06T08:51:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T08:51:16Z,60.771,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-06T08:51:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-02-06T09:15:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T09:15:16Z,60.774,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-06T09:15:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-02-07T02:51:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T02:51:53Z,60.827,-172.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T02:51:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-07T05:45:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T05:45:57Z,60.81,-172.608,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T05:45:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-07T07:17:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T07:17:06Z,60.776,-172.612,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T07:17:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-07T08:30:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T08:30:21Z,60.78,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T08:30:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-07T09:04:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T09:04:32Z,60.791,-172.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T09:04:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-07T10:17:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T10:17:02Z,60.771,-172.618,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-07T10:17:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-08T02:26:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T02:26:57Z,60.76,-172.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-08T02:26:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-08T05:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T05:25:31Z,60.76,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-08T05:25:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-08T14:12:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T14:12:54Z,60.759,-172.731,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-08T14:12:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-02-08T20:47:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T20:47:54Z,60.78,-172.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-08T20:47:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-08T21:00:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T21:00:32Z,60.796,-172.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-08T21:00:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-09T01:26:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T01:26:42Z,60.808,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T01:26:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-09T03:52:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T03:52:28Z,60.819,-172.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T03:52:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-09T05:12:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T05:12:49Z,60.815,-172.733,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T05:12:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-09T06:38:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T06:38:46Z,60.818,-172.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T06:38:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-09T07:55:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T07:55:44Z,60.81,-172.749,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T07:55:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-09T13:26:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T13:26:27Z,60.818,-172.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T13:26:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-09T15:06:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T15:06:35Z,60.831,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-09T15:06:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-10T01:35:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T01:35:01Z,60.821,-172.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T01:35:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-10T03:18:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T03:18:09Z,60.825,-172.764,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T03:18:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2012-02-10T05:04:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T05:04:05Z,60.85,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T05:04:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-02-10T06:16:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T06:16:05Z,60.843,-172.782,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T06:16:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-02-10T07:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T07:28:50Z,60.846,-172.783,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T07:28:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-02-10T08:27:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T08:27:20Z,60.847,-172.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T08:27:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-02-10T09:09:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T09:09:20Z,60.846,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-10T09:09:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-02-11T00:54:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T00:54:06Z,60.886,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T00:54:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2012-02-11T01:33:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T01:33:51Z,60.885,-172.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T01:33:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2012-02-11T02:13:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T02:13:36Z,60.896,-172.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T02:13:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2012-02-11T03:00:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T03:00:06Z,60.883,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T03:00:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2012-02-11T04:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T04:10:36Z,60.886,-172.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T04:10:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2012-02-11T05:31:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T05:31:36Z,60.893,-172.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-11T05:31:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-02-12T06:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T06:23:27Z,60.996,-172.49,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-12T06:23:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-12T08:26:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T08:26:18Z,61.008,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-12T08:26:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-12T20:08:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T20:08:15Z,60.973,-172.282,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-12T20:08:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-12T22:56:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T22:56:36Z,60.974,-172.243,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-12T22:56:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-13T04:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T04:27:03Z,60.949,-172.264,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-13T04:27:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-13T05:00:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T05:00:54Z,60.953,-172.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-13T05:00:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-02-13T06:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T06:05:08Z,60.963,-172.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-13T06:05:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2012-02-13T07:56:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T07:56:53Z,60.985,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-13T07:56:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-02-13T08:05:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T08:05:38Z,60.988,-172.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-13T08:05:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-02-14T00:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T00:23:27Z,61.036,-172.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T00:23:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. -ioos_atn_2012-02-14T01:46:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T01:46:39Z,61.036,-172.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T01:46:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-02-14T02:13:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T02:13:39Z,61.029,-172.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T02:13:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-02-14T03:01:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T03:01:39Z,61.027,-172.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T03:01:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-02-14T04:15:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T04:15:09Z,61.03,-172.064,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T04:15:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. -ioos_atn_2012-02-14T05:53:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T05:53:24Z,61.039,-172.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T05:53:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-02-14T06:05:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T06:05:24Z,61.042,-172.108,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-14T06:05:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-02-15T00:12:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T00:12:23Z,61.082,-172.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-15T00:12:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-15T07:36:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T07:36:58Z,61.018,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-15T07:36:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. -ioos_atn_2012-02-15T22:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T22:51:07Z,60.951,-172.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-15T22:51:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-16T00:28:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T00:28:35Z,60.952,-172.353,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-16T00:28:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-16T04:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T04:14:53Z,60.912,-172.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-16T04:14:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-16T07:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T07:16:03Z,60.907,-172.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-16T07:16:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-16T16:17:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T16:17:45Z,60.868,-172.592,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-16T16:17:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-18T01:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T01:27:03Z,60.998,-172.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-18T01:27:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-18T06:28:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T06:28:55Z,60.998,-172.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-18T06:28:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-18T15:19:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T15:19:37Z,61.029,-172.364,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-18T15:19:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-18T20:10:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T20:10:57Z,61.009,-172.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-18T20:10:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-18T21:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T21:49:48Z,60.992,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-18T21:49:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. -ioos_atn_2012-02-19T01:17:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T01:17:19Z,60.971,-172.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T01:17:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-19T03:10:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T03:10:46Z,60.981,-172.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T03:10:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-19T04:55:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T04:55:31Z,60.987,-172.386,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T04:55:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-19T07:40:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T07:40:59Z,60.97,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T07:40:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-19T11:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T11:39:37Z,60.945,-172.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T11:39:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-19T15:07:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T15:07:16Z,60.966,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-19T15:07:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-02-20T01:08:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T01:08:21Z,60.924,-172.3,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-20T01:08:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-20T07:19:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T07:19:40Z,60.967,-172.338,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-20T07:19:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-20T09:00:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T09:00:02Z,60.951,-172.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-20T09:00:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-20T11:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T11:33:21Z,60.968,-172.362,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-20T11:33:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-20T16:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T16:58:36Z,61.034,-172.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-20T16:58:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-21T01:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T01:22:30Z,61.029,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-21T01:22:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-21T02:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T02:20:06Z,61.034,-172.343,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-21T02:20:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-22T00:38:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-22T00:38:04Z,60.968,-172.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-22T00:38:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-23T02:11:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T02:11:45Z,60.933,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-23T02:11:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. -ioos_atn_2012-02-23T03:05:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T03:05:45Z,60.915,-172.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-23T03:05:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. -ioos_atn_2012-02-23T04:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T04:09:30Z,60.921,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-23T04:09:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. -ioos_atn_2012-02-23T05:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T05:49:15Z,60.929,-172.278,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-23T05:49:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-23T06:06:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T06:06:30Z,60.927,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-23T06:06:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-02-24T23:08:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-24T23:08:42Z,60.957,-172.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-24T23:08:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-25T13:58:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T13:58:47Z,60.953,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-25T13:58:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-25T20:55:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T20:55:47Z,60.933,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-25T20:55:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-26T01:59:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T01:59:55Z,60.889,-172.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-26T01:59:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-26T06:42:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T06:42:50Z,60.806,-173.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-26T06:42:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-02-27T07:55:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T07:55:19Z,60.811,-172.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-27T07:55:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-27T21:34:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T21:34:24Z,60.89,-172.521,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-27T21:34:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-28T02:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T02:50:11Z,60.875,-172.55,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-28T02:50:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-02-28T04:07:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T04:07:53Z,60.879,-172.558,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-28T04:07:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-28T07:55:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T07:55:54Z,60.898,-172.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-28T07:55:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-28T08:13:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T08:13:07Z,60.889,-172.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-28T08:13:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-28T09:37:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T09:37:07Z,60.894,-172.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-28T09:37:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-02-29T05:21:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T05:21:48Z,61.012,-172.577,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-29T05:21:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-02-29T06:21:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T06:21:28Z,61.006,-172.552,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-29T06:21:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-02-29T23:07:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T23:07:10Z,60.936,-172.366,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-02-29T23:07:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-03-01T03:09:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T03:09:25Z,60.93,-172.328,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-01T03:09:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-03-01T04:22:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T04:22:46Z,60.92,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-01T04:22:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-03-02T02:59:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T02:59:35Z,60.914,-172.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-02T02:59:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-03-02T06:22:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T06:22:25Z,60.88,-172.22,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-02T06:22:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-03-02T08:03:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T08:03:30Z,60.896,-172.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-02T08:03:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, -ioos_atn_2012-03-06T00:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T00:25:59Z,61.033,-171.893,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-06T00:25:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-03-06T02:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T02:14:55Z,61.091,-171.993,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-06T02:14:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-03-06T06:23:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T06:23:29Z,61.074,-171.987,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-06T06:23:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. -ioos_atn_2012-03-06T08:07:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T08:07:06Z,61.083,-171.921,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-06T08:07:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. -ioos_atn_2012-03-07T04:37:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-07T04:37:13Z,61.091,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-07T04:37:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, -ioos_atn_2012-03-10T06:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T06:29:55Z,60.917,-172.193,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-10T06:29:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, -ioos_atn_2012-03-10T22:53:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T22:53:10Z,60.819,-172.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-10T22:53:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-03-10T23:30:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T23:30:55Z,60.816,-172.07,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-10T23:30:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, -ioos_atn_2012-03-11T01:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-11T01:09:51Z,60.817,-172.102,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,bearded_seal_2012-03-11T01:09:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-18T03:00:00Z_0.0_bearded_seal,present,HumanObservation,137079_bearded_seal,2011-06-18T03:00:00Z,66.64,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-18T03:00:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,0,first of 3 records. +ioos_atn_38553_2011-06-18T04:07:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T04:07:02Z,66.62,-162.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-18T04:07:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-18T05:16:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T05:16:18Z,66.617,-163.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-18T05:16:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-06-18T07:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T07:03:35Z,66.6,-163.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-18T07:03:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-06-18T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T09:11:19Z,66.601,-163.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-18T09:11:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-18T11:13:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T11:13:42Z,66.605,-163.096,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-18T11:13:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-18T12:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T12:50:52Z,66.625,-163.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-18T12:50:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-18T14:14:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T14:14:40Z,66.64,-163.08,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-18T14:14:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-19T00:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T00:08:08Z,66.662,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-19T00:08:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 6 records. +ioos_atn_38553_2011-06-19T01:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T01:46:52Z,66.644,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-19T01:46:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-19T02:17:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T02:17:16Z,66.644,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-19T02:17:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. +ioos_atn_38553_2011-06-19T03:25:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T03:25:37Z,66.646,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-19T03:25:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-06-19T05:06:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T05:06:44Z,66.665,-162.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-19T05:06:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-19T07:08:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T07:08:49Z,66.652,-163.029,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-19T07:08:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-20T00:07:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T00:07:22Z,66.629,-163.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-20T00:07:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-06-20T03:16:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T03:16:21Z,66.58,-162.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-20T03:16:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-06-20T04:53:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T04:53:44Z,66.537,-162.937,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-20T04:53:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-20T05:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T05:04:36Z,66.559,-162.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-20T05:04:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-20T06:38:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T06:38:36Z,66.548,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-20T06:38:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-06-21T00:19:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T00:19:43Z,66.631,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-21T00:19:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-21T01:19:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T01:19:38Z,66.639,-162.983,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-21T01:19:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_38553_2011-06-21T03:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T03:01:07Z,66.632,-162.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-21T03:01:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-06-21T04:47:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T04:47:17Z,66.583,-162.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-21T04:47:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-06-21T06:27:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T06:27:31Z,66.561,-162.848,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-21T06:27:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_38553_2011-06-22T00:02:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T00:02:33Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-22T00:02:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-22T01:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T01:03:38Z,66.61,-162.94,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-22T01:03:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_38553_2011-06-22T02:17:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T02:17:13Z,66.597,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-22T02:17:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. +ioos_atn_38553_2011-06-22T04:10:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T04:10:21Z,66.593,-162.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-22T04:10:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-22T05:52:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T05:52:14Z,66.527,-162.829,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-22T05:52:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-22T06:06:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T06:06:27Z,66.528,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-22T06:06:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-22T07:45:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T07:45:44Z,66.505,-162.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-22T07:45:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-06-23T01:34:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T01:34:03Z,66.431,-162.697,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-23T01:34:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-23T03:33:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T03:33:52Z,66.457,-162.769,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-23T03:33:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-23T04:23:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T04:23:32Z,66.475,-162.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-23T04:23:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-23T07:13:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T07:13:31Z,66.501,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-23T07:13:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-23T08:53:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T08:53:26Z,66.508,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-23T08:53:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-23T13:42:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T13:42:55Z,66.56,-162.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-23T13:42:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-24T00:32:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T00:32:04Z,66.593,-162.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-24T00:32:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-24T03:07:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T03:07:08Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-24T03:07:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_38553_2011-06-24T05:51:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T05:51:21Z,66.615,-162.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-24T05:51:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-06-24T06:51:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T06:51:41Z,66.614,-162.957,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-24T06:51:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-06-24T07:10:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T07:10:49Z,66.611,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-24T07:10:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-24T08:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T08:51:08Z,66.609,-162.933,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-24T08:51:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-25T00:09:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T00:09:16Z,66.614,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-25T00:09:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-25T01:18:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T01:18:26Z,66.625,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-25T01:18:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_38553_2011-06-25T02:41:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T02:41:14Z,66.616,-163.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-25T02:41:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-06-25T03:29:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T03:29:42Z,66.626,-163.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-25T03:29:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-25T04:41:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T04:41:52Z,66.611,-163.006,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-25T04:41:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-25T05:04:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T05:04:57Z,66.621,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-25T05:04:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-25T06:26:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T06:26:11Z,66.618,-162.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-25T06:26:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-25T07:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T07:22:06Z,66.634,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-25T07:22:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-25T08:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T08:06:03Z,66.611,-163.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-25T08:06:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-26T00:38:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T00:38:51Z,66.612,-162.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-26T00:38:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-06-26T02:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T02:03:51Z,66.606,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-26T02:03:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-26T03:09:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T03:09:42Z,66.628,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-26T03:09:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-26T04:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T04:20:01Z,66.615,-162.954,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-26T04:20:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-26T05:25:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T05:25:22Z,66.611,-162.949,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-26T05:25:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-26T06:24:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T06:24:28Z,66.628,-162.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-26T06:24:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-26T08:06:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T08:06:47Z,66.625,-162.903,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-26T08:06:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-06-27T00:53:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T00:53:46Z,66.504,-163.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-27T00:53:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-27T01:08:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T01:08:26Z,66.527,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-27T01:08:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-06-27T02:18:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T02:18:56Z,66.508,-163.036,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-27T02:18:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-06-27T03:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T03:33:11Z,66.518,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-27T03:33:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-06-27T04:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T04:29:26Z,66.525,-163.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-27T04:29:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-06-27T05:36:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T05:36:11Z,66.532,-163.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-27T05:36:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-06-28T03:03:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T03:03:22Z,66.627,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-28T03:03:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-28T05:00:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T05:00:08Z,66.634,-163.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-28T05:00:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-28T06:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T06:45:07Z,66.636,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-28T06:45:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-06-28T07:23:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T07:23:57Z,66.631,-163.082,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-28T07:23:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-06-28T08:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T08:36:02Z,66.63,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-28T08:36:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-06-28T09:04:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T09:04:12Z,66.617,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-28T09:04:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-06-29T00:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T00:29:26Z,66.7,-163.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-29T00:29:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-29T03:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T03:09:48Z,66.74,-163.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-29T03:09:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-06-29T17:38:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T17:38:47Z,66.842,-163.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-29T17:38:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-29T18:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T18:06:09Z,66.86,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-29T18:06:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-30T02:06:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T02:06:33Z,66.861,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-30T02:06:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-30T04:36:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T04:36:27Z,66.937,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-30T04:36:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-06-30T10:05:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T10:05:17Z,66.988,-163.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-06-30T10:05:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-01T01:02:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T01:02:21Z,67.031,-164.349,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-01T01:02:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-01T07:50:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T07:50:05Z,67.042,-164.584,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-01T07:50:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-01T15:35:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T15:35:51Z,67.083,-165.046,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-01T15:35:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_38553_2011-07-02T07:42:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T07:42:23Z,67.429,-165.827,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-02T07:42:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-02T12:06:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T12:06:46Z,67.524,-165.951,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-02T12:06:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-02T13:32:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T13:32:11Z,67.563,-166.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-02T13:32:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-02T15:24:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T15:24:00Z,67.594,-166.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-02T15:24:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-02T16:51:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T16:51:50Z,67.624,-166.111,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-02T16:51:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-03T00:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T00:42:52Z,67.724,-166.456,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-03T00:42:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-03T01:09:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T01:09:17Z,67.726,-166.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-03T01:09:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-03T03:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T03:14:13Z,67.754,-166.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-03T03:14:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-03T07:19:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T07:19:08Z,67.83,-166.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-03T07:19:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-04T10:27:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T10:27:18Z,68.531,-167.802,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-04T10:27:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-04T13:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T13:22:06Z,68.614,-167.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-04T13:22:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-05T00:48:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T00:48:34Z,68.814,-167.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-05T00:48:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-05T01:15:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T01:15:53Z,68.799,-167.21,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-05T01:15:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-05T05:46:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T05:46:44Z,68.875,-166.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-05T05:46:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-05T07:07:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T07:07:39Z,68.88,-166.703,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-05T07:07:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-05T13:16:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T13:16:41Z,69.014,-166.442,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-05T13:16:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-07-06T01:45:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T01:45:55Z,69.275,-165.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-06T01:45:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-06T02:05:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T02:05:39Z,69.283,-165.986,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-06T02:05:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-06T04:37:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T04:37:29Z,69.309,-165.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-06T04:37:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-06T06:18:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T06:18:21Z,69.322,-165.82,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-06T06:18:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-06T07:08:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T07:08:44Z,69.32,-165.812,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-06T07:08:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-07-06T09:40:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T09:40:17Z,69.341,-165.751,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-06T09:40:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-06T11:20:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T11:20:44Z,69.346,-165.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-06T11:20:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-07T00:54:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T00:54:05Z,69.399,-165.385,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-07T00:54:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-07T01:01:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T01:01:21Z,69.416,-165.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-07T01:01:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-07T04:54:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T04:54:31Z,69.43,-165.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-07T04:54:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-07T05:05:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T05:05:05Z,69.436,-165.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-07T05:05:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-07T13:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T13:02:46Z,69.543,-164.969,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-07T13:02:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-07T20:22:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T20:22:52Z,69.629,-164.92,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-07T20:22:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-08T12:40:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-08T12:40:55Z,69.682,-164.257,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-08T12:40:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-09T02:34:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T02:34:30Z,69.818,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-09T02:34:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-09T05:23:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T05:23:26Z,69.824,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-09T05:23:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-09T06:57:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T06:57:06Z,69.835,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-09T06:57:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-09T08:01:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T08:01:24Z,69.83,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-09T08:01:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-09T10:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T10:51:51Z,69.85,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-09T10:51:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-09T14:09:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T14:09:09Z,69.834,-163.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-09T14:09:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-09T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T15:51:15Z,69.825,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-09T15:51:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-10T03:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T03:51:31Z,69.836,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-10T03:51:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-10T06:34:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T06:34:13Z,69.857,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-10T06:34:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-10T07:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T07:13:38Z,69.849,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-10T07:13:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-10T12:21:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T12:21:32Z,69.858,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-10T12:21:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-10T13:59:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T13:59:06Z,69.867,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-10T13:59:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-10T14:02:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T14:02:19Z,69.87,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-10T14:02:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-10T15:15:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T15:15:43Z,69.875,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-10T15:15:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-11T00:11:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T00:11:33Z,69.857,-163.606,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-11T00:11:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-11T01:49:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T01:49:20Z,69.863,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-11T01:49:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2011-07-11T02:56:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T02:56:55Z,69.858,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-11T02:56:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-11T03:27:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T03:27:49Z,69.869,-163.571,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-11T03:27:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-11T13:15:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T13:15:14Z,69.874,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-11T13:15:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-12T02:11:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T02:11:32Z,69.768,-163.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-12T02:11:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-12T06:30:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T06:30:41Z,69.779,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-12T06:30:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-12T09:19:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T09:19:42Z,69.816,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-12T09:19:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-12T11:59:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T11:59:25Z,69.827,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-12T11:59:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-12T13:37:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T13:37:28Z,69.831,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-12T13:37:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-12T17:42:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T17:42:31Z,69.85,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-12T17:42:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-12T18:41:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T18:41:42Z,69.867,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-12T18:41:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-13T13:29:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T13:29:37Z,70.028,-163.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-13T13:29:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-07-13T14:09:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T14:09:22Z,70.03,-163.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-13T14:09:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-07-14T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T05:10:23Z,70.184,-162.602,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-14T05:10:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-14T21:56:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T21:56:00Z,70.381,-161.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-14T21:56:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-15T11:28:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T11:28:11Z,70.453,-161.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-15T11:28:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-15T13:07:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T13:07:28Z,70.456,-161.425,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-15T13:07:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-15T15:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T15:02:20Z,70.42,-161.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-15T15:02:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-15T16:25:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T16:25:24Z,70.445,-161.553,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-15T16:25:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_38553_2011-07-15T17:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T17:03:38Z,70.415,-161.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-15T17:03:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-07-16T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T00:50:28Z,70.4,-161.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-16T00:50:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-07-16T01:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T01:32:28Z,70.403,-161.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-16T01:32:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2011-07-16T02:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T02:32:28Z,70.409,-161.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-16T02:32:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_38553_2011-07-16T03:06:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T03:06:58Z,70.396,-161.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-16T03:06:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-07-16T04:17:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T04:17:28Z,70.398,-161.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-16T04:17:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-07-17T01:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T01:06:22Z,70.386,-161.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-17T01:06:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-17T02:17:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T02:17:01Z,70.405,-161.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-17T02:17:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-17T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T06:13:20Z,70.407,-161.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-17T06:13:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-17T14:32:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T14:32:02Z,70.349,-162.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-17T14:32:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-07-17T16:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T16:08:51Z,70.311,-162.562,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-17T16:08:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-17T17:45:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T17:45:06Z,70.287,-162.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-17T17:45:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-17T18:11:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T18:11:09Z,70.275,-162.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-17T18:11:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-17T19:32:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T19:32:36Z,70.234,-162.748,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-17T19:32:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-18T00:27:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T00:27:32Z,70.114,-162.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-18T00:27:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. +ioos_atn_38553_2011-07-18T02:43:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T02:43:18Z,70.084,-162.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-18T02:43:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_38553_2011-07-18T03:28:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T03:28:15Z,70.07,-163.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-18T03:28:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-07-18T04:04:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T04:04:15Z,70.08,-162.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-18T04:04:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-07-18T05:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T05:07:15Z,70.082,-162.938,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-18T05:07:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-07-18T06:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T06:07:15Z,70.082,-162.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-18T06:07:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-18T07:09:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T07:09:55Z,70.086,-162.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-18T07:09:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-07-19T00:51:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T00:51:20Z,69.829,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-19T00:51:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. +ioos_atn_38553_2011-07-19T03:03:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T03:03:50Z,69.814,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-19T03:03:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2011-07-19T04:11:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T04:11:20Z,69.822,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-19T04:11:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-19T08:29:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T08:29:50Z,69.842,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-19T08:29:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-19T12:28:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T12:28:03Z,69.757,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-19T12:28:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-19T13:17:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T13:17:09Z,69.756,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-19T13:17:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-20T03:13:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T03:13:16Z,69.734,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-20T03:13:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-20T05:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T05:41:26Z,69.748,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-20T05:41:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-20T06:39:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T06:39:56Z,69.755,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-20T06:39:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-07-20T07:22:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T07:22:41Z,69.755,-163.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-20T07:22:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-07-20T08:09:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T08:09:11Z,69.761,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-20T08:09:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-07-21T12:05:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T12:05:51Z,69.711,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-21T12:05:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-21T13:46:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T13:46:00Z,69.706,-163.611,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-21T13:46:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-21T15:21:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T15:21:15Z,69.706,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-21T15:21:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-22T00:08:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T00:08:54Z,69.693,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-22T00:08:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-22T04:08:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T04:08:05Z,69.68,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-22T04:08:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-22T11:52:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T11:52:21Z,69.691,-163.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-22T11:52:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-22T13:52:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T13:52:57Z,69.667,-163.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-22T13:52:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-07-23T01:32:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T01:32:47Z,69.628,-163.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-23T01:32:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-23T06:48:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T06:48:48Z,69.6,-163.877,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-23T06:48:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-07-23T07:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T07:06:03Z,69.6,-163.875,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-23T07:06:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-23T08:31:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T08:31:13Z,69.605,-163.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-23T08:31:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-07-23T11:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T11:41:00Z,69.613,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-23T11:41:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-24T00:10:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T00:10:03Z,69.688,-163.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-24T00:10:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-24T01:41:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T01:41:51Z,69.7,-163.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-24T01:41:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-24T02:51:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T02:51:36Z,69.696,-163.899,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-24T02:51:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-24T06:36:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T06:36:50Z,69.728,-163.935,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-24T06:36:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-24T08:20:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T08:20:12Z,69.748,-163.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-24T08:20:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-24T13:12:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T13:12:12Z,69.72,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-24T13:12:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-24T14:56:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T14:56:47Z,69.717,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-24T14:56:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-25T02:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T02:21:25Z,69.749,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-25T02:21:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-25T06:24:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T06:24:49Z,69.78,-163.585,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-25T06:24:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-25T11:23:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T11:23:44Z,69.774,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-25T11:23:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-25T13:04:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T13:04:26Z,69.767,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-25T13:04:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-25T14:14:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T14:14:49Z,69.756,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-25T14:14:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-07-26T04:29:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T04:29:07Z,69.766,-163.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-26T04:29:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-26T06:16:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T06:16:26Z,69.775,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-26T06:16:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-26T09:26:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T09:26:49Z,69.785,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-26T09:26:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-26T12:52:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T12:52:06Z,69.8,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-26T12:52:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-26T16:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T16:06:53Z,69.798,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-26T16:06:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-27T00:42:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T00:42:15Z,69.802,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-27T00:42:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_38553_2011-07-27T02:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T02:14:06Z,69.83,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-27T02:14:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 5 records. +ioos_atn_38553_2011-07-27T03:11:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T03:11:21Z,69.801,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-27T03:11:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-28T03:26:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T03:26:35Z,69.744,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-28T03:26:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-28T04:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T04:03:51Z,69.735,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-28T04:03:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-07-28T05:22:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T05:22:01Z,69.736,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-28T05:22:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-07-29T12:18:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T12:18:23Z,69.729,-163.52,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-29T12:18:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-07-29T20:02:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T20:02:45Z,69.696,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-29T20:02:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-30T01:53:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T01:53:52Z,69.702,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-30T01:53:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-30T04:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T04:47:02Z,69.679,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-30T04:47:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-07-30T05:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T05:22:07Z,69.669,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-30T05:22:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-07-30T06:03:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T06:03:17Z,69.669,-163.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-30T06:03:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-07-30T07:03:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T07:03:27Z,69.668,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-30T07:03:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-07-31T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T00:07:45Z,69.666,-163.649,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-31T00:07:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-31T03:13:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T03:13:57Z,69.669,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-31T03:13:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-07-31T07:42:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T07:42:40Z,69.655,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-31T07:42:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-07-31T09:02:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T09:02:22Z,69.656,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-31T09:02:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-07-31T13:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T13:36:04Z,69.667,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-07-31T13:36:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-08-01T01:18:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T01:18:30Z,69.665,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-01T01:18:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-08-01T03:15:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T03:15:30Z,69.668,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-01T03:15:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-01T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T04:31:07Z,69.669,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-01T04:31:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-01T05:13:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T05:13:58Z,69.664,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-01T05:13:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-08-01T06:42:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T06:42:09Z,69.67,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-01T06:42:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-08-02T02:27:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T02:27:23Z,69.672,-163.739,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-02T02:27:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-02T03:11:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T03:11:08Z,69.678,-163.646,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-02T03:11:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-08-02T04:06:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T04:06:38Z,69.68,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-02T04:06:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-08-02T14:54:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T14:54:19Z,69.656,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-02T14:54:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-03T01:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T01:09:48Z,69.675,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-03T01:09:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-03T02:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T02:00:42Z,69.675,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-03T02:00:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-03T04:31:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T04:31:10Z,69.663,-163.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-03T04:31:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-03T05:21:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T05:21:24Z,69.67,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-03T05:21:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-03T06:16:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T06:16:19Z,69.675,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-03T06:16:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-08-04T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T04:21:21Z,69.685,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-04T04:21:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-04T05:45:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T05:45:49Z,69.685,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-04T05:45:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-04T07:26:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T07:26:17Z,69.685,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-04T07:26:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-04T11:06:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T11:06:32Z,69.688,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-04T11:06:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-04T12:58:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T12:58:21Z,69.694,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-04T12:58:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-04T13:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T13:33:49Z,69.699,-163.59,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-04T13:33:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-04T14:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T14:33:26Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-04T14:33:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-05T00:58:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T00:58:31Z,69.676,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-05T00:58:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-05T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T04:21:21Z,69.69,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-05T04:21:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-05T05:20:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T05:20:19Z,69.687,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-05T05:20:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-05T12:47:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T12:47:47Z,69.668,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-05T12:47:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-08-05T15:58:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T15:58:19Z,69.658,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-05T15:58:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-05T17:42:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T17:42:10Z,69.659,-163.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-05T17:42:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-06T00:00:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T00:00:25Z,69.653,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-06T00:00:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 6 records. +ioos_atn_38553_2011-08-06T01:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T01:38:40Z,69.65,-163.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-06T01:38:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-06T02:06:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T02:06:40Z,69.644,-163.567,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-06T02:06:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. +ioos_atn_38553_2011-08-07T04:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T04:33:23Z,69.741,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-07T04:33:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-07T05:24:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T05:24:22Z,69.731,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-07T05:24:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-07T06:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T06:53:55Z,69.732,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-07T06:53:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-08-07T07:10:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T07:10:55Z,69.737,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-07T07:10:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-07T09:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T09:38:40Z,69.743,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-07T09:38:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-07T10:25:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T10:25:10Z,69.747,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-07T10:25:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-08-08T01:45:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T01:45:33Z,69.741,-163.619,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-08T01:45:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-08T03:22:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T03:22:23Z,69.732,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-08T03:22:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-08T10:03:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T10:03:23Z,69.724,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-08T10:03:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-08-09T00:04:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T00:04:58Z,69.732,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-09T00:04:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-09T01:16:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T01:16:31Z,69.732,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-09T01:16:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-08-09T03:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T03:24:48Z,69.725,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-09T03:24:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-09T06:47:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T06:47:37Z,69.706,-163.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-09T06:47:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-09T07:10:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T07:10:20Z,69.704,-163.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-09T07:10:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-09T08:01:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T08:01:20Z,69.7,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-09T08:01:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-08-09T09:36:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T09:36:35Z,69.698,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-09T09:36:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-08-09T10:26:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T10:26:05Z,69.698,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-09T10:26:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-10T04:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T04:13:56Z,69.678,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-10T04:13:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-10T05:59:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T05:59:52Z,69.708,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-10T05:59:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-10T06:45:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T06:45:48Z,69.707,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-10T06:45:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-10T09:14:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T09:14:52Z,69.72,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-10T09:14:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-10T11:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T11:46:33Z,69.721,-163.714,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-10T11:46:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-10T12:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T12:49:55Z,69.725,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-10T12:49:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-11T02:59:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T02:59:33Z,69.711,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-11T02:59:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-11T07:14:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T07:14:21Z,69.699,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-11T07:14:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-11T18:14:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T18:14:48Z,69.642,-163.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-11T18:14:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-08-12T14:46:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T14:46:19Z,69.686,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-12T14:46:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-12T15:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T15:08:55Z,69.684,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-12T15:08:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-12T16:25:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T16:25:21Z,69.684,-163.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-12T16:25:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-13T04:14:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T04:14:44Z,69.69,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-13T04:14:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-13T12:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T12:55:34Z,69.689,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-13T12:55:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-13T17:54:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T17:54:16Z,69.689,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-13T17:54:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-13T18:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T18:07:01Z,69.689,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-13T18:07:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2011-08-14T06:47:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-14T06:47:14Z,69.681,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-14T06:47:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-15T02:09:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T02:09:24Z,69.686,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-15T02:09:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-08-15T04:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T04:46:52Z,69.69,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-15T04:46:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-15T12:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T12:34:32Z,69.689,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-15T12:34:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-15T14:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T14:09:46Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-15T14:09:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-08-16T06:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T06:08:45Z,69.68,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-16T06:08:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-16T12:37:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T12:37:44Z,69.671,-163.717,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-16T12:37:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-16T17:02:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T17:02:18Z,69.668,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-16T17:02:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 4 records. +ioos_atn_38553_2011-08-17T07:19:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T07:19:25Z,69.674,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-17T07:19:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-17T18:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T18:20:04Z,69.693,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-17T18:20:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-17T20:32:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T20:32:27Z,69.681,-163.658,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-17T20:32:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2011-08-17T22:46:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T22:46:07Z,69.686,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-17T22:46:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-18T16:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T16:13:38Z,69.694,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-18T16:13:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-18T17:18:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T17:18:15Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-18T17:18:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-08-19T00:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T00:02:43Z,69.634,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-19T00:02:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-19T04:49:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T04:49:42Z,69.659,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-19T04:49:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-19T06:07:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T06:07:54Z,69.644,-163.706,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-19T06:07:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-19T14:10:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T14:10:48Z,69.677,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-19T14:10:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-20T09:08:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T09:08:38Z,69.696,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-20T09:08:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-20T10:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T10:12:46Z,69.701,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-20T10:12:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-20T11:38:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T11:38:32Z,69.711,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-20T11:38:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-20T12:06:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T12:06:52Z,69.712,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-20T12:06:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-21T07:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T07:06:53Z,69.688,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-21T07:06:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-21T08:48:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T08:48:04Z,69.689,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-21T08:48:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-21T16:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T16:50:54Z,69.692,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-21T16:50:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-21T17:45:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T17:45:54Z,69.689,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-21T17:45:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-21T20:02:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T20:02:14Z,69.678,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-21T20:02:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-21T21:30:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T21:30:56Z,69.674,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-21T21:30:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-22T03:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T03:29:55Z,69.686,-163.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-22T03:29:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-22T05:10:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T05:10:29Z,69.676,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-22T05:10:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-08-22T06:44:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T06:44:54Z,69.665,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-22T06:44:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-22T07:04:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T07:04:18Z,69.662,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-22T07:04:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-23T03:56:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T03:56:30Z,69.671,-163.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-23T03:56:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-23T16:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T16:23:01Z,69.714,-163.833,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-23T16:23:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-23T17:33:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T17:33:56Z,69.712,-163.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-23T17:33:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-23T19:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T19:43:17Z,69.711,-163.819,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-23T19:43:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-23T21:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T21:07:36Z,69.713,-163.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-23T21:07:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-23T22:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T22:33:49Z,69.71,-163.817,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-23T22:33:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-24T07:07:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T07:07:27Z,69.641,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-24T07:07:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-24T08:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T08:53:27Z,69.64,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-24T08:53:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-24T09:25:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T09:25:30Z,69.638,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-24T09:25:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-08-25T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T16:45:07Z,69.675,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-25T16:45:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-25T17:49:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T17:49:47Z,69.681,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-25T17:49:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-25T22:59:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T22:59:37Z,69.68,-163.692,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-25T22:59:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-26T07:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T07:02:20Z,69.736,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-26T07:02:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-26T08:43:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T08:43:55Z,69.746,-163.685,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-26T08:43:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-26T10:51:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T10:51:10Z,69.751,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-26T10:51:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-27T00:43:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T00:43:42Z,69.758,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-27T00:43:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-27T10:04:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T10:04:20Z,69.689,-163.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-27T10:04:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-08-27T12:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T12:03:00Z,69.692,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-27T12:03:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-08-28T04:38:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T04:38:52Z,69.676,-163.698,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-28T04:38:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-08-28T06:21:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T06:21:05Z,69.678,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-28T06:21:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-28T09:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T09:48:01Z,69.685,-163.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-28T09:48:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-28T10:12:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T10:12:16Z,69.677,-163.695,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-28T10:12:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-28T11:50:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T11:50:56Z,69.688,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-28T11:50:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-28T12:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T12:07:36Z,69.685,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-28T12:07:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-29T04:23:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T04:23:52Z,69.689,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-29T04:23:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-29T07:54:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T07:54:54Z,69.684,-163.709,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-29T07:54:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-29T09:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T09:19:26Z,69.666,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-29T09:19:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-08-29T10:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T10:01:01Z,69.669,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-29T10:01:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-08-30T04:28:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T04:28:16Z,69.682,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-30T04:28:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-30T05:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T05:32:28Z,69.682,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-30T05:32:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-08-30T09:01:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T09:01:06Z,69.693,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-30T09:01:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-08-30T10:09:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T10:09:41Z,69.688,-163.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-30T10:09:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-08-30T11:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T11:33:26Z,69.682,-163.726,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-30T11:33:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-08-31T00:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T00:24:48Z,69.684,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-31T00:24:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-31T08:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T08:39:37Z,69.687,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-31T08:39:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-08-31T12:59:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T12:59:16Z,69.696,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-08-31T12:59:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-01T00:30:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T00:30:29Z,69.686,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-01T00:30:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-01T02:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T02:09:46Z,69.685,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-01T02:09:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-01T03:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T03:43:17Z,69.682,-163.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-01T03:43:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-01T06:45:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T06:45:01Z,69.683,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-01T06:45:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-01T07:12:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T07:12:04Z,69.682,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-01T07:12:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-01T08:09:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T08:09:57Z,69.668,-163.705,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-01T08:09:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-09-01T09:48:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T09:48:12Z,69.68,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-01T09:48:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-01T10:06:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T10:06:57Z,69.68,-163.69,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-01T10:06:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-02T07:58:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T07:58:57Z,69.691,-163.657,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-02T07:58:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-02T09:40:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T09:40:52Z,69.687,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-02T09:40:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-09-02T10:56:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T10:56:57Z,69.693,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-02T10:56:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-02T11:20:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T11:20:42Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-02T11:20:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-09-03T00:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T00:41:30Z,69.704,-163.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-03T00:41:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-09-03T02:18:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T02:18:07Z,69.698,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-03T02:18:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-03T05:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T05:39:01Z,69.688,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-03T05:39:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-03T07:20:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T07:20:03Z,69.68,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-03T07:20:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-03T08:32:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T08:32:12Z,69.683,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-03T08:32:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-09-03T09:03:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T09:03:57Z,69.678,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-03T09:03:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-09-03T10:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T10:49:16Z,69.686,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-03T10:49:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-03T12:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T12:49:48Z,69.676,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-03T12:49:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-04T02:14:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T02:14:56Z,69.682,-163.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-04T02:14:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-04T08:57:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T08:57:37Z,69.684,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-04T08:57:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-04T22:39:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T22:39:59Z,69.666,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-04T22:39:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-09-05T02:05:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T02:05:44Z,69.683,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-05T02:05:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-05T10:23:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T10:23:09Z,69.687,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-05T10:23:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-05T19:01:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T19:01:41Z,69.677,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-05T19:01:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-06T06:34:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T06:34:11Z,69.697,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-06T06:34:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-06T07:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T07:52:15Z,69.682,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-06T07:52:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-06T08:54:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T08:54:36Z,69.674,-163.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-06T08:54:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-09-06T09:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T09:34:14Z,69.683,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-06T09:34:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-07T09:15:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-07T09:15:50Z,69.816,-163.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-07T09:15:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-08T04:04:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T04:04:27Z,69.678,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-08T04:04:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-08T07:30:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T07:30:16Z,69.693,-163.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-08T07:30:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-09-08T08:44:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T08:44:44Z,69.698,-163.856,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-08T08:44:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-08T09:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T09:20:10Z,69.692,-163.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-08T09:20:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-09-08T10:15:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T10:15:04Z,69.691,-163.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-08T10:15:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-09T01:22:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T01:22:57Z,69.688,-164.088,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-09T01:22:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-09T03:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T03:53:55Z,69.69,-164.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-09T03:53:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-09T04:54:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T04:54:40Z,69.686,-164.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-09T04:54:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-09T07:16:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T07:16:53Z,69.691,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-09T07:16:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-09-09T08:53:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T08:53:14Z,69.694,-164.073,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-09T08:53:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-09-10T02:54:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T02:54:12Z,69.632,-164.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-10T02:54:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-10T03:41:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T03:41:02Z,69.635,-164.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-10T03:41:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-10T05:22:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T05:22:51Z,69.633,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-10T05:22:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-10T07:05:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T07:05:49Z,69.637,-164.14,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-10T07:05:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-10T08:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T08:34:21Z,69.63,-164.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-10T08:34:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-10T11:14:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T11:14:32Z,69.61,-164.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-10T11:14:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-11T00:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T00:34:50Z,69.607,-164.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-11T00:34:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-11T01:19:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T01:19:22Z,69.603,-164.151,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-11T01:19:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-09-11T03:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T03:15:32Z,69.596,-164.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-11T03:15:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-11T04:50:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T04:50:43Z,69.597,-164.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-11T04:50:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-11T05:53:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T05:53:29Z,69.594,-164.211,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-11T05:53:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-11T13:06:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T13:06:36Z,69.602,-164.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-11T13:06:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-11T16:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T16:01:07Z,69.608,-164.16,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-11T16:01:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-11T17:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T17:15:32Z,69.605,-164.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-11T17:15:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-12T07:52:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T07:52:25Z,69.749,-163.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-12T07:52:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-09-12T08:30:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T08:30:40Z,69.752,-163.736,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-12T08:30:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-09-13T06:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T06:34:50Z,70.054,-163.138,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-13T06:34:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-09-13T07:30:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T07:30:20Z,70.041,-163.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-13T07:30:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-09-13T08:13:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T08:13:05Z,70.038,-163.18,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-13T08:13:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-13T19:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T19:02:46Z,70.169,-162.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-13T19:02:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-09-14T20:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T20:33:23Z,70.423,-161.314,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-14T20:33:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-14T22:13:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T22:13:11Z,70.43,-161.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-14T22:13:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-14T23:52:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T23:52:41Z,70.438,-161.263,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-14T23:52:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-15T06:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T06:48:01Z,70.454,-161.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-15T06:48:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-15T07:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T07:42:11Z,70.456,-160.972,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-15T07:42:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-09-17T02:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T02:20:01Z,70.965,-158.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-17T02:20:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-17T23:07:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T23:07:30Z,71.244,-157.374,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-17T23:07:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-18T00:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T00:27:05Z,71.228,-157.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-18T00:27:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-18T15:37:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T15:37:55Z,71.43,-156.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-18T15:37:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-19T01:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T01:03:35Z,71.46,-156.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-19T01:03:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-19T03:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T03:07:01Z,71.478,-156.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-19T03:07:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-20T05:39:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T05:39:40Z,71.198,-154.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-20T05:39:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-09-20T09:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T09:51:31Z,71.122,-154.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-20T09:51:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-20T11:31:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T11:31:18Z,71.055,-154.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-20T11:31:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-09-20T12:45:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T12:45:28Z,71.05,-154.613,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-20T12:45:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-09-20T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T13:02:32Z,71.066,-154.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-20T13:02:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-20T14:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T14:25:16Z,71.094,-154.575,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-20T14:25:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-21T00:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T00:42:11Z,71.356,-156.058,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-21T00:42:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-21T01:28:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T01:28:02Z,71.355,-156.197,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-21T01:28:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-21T04:50:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T04:50:51Z,71.414,-156.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-21T04:50:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-21T06:23:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T06:23:45Z,71.406,-156.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-21T06:23:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-21T09:39:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T09:39:45Z,71.383,-156.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-21T09:39:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-21T10:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T10:55:34Z,71.358,-157.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-21T10:55:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-21T12:58:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T12:58:33Z,71.25,-157.451,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-21T12:58:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-21T17:34:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T17:34:06Z,71.162,-157.974,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-21T17:34:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-09-22T02:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T02:48:06Z,71.154,-158.309,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-22T02:48:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-22T04:49:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T04:49:54Z,71.154,-158.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-22T04:49:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-22T06:09:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T06:09:56Z,71.148,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-22T06:09:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-22T08:05:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T08:05:34Z,71.15,-158.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-22T08:05:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-22T12:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T12:25:31Z,71.156,-158.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-22T12:25:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-22T14:07:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T14:07:32Z,71.165,-158.281,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-22T14:07:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-22T15:37:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T15:37:45Z,71.165,-158.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-22T15:37:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-22T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T16:45:07Z,71.155,-158.327,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-22T16:45:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-22T17:18:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T17:18:10Z,71.151,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-22T17:18:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-23T00:06:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T00:06:34Z,71.157,-158.329,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-23T00:06:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-23T04:08:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T04:08:23Z,71.17,-158.325,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-23T04:08:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-23T12:10:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T12:10:45Z,71.1,-158.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-23T12:10:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-24T05:46:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-24T05:46:01Z,71.152,-158.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-24T05:46:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-25T22:21:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-25T22:21:18Z,70.489,-162.084,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-25T22:21:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-26T01:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T01:23:07Z,70.501,-162.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-26T01:23:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-26T04:47:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T04:47:46Z,70.493,-162.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-26T04:47:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-26T07:14:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T07:14:38Z,70.501,-162.583,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-26T07:14:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-26T08:01:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T08:01:56Z,70.503,-162.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-26T08:01:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-27T01:35:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T01:35:00Z,70.299,-163.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-27T01:35:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-27T02:44:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T02:44:50Z,70.302,-163.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-27T02:44:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-27T04:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T04:27:15Z,70.287,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-27T04:27:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-27T05:24:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T05:24:12Z,70.284,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-27T05:24:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-27T07:07:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T07:07:34Z,70.278,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-27T07:07:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-09-27T09:22:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T09:22:45Z,70.265,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-27T09:22:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-27T15:18:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T15:18:43Z,70.241,-164.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-27T15:18:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-28T00:09:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T00:09:33Z,70.205,-164.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-28T00:09:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-28T02:24:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T02:24:10Z,70.205,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-28T02:24:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-28T03:30:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T03:30:30Z,70.193,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-28T03:30:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-28T04:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T04:11:43Z,70.19,-164.093,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-28T04:11:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-28T05:12:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T05:12:11Z,70.189,-164.112,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-28T05:12:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-09-28T06:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T06:51:08Z,70.178,-164.142,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-28T06:51:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-09-28T07:20:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T07:20:30Z,70.175,-164.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-28T07:20:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-09-28T08:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T08:23:25Z,70.171,-164.156,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-28T08:23:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-28T09:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T09:02:07Z,70.168,-164.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-28T09:02:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-09-29T02:08:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T02:08:12Z,70.133,-164.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-29T02:08:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-29T03:48:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T03:48:43Z,70.122,-164.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-29T03:48:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-09-29T06:44:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T06:44:34Z,70.127,-164.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-29T06:44:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-09-29T07:08:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T07:08:36Z,70.125,-164.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-29T07:08:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-29T08:29:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T08:29:36Z,70.125,-164.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-29T08:29:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-30T00:17:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T00:17:46Z,70.093,-164.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-30T00:17:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-09-30T01:24:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T01:24:34Z,70.098,-164.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-30T01:24:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-09-30T03:05:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T03:05:42Z,70.081,-164.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-30T03:05:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-09-30T04:45:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T04:45:38Z,70.065,-164.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-30T04:45:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-30T05:03:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T05:03:44Z,70.071,-164.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-30T05:03:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-09-30T08:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T08:10:17Z,70.068,-164.452,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-30T08:10:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-09-30T09:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T09:47:02Z,70.068,-164.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-09-30T09:47:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-01T01:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T01:24:18Z,70.099,-164.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-01T01:24:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-01T03:16:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T03:16:13Z,70.108,-164.249,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-01T03:16:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-01T07:58:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T07:58:23Z,70.103,-164.245,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-01T07:58:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-01T08:10:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T08:10:13Z,70.109,-164.226,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-01T08:10:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-01T09:34:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T09:34:35Z,70.116,-164.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-01T09:34:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-01T15:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T15:20:01Z,70.1,-164.269,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-01T15:20:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-02T00:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T00:08:45Z,70.085,-164.296,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-02T00:08:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-02T01:03:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T01:03:21Z,70.09,-164.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-02T01:03:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-02T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T02:41:57Z,70.093,-164.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-02T02:41:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-10-02T04:20:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T04:20:36Z,70.102,-164.29,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-02T04:20:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-02T07:47:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T07:47:49Z,70.078,-164.272,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-02T07:47:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-03T00:31:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T00:31:26Z,70.214,-164.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-03T00:31:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-03T03:56:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T03:56:15Z,70.243,-164.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-03T03:56:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-03T05:35:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T05:35:57Z,70.246,-164.047,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-03T05:35:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-03T07:18:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T07:18:20Z,70.257,-164.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-03T07:18:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-10-03T16:11:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T16:11:31Z,70.152,-164.241,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-03T16:11:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-04T00:21:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T00:21:07Z,70.106,-164.271,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-04T00:21:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-04T03:46:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T03:46:32Z,70.058,-164.335,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-04T03:46:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-04T05:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T05:08:47Z,70.049,-164.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-04T05:08:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-10-04T06:52:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T06:52:55Z,70.022,-164.411,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-04T06:52:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-04T07:22:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T07:22:40Z,70.025,-164.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-04T07:22:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-04T08:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T08:37:00Z,70.025,-164.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-04T08:37:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-05T02:05:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T02:05:06Z,69.916,-164.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-05T02:05:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-05T05:23:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T05:23:51Z,69.875,-164.822,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-05T05:23:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-05T06:29:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T06:29:21Z,69.874,-164.838,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-05T06:29:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-05T07:10:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T07:10:39Z,69.871,-164.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-05T07:10:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-05T08:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T08:12:01Z,69.864,-164.879,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-05T08:12:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-10-06T00:12:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T00:12:18Z,70.011,-164.503,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-06T00:12:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-06T03:34:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T03:34:18Z,70.005,-164.472,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-06T03:34:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-06T04:24:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T04:24:44Z,70.015,-164.462,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-06T04:24:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-10-06T05:14:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T05:14:37Z,70.025,-164.46,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-06T05:14:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-06T06:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T06:06:22Z,70.035,-164.47,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-06T06:06:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-10-06T07:47:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T07:47:10Z,70.04,-164.506,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-06T07:47:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-10-06T08:40:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T08:40:02Z,70.042,-164.547,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-06T08:40:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-07T05:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-07T05:45:00Z,69.87,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-07T05:45:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-08T04:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T04:51:51Z,70.231,-162.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-08T04:51:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-08T05:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T05:14:55Z,70.228,-162.31,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-08T05:14:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-10-08T06:31:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T06:31:25Z,70.245,-162.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-08T06:31:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-08T19:32:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T19:32:32Z,70.484,-162.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-08T19:32:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-08T20:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T20:42:54Z,70.461,-162.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-08T20:42:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-09T00:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T00:33:11Z,70.499,-162.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-09T00:33:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-09T02:57:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T02:57:24Z,70.503,-162.627,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-09T02:57:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-09T03:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T03:12:01Z,70.512,-162.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-09T03:12:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-09T04:54:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T04:54:13Z,70.513,-162.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-09T04:54:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-09T06:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T06:23:07Z,70.516,-162.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-09T06:23:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-10-09T17:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T17:01:07Z,70.451,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-09T17:01:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-09T20:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T20:17:48Z,70.433,-163.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-09T20:17:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-10-10T00:31:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T00:31:49Z,70.374,-164.024,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-10T00:31:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-10T01:35:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T01:35:53Z,70.354,-164.042,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-10T01:35:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-10-10T02:45:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T02:45:29Z,70.345,-164.066,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-10T02:45:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-10T04:24:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T04:24:13Z,70.322,-164.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-10T04:24:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-10-10T06:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T06:07:55Z,70.285,-164.118,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-10T06:07:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-10-10T07:51:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T07:51:45Z,70.289,-164.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-10T07:51:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-10-10T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T13:02:32Z,70.22,-164.256,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-10T13:02:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-11T01:54:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T01:54:17Z,70.067,-164.33,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-11T01:54:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-11T02:30:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T02:30:02Z,70.066,-164.356,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-11T02:30:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-11T04:12:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T04:12:50Z,70.052,-164.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-11T04:12:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-10-11T05:47:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T05:47:36Z,70.031,-164.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-11T05:47:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-10-11T06:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T06:10:17Z,70.02,-164.41,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-11T06:10:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-12T00:31:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T00:31:30Z,70.074,-164.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-12T00:31:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-12T03:44:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T03:44:13Z,70.051,-164.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-12T03:44:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-12T05:21:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T05:21:13Z,70.041,-164.377,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-12T05:21:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-10-12T07:02:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T07:02:37Z,70.048,-164.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-12T07:02:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-13T00:29:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T00:29:13Z,69.979,-164.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-13T00:29:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-13T01:46:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T01:46:11Z,69.968,-164.814,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-13T01:46:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-10-13T03:53:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T03:53:43Z,69.942,-164.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-13T03:53:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-13T05:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T05:33:21Z,69.93,-164.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-13T05:33:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-13T12:28:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T12:28:12Z,69.869,-165.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-13T12:28:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-13T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T15:51:15Z,69.895,-165.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-13T15:51:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-13T17:41:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T17:41:36Z,69.903,-165.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-13T17:41:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-13T18:37:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T18:37:53Z,69.912,-165.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-13T18:37:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-14T00:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T00:15:05Z,69.995,-165.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-14T00:15:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-14T01:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T01:51:13Z,70.005,-165.735,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-14T01:51:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-14T03:36:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T03:36:45Z,70.009,-165.849,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-14T03:36:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-14T05:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T05:08:51Z,70.012,-165.922,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-14T05:08:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-14T06:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T06:48:13Z,70.025,-165.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-14T06:48:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-14T07:04:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T07:04:21Z,70.028,-165.887,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-14T07:04:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-14T08:00:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T08:00:16Z,70.035,-165.863,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-14T08:00:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-10-15T00:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T00:07:48Z,69.941,-166.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-15T00:07:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-15T04:10:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T04:10:52Z,69.867,-165.936,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-15T04:10:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-10-15T05:07:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T05:07:23Z,69.847,-165.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-15T05:07:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-10-15T13:50:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T13:50:42Z,69.651,-165.808,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-15T13:50:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-15T14:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T14:59:21Z,69.622,-165.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-15T14:59:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-15T16:15:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T16:15:03Z,69.601,-165.888,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-15T16:15:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-15T20:36:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T20:36:05Z,69.487,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-15T20:36:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-16T02:07:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T02:07:56Z,69.351,-165.798,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-16T02:07:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-16T04:57:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T04:57:44Z,69.328,-165.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-16T04:57:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-16T11:27:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T11:27:46Z,69.279,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-16T11:27:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-16T12:04:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T12:04:10Z,69.272,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-16T12:04:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-17T01:47:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T01:47:12Z,68.941,-165.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-17T01:47:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-17T03:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T03:04:22Z,68.898,-165.539,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-17T03:04:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-17T04:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T04:12:46Z,68.866,-165.455,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-17T04:12:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-17T05:46:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T05:46:28Z,68.863,-165.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-17T05:46:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-17T06:46:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T06:46:05Z,68.871,-165.252,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-17T06:46:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-10-17T07:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T07:27:15Z,68.884,-165.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-17T07:27:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-17T08:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T08:09:30Z,68.885,-165.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-17T08:09:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-17T09:08:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T09:08:13Z,68.893,-165.231,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-17T09:08:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-18T21:06:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T21:06:28Z,68.395,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-18T21:06:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-18T23:21:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T23:21:47Z,68.392,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-18T23:21:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-19T00:09:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T00:09:54Z,68.385,-167.24,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-19T00:09:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-19T01:03:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T01:03:52Z,68.377,-167.28,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-19T01:03:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-19T03:30:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T03:30:48Z,68.342,-167.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-19T03:30:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-19T05:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T05:04:51Z,68.318,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-19T05:04:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-19T06:45:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T06:45:16Z,68.309,-167.398,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-19T06:45:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-19T07:40:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T07:40:46Z,68.318,-167.434,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-19T07:40:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-10-19T08:27:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T08:27:16Z,68.339,-167.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-19T08:27:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-19T10:08:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T10:08:31Z,68.37,-167.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-19T10:08:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-20T01:26:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T01:26:36Z,68.15,-167.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-20T01:26:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-20T04:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T04:50:52Z,68.076,-167.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-20T04:50:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-20T05:33:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T05:33:55Z,68.064,-167.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-20T05:33:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-20T11:17:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T11:17:40Z,67.946,-167.876,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-20T11:17:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-20T14:04:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T14:04:09Z,67.909,-167.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-20T14:04:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-20T17:55:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T17:55:10Z,67.855,-167.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-20T17:55:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-21T03:58:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T03:58:17Z,67.717,-167.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-21T03:58:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-21T04:29:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T04:29:40Z,67.728,-167.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-21T04:29:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-21T05:13:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T05:13:37Z,67.724,-167.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-21T05:13:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-10-21T06:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T06:51:07Z,67.732,-167.295,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-21T06:51:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-10-21T07:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T07:44:22Z,67.745,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-21T07:44:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-22T01:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T01:33:11Z,67.601,-166.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-22T01:33:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-22T04:07:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T04:07:00Z,67.551,-166.32,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-22T04:07:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-22T13:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T13:41:00Z,67.3,-165.916,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-22T13:41:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-22T20:56:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T20:56:49Z,67.154,-165.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-22T20:56:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-23T00:17:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T00:17:27Z,67.12,-165.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-23T00:17:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-23T01:27:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T01:27:33Z,67.106,-165.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-23T01:27:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-23T02:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T02:46:02Z,67.096,-165.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-23T02:46:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-23T05:13:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T05:13:14Z,67.072,-165.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-23T05:13:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-23T06:03:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T06:03:39Z,67.082,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-23T06:03:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-24T00:14:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T00:14:18Z,67.135,-166.069,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-24T00:14:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-24T01:40:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T01:40:00Z,67.149,-166.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-24T01:40:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-24T03:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T03:59:21Z,67.179,-166.179,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-24T03:59:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-24T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T04:03:01Z,67.183,-166.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-24T04:03:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-24T05:02:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T05:02:59Z,67.195,-166.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-24T05:02:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-24T12:16:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T12:16:22Z,67.244,-166.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-24T12:16:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-24T13:58:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T13:58:42Z,67.252,-166.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-24T13:58:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-24T15:58:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T15:58:38Z,67.239,-166.601,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-24T15:58:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-24T17:41:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T17:41:20Z,67.243,-166.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-24T17:41:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-25T01:59:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T01:59:27Z,67.167,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-25T01:59:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-25T02:04:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T02:04:07Z,67.161,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-25T02:04:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-25T18:53:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T18:53:48Z,67.255,-167.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-25T18:53:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-25T20:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T20:20:10Z,67.281,-167.424,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-25T20:20:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-25T22:00:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T22:00:30Z,67.316,-167.414,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-25T22:00:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-26T03:16:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T03:16:10Z,67.423,-167.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-26T03:16:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-26T06:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T06:38:11Z,67.456,-167.288,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-26T06:38:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-26T15:15:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T15:15:42Z,67.689,-166.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-26T15:15:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-26T16:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T16:21:25Z,67.702,-167.015,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-26T16:21:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-10-27T00:43:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T00:43:29Z,67.855,-167.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-27T00:43:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-27T01:08:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T01:08:00Z,67.877,-167.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-27T01:08:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T02:24:24Z,67.911,-167.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-27T02:24:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-27T04:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T04:22:30Z,67.893,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-27T04:22:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-27T06:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T06:07:52Z,67.903,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-27T06:07:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-27T11:42:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T11:42:26Z,67.942,-167.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-27T11:42:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-27T12:47:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T12:47:55Z,67.958,-167.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-27T12:47:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-28T00:32:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T00:32:30Z,67.955,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-28T00:32:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2011-10-28T01:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T01:10:36Z,67.958,-167.426,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-28T01:10:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-28T02:15:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T02:15:46Z,67.979,-167.466,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-28T02:15:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2011-10-28T07:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T07:36:02Z,67.951,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-28T07:36:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-28T13:13:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T13:13:21Z,67.974,-167.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-28T13:13:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-10-29T00:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T00:18:22Z,68.211,-167.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-29T00:18:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-10-29T03:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T03:45:00Z,68.267,-167.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-29T03:45:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-29T04:03:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T04:03:31Z,68.278,-167.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-29T04:03:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-29T14:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T14:04:36Z,68.562,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-29T14:04:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-29T15:41:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T15:41:17Z,68.553,-167.233,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-29T15:41:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-29T16:26:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T16:26:40Z,68.554,-167.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-29T16:26:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-29T17:30:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T17:30:38Z,68.544,-167.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-29T17:30:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-29T18:56:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T18:56:52Z,68.552,-167.216,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-29T18:56:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-10-29T19:08:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T19:08:41Z,68.545,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-29T19:08:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-30T00:10:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T00:10:15Z,68.564,-167.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-30T00:10:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2011-10-30T01:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T01:54:43Z,68.558,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-30T01:54:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2011-10-30T02:10:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T02:10:32Z,68.557,-167.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-30T02:10:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-30T03:03:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T03:03:04Z,68.553,-167.205,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-30T03:03:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2011-10-30T04:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T04:37:00Z,68.556,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-30T04:37:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-10-30T05:28:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T05:28:22Z,68.547,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-30T05:28:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-30T06:23:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T06:23:03Z,68.55,-167.157,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-30T06:23:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-30T07:58:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T07:58:32Z,68.552,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-30T07:58:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-30T09:44:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T09:44:16Z,68.552,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-30T09:44:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-10-31T00:39:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T00:39:24Z,68.555,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-31T00:39:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-31T01:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T01:41:26Z,68.561,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-31T01:41:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-31T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T02:41:57Z,68.564,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-31T02:41:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-10-31T03:36:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T03:36:34Z,68.567,-167.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-31T03:36:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-31T04:34:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T04:34:07Z,68.557,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-31T04:34:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-10-31T05:17:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T05:17:26Z,68.558,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-31T05:17:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-31T06:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T06:18:36Z,68.543,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-31T06:18:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-31T07:38:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T07:38:19Z,68.537,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-31T07:38:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-10-31T08:00:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T08:00:31Z,68.531,-167.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-31T08:00:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-10-31T09:18:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T09:18:59Z,68.531,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-10-31T09:18:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-01T00:49:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T00:49:31Z,68.563,-167.166,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-01T00:49:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-11-01T01:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T01:30:26Z,68.548,-167.192,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-01T01:30:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-01T02:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T02:07:01Z,68.544,-167.15,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-01T02:07:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-01T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T04:03:01Z,68.541,-167.124,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-01T04:03:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-01T05:07:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T05:07:25Z,68.535,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-01T05:07:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 3 records. +ioos_atn_38553_2011-11-01T06:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T06:44:12Z,68.519,-167.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-01T06:44:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-01T07:15:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T07:15:10Z,68.523,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-01T07:15:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-01T08:56:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T08:56:10Z,68.512,-167.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-01T08:56:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-02T00:19:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T00:19:00Z,68.555,-167.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-02T00:19:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-11-02T01:21:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T01:21:14Z,68.559,-167.128,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-02T01:21:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-02T02:04:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T02:04:06Z,68.557,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-02T02:04:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-02T03:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T03:41:30Z,68.55,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-02T03:41:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-02T05:26:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T05:26:25Z,68.533,-167.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-02T05:26:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-02T06:33:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T06:33:41Z,68.534,-167.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-02T06:33:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-02T12:22:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T12:22:54Z,68.506,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-02T12:22:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-02T15:07:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T15:07:44Z,68.515,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-02T15:07:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-11-03T03:03:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T03:03:09Z,68.518,-166.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-03T03:03:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-03T05:00:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T05:00:07Z,68.505,-166.944,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-03T05:00:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-03T08:22:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T08:22:18Z,68.502,-166.966,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-03T08:22:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-03T12:11:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T12:11:58Z,68.495,-166.984,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-03T12:11:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-03T13:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T13:13:56Z,68.492,-166.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-03T13:13:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-03T14:57:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T14:57:05Z,68.502,-166.961,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-03T14:57:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-03T15:21:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T15:21:31Z,68.505,-166.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-03T15:21:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-04T01:20:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T01:20:28Z,68.5,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-04T01:20:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-04T02:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T02:49:16Z,68.506,-167.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-04T02:49:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-04T03:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T03:03:00Z,68.507,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-04T03:03:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-04T04:42:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T04:42:32Z,68.512,-166.995,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-04T04:42:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2011-11-04T07:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T07:53:27Z,68.489,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-04T07:53:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-04T13:08:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T13:08:43Z,68.508,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-04T13:08:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-05T00:47:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T00:47:53Z,68.532,-167.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-05T00:47:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2011-11-05T02:31:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T02:31:45Z,68.527,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-05T02:31:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-05T04:21:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T04:21:16Z,68.522,-167.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-05T04:21:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-11-05T06:00:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T06:00:43Z,68.525,-167.079,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-05T06:00:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-05T07:38:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T07:38:23Z,68.545,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-05T07:38:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-05T13:31:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T13:31:47Z,68.543,-167.104,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-05T13:31:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-06T00:26:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T00:26:03Z,68.531,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-06T00:26:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-06T01:18:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T01:18:01Z,68.528,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-06T01:18:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-06T02:17:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T02:17:38Z,68.529,-167.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-06T02:17:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-11-06T03:54:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T03:54:20Z,68.527,-167.007,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-06T03:54:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-11-06T05:34:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T05:34:44Z,68.54,-166.992,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-06T05:34:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2011-11-07T00:21:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T00:21:54Z,68.542,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-07T00:21:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-07T01:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T01:11:39Z,68.54,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-07T01:11:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-11-07T02:03:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T02:03:24Z,68.538,-167.11,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-07T02:03:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-07T03:31:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T03:31:15Z,68.537,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-07T03:31:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-07T05:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T05:06:09Z,68.54,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-07T05:06:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-11-07T06:52:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T06:52:10Z,68.522,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-07T06:52:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-11-07T07:16:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T07:16:55Z,68.536,-167.129,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-07T07:16:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-11-07T14:13:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T14:13:12Z,68.534,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-07T14:13:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-08T00:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T00:08:55Z,68.637,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-08T00:08:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-08T11:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T11:18:22Z,68.545,-167.23,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-08T11:18:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-08T13:58:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T13:58:34Z,68.538,-167.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-08T13:58:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-08T15:40:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T15:40:34Z,68.545,-167.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-08T15:40:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-08T16:20:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T16:20:51Z,68.542,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-08T16:20:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-11-09T00:55:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T00:55:21Z,68.524,-167.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-09T00:55:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-09T02:45:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T02:45:22Z,68.516,-167.011,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-09T02:45:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-09T04:16:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T04:16:37Z,68.511,-167.021,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-09T04:16:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-09T12:49:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T12:49:01Z,68.53,-167.051,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-09T12:49:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-11-10T02:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T02:12:01Z,68.526,-166.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-10T02:12:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-10T03:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T03:50:53Z,68.527,-166.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-10T03:50:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-11-10T04:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T04:14:13Z,68.532,-166.84,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-10T04:14:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-10T06:36:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T06:36:46Z,68.562,-166.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-10T06:36:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-10T12:38:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T12:38:15Z,68.584,-166.796,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-10T12:38:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-10T13:38:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T13:38:05Z,68.594,-166.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-10T13:38:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-11T00:04:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T00:04:33Z,68.513,-167.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-11T00:04:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-11-11T01:22:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T01:22:13Z,68.512,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-11T01:22:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-11T03:04:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T03:04:40Z,68.517,-167.127,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-11T03:04:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 5 records. +ioos_atn_38553_2011-11-11T04:47:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T04:47:26Z,68.507,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-11T04:47:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-11T05:15:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T05:15:35Z,68.508,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-11T05:15:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-11T06:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T06:24:38Z,68.509,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-11T06:24:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-11T10:46:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T10:46:03Z,68.494,-167.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-11T10:46:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-11T12:28:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T12:28:51Z,68.497,-167.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-11T12:28:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-11T13:48:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T13:48:03Z,68.496,-167.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-11T13:48:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-11-12T00:14:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T00:14:16Z,68.513,-167.035,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-12T00:14:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-12T01:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T01:51:15Z,68.51,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-12T01:51:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2011-11-12T02:53:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T02:53:05Z,68.502,-167.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-12T02:53:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-12T03:00:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T03:00:15Z,68.506,-167.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-12T03:00:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-12T04:37:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T04:37:04Z,68.493,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-12T04:37:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-12T05:14:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T05:14:29Z,68.495,-167.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-12T05:14:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-12T06:39:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T06:39:34Z,68.482,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-12T06:39:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-12T12:15:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T12:15:49Z,68.492,-166.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-12T12:15:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-12T13:19:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T13:19:17Z,68.496,-167.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-12T13:19:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-13T00:56:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T00:56:40Z,68.446,-167.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-13T00:56:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-11-13T02:41:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T02:41:45Z,68.465,-167.107,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-13T02:41:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-13T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T04:31:07Z,68.485,-167.125,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-13T04:31:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-13T06:16:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T06:16:01Z,68.486,-167.114,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-13T06:16:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-13T13:05:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T13:05:22Z,68.499,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-13T13:05:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-14T00:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T00:34:21Z,68.505,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-14T00:34:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_38553_2011-11-14T01:13:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T01:13:40Z,68.546,-167.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-14T01:13:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-14T02:53:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T02:53:11Z,68.493,-167.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-14T02:53:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. +ioos_atn_38553_2011-11-14T03:54:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T03:54:41Z,68.48,-167.147,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-14T03:54:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-11-14T04:07:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T04:07:41Z,68.482,-167.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-14T04:07:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-11-14T05:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T05:50:11Z,68.473,-167.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-14T05:50:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-11-15T00:49:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T00:49:43Z,68.424,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-15T00:49:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. +ioos_atn_38553_2011-11-15T01:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T01:50:53Z,68.423,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-15T01:50:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-15T02:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T02:04:51Z,68.425,-167.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-15T02:04:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_38553_2011-11-15T03:28:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T03:28:37Z,68.432,-166.999,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-15T03:28:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-15T04:00:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T04:00:52Z,68.432,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-15T04:00:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-11-15T05:22:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T05:22:37Z,68.424,-166.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-15T05:22:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-16T00:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T00:28:23Z,68.299,-167.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-16T00:28:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2011-11-16T01:41:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T01:41:08Z,68.286,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-16T01:41:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-11-16T02:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T02:08:08Z,68.278,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-16T02:08:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-11-16T03:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T03:05:08Z,68.264,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-16T03:05:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_38553_2011-11-16T04:46:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T04:46:23Z,68.245,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-16T04:46:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-16T05:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T05:28:23Z,68.236,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-16T05:28:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-17T00:17:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T00:17:08Z,68.224,-166.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-17T00:17:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-11-17T01:02:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T01:02:08Z,68.228,-166.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-17T01:02:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 5 records. +ioos_atn_38553_2011-11-17T02:00:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T02:00:38Z,68.233,-166.718,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-17T02:00:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-11-17T03:36:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T03:36:38Z,68.243,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-17T03:36:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-11-17T04:23:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T04:23:08Z,68.248,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-17T04:23:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-17T05:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T05:14:53Z,68.258,-166.738,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-17T05:14:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-11-18T01:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T01:28:50Z,68.306,-166.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-18T01:28:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-18T07:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T07:36:04Z,68.384,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-18T07:36:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-18T08:05:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T08:05:29Z,68.391,-166.985,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-18T08:05:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-18T13:53:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T13:53:49Z,68.496,-167.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-18T13:53:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-19T00:10:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T00:10:25Z,68.53,-167.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-19T00:10:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-11-19T01:33:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T01:33:40Z,68.534,-167.099,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-19T01:33:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-11-19T02:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T02:49:55Z,68.539,-167.109,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-19T02:49:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-11-19T03:50:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T03:50:10Z,68.535,-167.116,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-19T03:50:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-11-19T04:29:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T04:29:10Z,68.536,-167.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-19T04:29:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-11-19T05:27:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T05:27:40Z,68.539,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-19T05:27:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-19T06:09:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T06:09:40Z,68.539,-167.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-19T06:09:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-11-20T00:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T00:24:38Z,68.479,-167.137,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-20T00:24:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-20T01:30:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T01:30:31Z,68.474,-167.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-20T01:30:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2011-11-20T02:29:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T02:29:01Z,68.468,-167.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-20T02:29:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-20T03:09:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T03:09:04Z,68.457,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-20T03:09:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_38553_2011-11-20T04:09:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T04:09:31Z,68.449,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-20T04:09:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-11-20T05:06:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T05:06:31Z,68.441,-167.208,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-20T05:06:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-11-20T06:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T06:23:01Z,68.429,-167.228,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-20T06:23:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-11-21T00:18:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T00:18:08Z,68.16,-167.554,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-21T00:18:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-11-21T01:05:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T01:05:19Z,68.139,-167.544,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-21T01:05:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-11-21T02:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T02:49:15Z,68.069,-167.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-21T02:49:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-11-21T03:02:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T03:02:50Z,68.074,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-21T03:02:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-21T04:24:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T04:24:37Z,68.052,-167.492,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-21T04:24:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-11-21T05:27:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T05:27:37Z,68.041,-167.473,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-21T05:27:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-11-21T06:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T06:11:43Z,68.032,-167.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-21T06:11:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-11-22T01:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T01:03:51Z,67.684,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-22T01:03:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-11-22T10:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T10:30:26Z,67.427,-167.284,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-22T10:30:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-22T12:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T12:14:14Z,67.366,-167.285,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-22T12:14:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-22T13:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T13:07:52Z,67.339,-167.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-22T13:07:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-11-23T01:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T01:53:55Z,67.016,-167.791,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-23T01:53:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-11-23T07:14:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T07:14:50Z,66.906,-168.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-23T07:14:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-23T08:02:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T08:02:51Z,66.896,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-23T08:02:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-23T17:49:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T17:49:44Z,66.766,-168.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-23T17:49:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-24T00:39:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T00:39:05Z,66.653,-168.85,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-24T00:39:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-24T03:14:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T03:14:05Z,66.6,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-24T03:14:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-11-24T05:09:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T05:09:53Z,66.566,-168.81,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-24T05:09:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-24T14:29:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T14:29:57Z,66.385,-168.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-24T14:29:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-24T15:15:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T15:15:58Z,66.374,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-24T15:15:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-24T16:09:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T16:09:35Z,66.366,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-24T16:09:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-25T05:18:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T05:18:45Z,66.018,-168.025,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-25T05:18:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-25T14:46:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T14:46:54Z,65.697,-168.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-25T14:46:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-25T20:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T20:07:55Z,65.456,-168.587,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-25T20:07:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-26T00:18:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T00:18:17Z,65.406,-168.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-26T00:18:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-26T01:46:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T01:46:57Z,65.381,-168.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-26T01:46:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-26T02:42:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T02:42:07Z,65.358,-168.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-26T02:42:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-26T07:00:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T07:00:48Z,65.295,-168.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-26T07:00:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-11-26T08:38:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T08:38:37Z,65.263,-168.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-26T08:38:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-26T14:10:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T14:10:09Z,65.179,-168.572,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-26T14:10:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-11-27T00:17:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T00:17:18Z,65.063,-168.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-27T00:17:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-27T03:18:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T03:18:46Z,65.025,-168.737,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-27T03:18:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2011-11-27T04:58:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T04:58:58Z,65.006,-168.73,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-27T04:58:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-11-27T06:35:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T06:35:04Z,64.98,-168.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-27T06:35:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-27T07:25:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T07:25:15Z,64.965,-168.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-27T07:25:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-27T11:23:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T11:23:35Z,64.918,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-27T11:23:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-28T00:47:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T00:47:32Z,64.739,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-28T00:47:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-28T01:36:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T01:36:15Z,64.732,-168.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-28T01:36:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-28T03:09:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T03:09:49Z,64.695,-168.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-28T03:09:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-11-28T06:59:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T06:59:22Z,64.626,-168.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-28T06:59:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-28T18:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T18:33:22Z,64.443,-168.394,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-28T18:33:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-11-29T00:36:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T00:36:13Z,64.302,-168.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-29T00:36:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-29T04:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T04:51:13Z,64.227,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-29T04:51:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-29T06:39:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T06:39:41Z,64.196,-168.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-29T06:39:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-29T07:58:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T07:58:16Z,64.17,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-29T07:58:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-11-29T13:34:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T13:34:05Z,64.073,-168.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-29T13:34:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-29T15:14:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T15:14:35Z,64.044,-168.463,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-29T15:14:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-29T16:02:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T16:02:17Z,64.035,-168.495,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-29T16:02:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-29T18:21:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T18:21:52Z,64.005,-168.469,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-29T18:21:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-30T02:21:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T02:21:35Z,63.893,-168.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-30T02:21:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-11-30T12:30:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T12:30:14Z,63.714,-168.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-30T12:30:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-11-30T15:03:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T15:03:02Z,63.643,-168.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-30T15:03:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-11-30T18:18:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T18:18:19Z,63.552,-168.513,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-30T18:18:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-11-30T19:49:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T19:49:53Z,63.519,-168.487,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-11-30T19:49:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-12-01T00:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T00:52:15Z,63.38,-168.373,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-01T00:52:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-01T05:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T05:51:46Z,63.179,-168.261,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-01T05:51:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-01T08:42:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T08:42:24Z,63.044,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-01T08:42:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-01T13:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T13:12:37Z,62.941,-168.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-01T13:12:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-01T15:52:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T15:52:12Z,62.919,-168.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-01T15:52:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-12-01T23:57:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T23:57:47Z,62.886,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-01T23:57:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-02T02:41:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T02:41:10Z,62.855,-168.823,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-02T02:41:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-02T12:10:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T12:10:31Z,62.793,-169.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-02T12:10:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-02T13:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T13:03:01Z,62.792,-169.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-02T13:03:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-12-04T02:11:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T02:11:24Z,62.72,-170.217,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-04T02:11:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-12-04T03:33:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T03:33:19Z,62.722,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-04T03:33:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-04T04:11:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T04:11:49Z,62.718,-170.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-04T04:11:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-04T05:15:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T05:15:15Z,62.704,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-04T05:15:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-04T07:32:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T07:32:57Z,62.685,-170.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-04T07:32:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-04T11:49:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T11:49:08Z,62.684,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-04T11:49:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-05T04:10:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T04:10:22Z,62.475,-170.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-05T04:10:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-05T05:56:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T05:56:27Z,62.449,-169.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-05T05:56:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-05T07:14:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T07:14:31Z,62.452,-169.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-05T07:14:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-05T12:27:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T12:27:54Z,62.461,-169.869,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-05T12:27:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-05T13:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T13:17:30Z,62.462,-169.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-05T13:17:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-05T17:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T17:27:05Z,62.471,-169.864,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-05T17:27:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-05T18:49:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T18:49:00Z,62.477,-169.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-05T18:49:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-06T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T00:07:45Z,62.519,-169.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-06T00:07:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-06T01:01:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T01:01:45Z,62.513,-169.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-06T01:01:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-12-06T03:16:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T03:16:45Z,62.499,-169.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-06T03:16:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-12-06T05:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T05:17:30Z,62.479,-169.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-06T05:17:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-07T00:45:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T00:45:17Z,62.354,-170.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-07T00:45:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-07T01:18:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T01:18:04Z,62.351,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-07T01:18:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-07T03:23:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T03:23:10Z,62.349,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-07T03:23:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-07T05:02:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T05:02:23Z,62.372,-170.365,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-07T05:02:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-08T00:53:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T00:53:34Z,62.565,-170.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-08T00:53:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-08T02:19:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T02:19:55Z,62.578,-170.512,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-08T02:19:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-08T04:17:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T04:17:23Z,62.605,-170.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-08T04:17:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-08T06:05:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T06:05:35Z,62.628,-170.493,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-08T06:05:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-08T09:33:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T09:33:01Z,62.668,-170.441,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-08T09:33:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-08T13:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T13:38:11Z,62.737,-170.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-08T13:38:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-08T14:26:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T14:26:58Z,62.75,-170.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-08T14:26:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-08T16:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T16:08:08Z,62.792,-170.382,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-08T16:08:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-09T00:58:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T00:58:03Z,62.87,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-09T00:58:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-12-09T01:15:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T01:15:18Z,62.872,-170.221,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-09T01:15:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-09T02:09:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T02:09:18Z,62.869,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-09T02:09:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_38553_2011-12-09T03:07:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T03:07:47Z,62.835,-170.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-09T03:07:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-09T06:03:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T06:03:34Z,62.869,-170.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-09T06:03:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-09T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T09:11:19Z,62.882,-170.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-09T09:11:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-10T00:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T00:23:25Z,62.835,-169.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-10T00:23:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-10T05:29:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T05:29:56Z,62.804,-169.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-10T05:29:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-12-10T07:25:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T07:25:51Z,62.799,-169.45,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-10T07:25:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-12-10T08:48:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T08:48:37Z,62.815,-169.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-10T08:48:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-10T14:57:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T14:57:43Z,62.838,-169.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-10T14:57:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-10T18:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T18:44:22Z,62.868,-169.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-10T18:44:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-11T03:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T03:48:13Z,62.882,-168.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-11T03:48:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-11T04:41:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T04:41:21Z,62.878,-168.76,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-11T04:41:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-11T05:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T05:09:51Z,62.879,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-11T05:09:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-12-11T06:49:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T06:49:21Z,62.894,-168.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-11T06:49:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-11T07:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T07:14:06Z,62.902,-168.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-11T07:14:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-11T08:29:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T08:29:51Z,62.926,-168.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-11T08:29:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-12-12T01:32:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T01:32:39Z,62.881,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-12T01:32:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-12T04:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T04:17:48Z,62.847,-168.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-12T04:17:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-12T13:44:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T13:44:07Z,62.782,-168.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-12T13:44:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-12T14:37:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T14:37:47Z,62.788,-168.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-12T14:37:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-12T16:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T16:19:26Z,62.788,-168.416,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-12T16:19:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-13T00:07:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T00:07:18Z,62.791,-168.267,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-13T00:07:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-13T06:06:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T06:06:00Z,62.77,-168.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-13T06:06:00Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-13T07:45:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T07:45:47Z,62.773,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-13T07:45:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-13T13:37:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T13:37:40Z,62.758,-168.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-13T13:37:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-13T15:52:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T15:52:11Z,62.753,-168.224,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-13T15:52:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-14T00:22:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T00:22:02Z,62.798,-168.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-14T00:22:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-12-14T01:37:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T01:37:23Z,62.795,-168.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-14T01:37:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-12-14T02:33:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T02:33:24Z,62.806,-168.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-14T02:33:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-12-14T03:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T03:14:14Z,62.804,-168.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-14T03:14:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-12-15T03:02:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T03:02:30Z,62.669,-168.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-15T03:02:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-15T04:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T04:44:22Z,62.654,-168.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-15T04:44:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-12-15T14:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T14:04:22Z,62.506,-168.846,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-15T14:04:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-15T15:46:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T15:46:04Z,62.471,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-15T15:46:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-15T16:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T16:46:02Z,62.468,-168.87,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-15T16:46:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-16T04:49:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T04:49:26Z,62.326,-169.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-16T04:49:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-16T11:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T11:22:07Z,62.316,-169.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-16T11:22:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-16T15:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T15:34:14Z,62.311,-169.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-16T15:34:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-16T16:17:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T16:17:29Z,62.314,-169.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-16T16:17:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-16T18:01:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T18:01:02Z,62.307,-169.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-16T18:01:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2011-12-17T00:46:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T00:46:09Z,62.254,-169.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-17T00:46:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-17T12:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T12:51:46Z,62.205,-170.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-17T12:51:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-17T14:33:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T14:33:25Z,62.245,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-17T14:33:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-17T18:42:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T18:42:06Z,62.309,-170.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-17T18:42:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-17T19:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T19:49:15Z,62.332,-170.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-17T19:49:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-12-17T21:31:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T21:31:14Z,62.351,-170.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-17T21:31:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-18T03:31:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T03:31:59Z,62.398,-170.479,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-18T03:31:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-18T04:03:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T04:03:55Z,62.395,-170.483,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-18T04:03:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-12-18T07:42:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T07:42:35Z,62.398,-170.496,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-18T07:42:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-12-18T16:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T16:50:28Z,62.437,-170.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-18T16:50:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-19T03:03:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T03:03:58Z,62.519,-170.797,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-19T03:03:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-19T05:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T05:18:36Z,62.522,-170.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-19T05:18:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2011-12-19T07:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T07:08:47Z,62.522,-170.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-19T07:08:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-20T04:56:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T04:56:42Z,62.438,-170.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-20T04:56:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-12-20T05:28:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T05:28:27Z,62.436,-170.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-20T05:28:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-20T06:45:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T06:45:42Z,62.428,-170.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-20T06:45:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-12-20T07:02:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T07:02:57Z,62.429,-170.803,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-20T07:02:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-12-20T08:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T08:44:12Z,62.435,-170.816,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-20T08:44:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-12-21T00:44:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T00:44:43Z,62.52,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-21T00:44:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-21T01:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T01:17:50Z,62.525,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-21T01:17:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2011-12-21T02:32:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T02:32:53Z,62.535,-170.766,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-21T02:32:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-12-21T03:31:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T03:31:23Z,62.537,-170.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-21T03:31:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2011-12-21T04:33:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T04:33:38Z,62.531,-170.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-21T04:33:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-12-21T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T05:10:23Z,62.529,-170.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-21T05:10:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2011-12-21T06:20:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T06:20:53Z,62.526,-170.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-21T06:20:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-22T00:36:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T00:36:01Z,62.482,-170.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-22T00:36:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-22T04:08:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T04:08:59Z,62.41,-170.78,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-22T04:08:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2011-12-22T05:49:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T05:49:11Z,62.405,-170.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-22T05:49:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-22T09:42:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T09:42:44Z,62.309,-170.807,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-22T09:42:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-22T14:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T14:25:59Z,62.274,-170.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-22T14:25:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2011-12-23T00:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T00:33:21Z,62.232,-171.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-23T00:33:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-23T01:30:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T01:30:22Z,62.198,-171.159,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-23T01:30:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-23T03:45:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T03:45:10Z,62.17,-171.209,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-23T03:45:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-23T07:15:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T07:15:13Z,62.11,-171.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-23T07:15:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-12-23T20:15:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T20:15:19Z,61.942,-171.594,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-23T20:15:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-23T21:25:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T21:25:39Z,61.912,-171.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-23T21:25:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-25T16:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T16:01:01Z,61.638,-171.144,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-25T16:01:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-25T21:49:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T21:49:25Z,61.515,-171.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-25T21:49:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-26T03:17:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T03:17:34Z,61.414,-171.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-26T03:17:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-26T04:13:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T04:13:26Z,61.386,-171.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-26T04:13:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-26T05:49:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T05:49:13Z,61.346,-171.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-26T05:49:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-26T23:44:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T23:44:51Z,61.145,-171.634,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-26T23:44:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-27T01:27:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T01:27:56Z,61.141,-171.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-27T01:27:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-27T14:29:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T14:29:22Z,60.937,-171.847,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-27T14:29:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-28T05:08:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T05:08:52Z,60.725,-171.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-28T05:08:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-28T12:39:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T12:39:46Z,60.671,-171.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-28T12:39:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-28T14:27:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T14:27:22Z,60.702,-171.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-28T14:27:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-28T15:05:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T15:05:41Z,60.719,-171.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-28T15:05:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-28T16:00:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T16:00:46Z,60.763,-171.793,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-28T16:00:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-29T06:59:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T06:59:09Z,61.111,-171.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-29T06:59:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-29T12:28:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T12:28:13Z,61.136,-171.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-29T12:28:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-29T14:51:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T14:51:39Z,61.139,-171.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-29T14:51:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-29T17:51:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T17:51:14Z,61.154,-171.722,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-29T17:51:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-30T00:47:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T00:47:08Z,61.156,-171.929,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-30T00:47:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-30T03:43:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T03:43:02Z,61.181,-171.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-30T03:43:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-30T14:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T14:42:52Z,61.118,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-30T14:42:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-31T00:38:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T00:38:33Z,61.106,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-31T00:38:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2011-12-31T01:45:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T01:45:02Z,61.099,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-31T01:45:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2011-12-31T02:25:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T02:25:55Z,61.071,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-31T02:25:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2011-12-31T03:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T03:11:39Z,61.078,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-31T03:11:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2011-12-31T04:57:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T04:57:50Z,61.064,-172.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-31T04:57:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2011-12-31T05:00:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T05:00:50Z,61.068,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-31T05:00:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2011-12-31T06:35:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T06:35:20Z,61.051,-172.176,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2011-12-31T06:35:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-01-01T00:36:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T00:36:20Z,61.067,-172.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-01T00:36:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-01T07:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T07:00:42Z,61.022,-172.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-01T07:00:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-01T21:40:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T21:40:32Z,60.938,-172.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-01T21:40:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-02T02:22:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T02:22:11Z,60.951,-172.545,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-02T02:22:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-02T06:12:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T06:12:45Z,60.949,-172.543,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-02T06:12:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-01-02T07:33:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T07:33:15Z,60.95,-172.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-02T07:33:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-02T18:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T18:27:03Z,61.007,-172.435,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-02T18:27:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-02T20:16:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T20:16:40Z,60.996,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-02T20:16:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-03T03:37:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T03:37:22Z,60.931,-172.407,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-03T03:37:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-03T17:18:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T17:18:27Z,60.886,-172.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-03T17:18:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-05T01:23:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T01:23:16Z,60.756,-172.101,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-05T01:23:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-05T06:30:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T06:30:25Z,60.768,-171.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-05T06:30:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-05T07:00:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T07:00:01Z,60.78,-171.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-05T07:00:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-01-05T21:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T21:02:07Z,60.749,-171.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-05T21:02:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-06T01:13:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T01:13:18Z,60.749,-171.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-06T01:13:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-06T02:29:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T02:29:35Z,60.77,-171.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-06T02:29:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-06T03:40:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T03:40:57Z,60.776,-171.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-06T03:40:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-01-06T04:10:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T04:10:02Z,60.805,-171.439,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-06T04:10:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2012-01-06T05:50:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T05:50:07Z,60.775,-171.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-06T05:50:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-01-06T06:11:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T06:11:07Z,60.766,-171.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-06T06:11:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-06T07:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T07:02:43Z,60.762,-171.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-06T07:02:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-07T14:59:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T14:59:56Z,61.009,-172.201,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-07T14:59:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-07T15:53:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T15:53:35Z,61.001,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-07T15:53:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-08T03:24:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T03:24:06Z,60.912,-172.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-08T03:24:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-08T18:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T18:46:33Z,60.878,-172.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-08T18:46:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-08T19:36:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T19:36:36Z,60.886,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-08T19:36:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-01-08T20:55:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T20:55:23Z,60.887,-172.022,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-08T20:55:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-09T20:14:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T20:14:54Z,60.9,-172.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-09T20:14:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-09T23:54:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T23:54:32Z,60.86,-172.018,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-09T23:54:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-10T00:38:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T00:38:41Z,60.865,-172.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-10T00:38:41Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-10T01:37:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T01:37:56Z,60.852,-172.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-10T01:37:56Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-10T02:36:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T02:36:53Z,60.848,-172.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-10T02:36:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-01-10T21:59:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T21:59:38Z,60.953,-171.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-10T21:59:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-10T23:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T23:39:01Z,60.945,-171.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-10T23:39:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-12T23:59:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-12T23:59:26Z,61.006,-171.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-12T23:59:26Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-13T01:44:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T01:44:14Z,61.024,-171.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-13T01:44:14Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-13T03:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T03:50:54Z,61.064,-172.056,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-13T03:50:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-13T22:32:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T22:32:37Z,61.087,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-13T22:32:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-14T02:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T02:42:54Z,61.054,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-14T02:42:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-14T10:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T10:12:37Z,61.084,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-14T10:12:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-15T00:33:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T00:33:43Z,61.232,-172.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-15T00:33:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-01-15T01:55:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T01:55:03Z,61.201,-172.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-15T01:55:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2012-01-15T02:14:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T02:14:51Z,61.191,-172.529,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-15T02:14:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2012-01-15T03:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T03:07:48Z,61.185,-172.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-15T03:07:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 4 records. +ioos_atn_38553_2012-01-15T04:44:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T04:44:33Z,61.186,-172.57,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-15T04:44:33Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-01-15T05:31:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T05:31:03Z,61.186,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-15T05:31:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-01-15T06:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T06:24:18Z,61.19,-172.576,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-15T06:24:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-16T01:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T01:15:05Z,61.253,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-16T01:15:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-01-16T02:53:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T02:53:04Z,61.255,-172.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-16T02:53:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_38553_2012-01-16T03:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T03:20:04Z,61.242,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-16T03:20:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-01-16T04:20:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T04:20:49Z,61.248,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-16T04:20:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-01-16T05:01:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T05:01:42Z,61.246,-172.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-16T05:01:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-01-16T06:05:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T06:05:04Z,61.25,-172.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-16T06:05:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2012-01-17T00:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T00:54:43Z,61.265,-172.294,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-17T00:54:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-17T01:25:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T01:25:45Z,61.261,-172.304,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-17T01:25:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-17T02:44:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T02:44:52Z,61.259,-172.274,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-17T02:44:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-17T07:25:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T07:25:06Z,61.221,-172.387,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-17T07:25:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-17T16:43:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T16:43:31Z,61.227,-172.482,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-17T16:43:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-18T05:59:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T05:59:48Z,60.996,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-18T05:59:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-18T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T06:13:20Z,61.012,-172.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-18T06:13:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-18T12:17:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T12:17:42Z,60.975,-172.874,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-18T12:17:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-19T04:22:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T04:22:42Z,60.925,-172.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-19T04:22:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-19T06:41:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T06:41:13Z,60.933,-172.313,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-19T06:41:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-19T13:49:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T13:49:23Z,60.96,-172.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-19T13:49:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-19T22:09:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T22:09:03Z,60.913,-171.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-19T22:09:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-19T23:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T23:48:06Z,60.939,-171.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-19T23:48:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-20T06:00:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T06:00:39Z,60.966,-171.841,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-20T06:00:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-01-20T11:58:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T11:58:12Z,60.982,-171.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-20T11:58:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-20T17:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T17:20:06Z,60.973,-171.768,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-20T17:20:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-20T19:41:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T19:41:46Z,60.957,-171.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-20T19:41:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-21T01:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T01:58:36Z,60.857,-171.828,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-21T01:58:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-21T04:00:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T04:00:49Z,60.829,-171.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-21T04:00:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-01-21T13:27:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T13:27:08Z,60.771,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-21T13:27:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-21T16:50:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T16:50:02Z,60.796,-171.915,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-21T16:50:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-21T19:31:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T19:31:28Z,60.78,-171.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-21T19:31:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-21T22:20:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T22:20:17Z,60.729,-171.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-21T22:20:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-21T23:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T23:25:16Z,60.717,-171.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-21T23:25:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-22T01:03:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T01:03:16Z,60.703,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-22T01:03:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-01-22T17:13:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T17:13:17Z,60.705,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-22T17:13:17Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-22T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T20:47:29Z,60.704,-171.886,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-22T20:47:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-23T00:53:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T00:53:18Z,60.666,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-23T00:53:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-23T02:22:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T02:22:34Z,60.637,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-23T02:22:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-23T04:01:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T04:01:29Z,60.624,-171.912,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-23T04:01:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-23T06:37:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T06:37:11Z,60.627,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-23T06:37:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-23T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T20:47:29Z,60.495,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-23T20:47:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-01-24T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T00:50:28Z,60.504,-171.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-24T00:50:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-24T01:22:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T01:22:43Z,60.509,-171.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-24T01:22:43Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-24T15:14:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T15:14:07Z,60.627,-171.946,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-24T15:14:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-24T18:57:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T18:57:40Z,60.649,-171.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-24T18:57:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-24T20:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T20:34:32Z,60.675,-171.934,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-24T20:34:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-24T22:09:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T22:09:59Z,60.682,-171.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-24T22:09:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-25T01:12:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T01:12:57Z,60.656,-171.976,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-25T01:12:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-25T04:58:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T04:58:52Z,60.683,-172.041,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-25T04:58:52Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-26T00:56:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-26T00:56:18Z,60.842,-171.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-26T00:56:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T02:24:24Z,60.894,-171.593,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-27T02:24:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-27T03:25:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T03:25:03Z,60.898,-171.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-27T03:25:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-27T04:31:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T04:31:48Z,60.883,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-27T04:31:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2012-01-27T05:01:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T05:01:48Z,60.884,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-27T05:01:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-01-27T06:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T06:16:03Z,60.887,-171.636,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-27T06:16:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-01-27T07:18:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T07:18:18Z,60.891,-171.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-27T07:18:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-01-28T16:09:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T16:09:15Z,60.941,-171.815,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-28T16:09:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-01-28T23:49:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T23:49:34Z,61.026,-171.852,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-28T23:49:34Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-29T00:22:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T00:22:49Z,61.033,-171.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-29T00:22:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-29T01:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T01:33:22Z,61.047,-171.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-29T01:33:22Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-01-29T15:57:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T15:57:01Z,61.083,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-29T15:57:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-01-29T19:44:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T19:44:01Z,61.067,-172.076,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-29T19:44:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-01-29T21:15:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T21:15:39Z,61.064,-172.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-29T21:15:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-29T23:46:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T23:46:36Z,61.055,-172.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-29T23:46:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-01-30T02:44:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-30T02:44:23Z,61.056,-172.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-01-30T02:44:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-05T08:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T08:17:50Z,60.796,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-05T08:17:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-05T12:30:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T12:30:12Z,60.777,-173.023,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-05T12:30:12Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-06T07:34:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T07:34:57Z,60.769,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-06T07:34:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-02-06T08:51:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T08:51:16Z,60.771,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-06T08:51:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-02-06T09:15:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T09:15:16Z,60.774,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-06T09:15:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-02-07T02:51:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T02:51:53Z,60.827,-172.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-07T02:51:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-07T05:45:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T05:45:57Z,60.81,-172.608,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-07T05:45:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-07T07:17:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T07:17:06Z,60.776,-172.612,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-07T07:17:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-07T08:30:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T08:30:21Z,60.78,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-07T08:30:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-07T09:04:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T09:04:32Z,60.791,-172.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-07T09:04:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-07T10:17:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T10:17:02Z,60.771,-172.618,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-07T10:17:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-08T02:26:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T02:26:57Z,60.76,-172.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-08T02:26:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-08T05:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T05:25:31Z,60.76,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-08T05:25:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-08T14:12:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T14:12:54Z,60.759,-172.731,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-08T14:12:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-02-08T20:47:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T20:47:54Z,60.78,-172.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-08T20:47:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-08T21:00:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T21:00:32Z,60.796,-172.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-08T21:00:32Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-09T01:26:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T01:26:42Z,60.808,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-09T01:26:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-09T03:52:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T03:52:28Z,60.819,-172.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-09T03:52:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-09T05:12:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T05:12:49Z,60.815,-172.733,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-09T05:12:49Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-09T06:38:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T06:38:46Z,60.818,-172.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-09T06:38:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-09T07:55:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T07:55:44Z,60.81,-172.749,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-09T07:55:44Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-09T13:26:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T13:26:27Z,60.818,-172.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-09T13:26:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-09T15:06:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T15:06:35Z,60.831,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-09T15:06:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-10T01:35:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T01:35:01Z,60.821,-172.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-10T01:35:01Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-10T03:18:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T03:18:09Z,60.825,-172.764,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-10T03:18:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2012-02-10T05:04:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T05:04:05Z,60.85,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-10T05:04:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-02-10T06:16:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T06:16:05Z,60.843,-172.782,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-10T06:16:05Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-02-10T07:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T07:28:50Z,60.846,-172.783,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-10T07:28:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-02-10T08:27:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T08:27:20Z,60.847,-172.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-10T08:27:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-02-10T09:09:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T09:09:20Z,60.846,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-10T09:09:20Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-02-11T00:54:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T00:54:06Z,60.886,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-11T00:54:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2012-02-11T01:33:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T01:33:51Z,60.885,-172.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-11T01:33:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2012-02-11T02:13:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T02:13:36Z,60.896,-172.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-11T02:13:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2012-02-11T03:00:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T03:00:06Z,60.883,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-11T03:00:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2012-02-11T04:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T04:10:36Z,60.886,-172.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-11T04:10:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2012-02-11T05:31:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T05:31:36Z,60.893,-172.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-11T05:31:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-02-12T06:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T06:23:27Z,60.996,-172.49,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-12T06:23:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-12T08:26:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T08:26:18Z,61.008,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-12T08:26:18Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-12T20:08:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T20:08:15Z,60.973,-172.282,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-12T20:08:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-12T22:56:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T22:56:36Z,60.974,-172.243,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-12T22:56:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-13T04:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T04:27:03Z,60.949,-172.264,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-13T04:27:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-13T05:00:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T05:00:54Z,60.953,-172.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-13T05:00:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-02-13T06:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T06:05:08Z,60.963,-172.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-13T06:05:08Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2012-02-13T07:56:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T07:56:53Z,60.985,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-13T07:56:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-02-13T08:05:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T08:05:38Z,60.988,-172.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-13T08:05:38Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-02-14T00:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T00:23:27Z,61.036,-172.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-14T00:23:27Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 3 records. +ioos_atn_38553_2012-02-14T01:46:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T01:46:39Z,61.036,-172.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-14T01:46:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-02-14T02:13:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T02:13:39Z,61.029,-172.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-14T02:13:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-02-14T03:01:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T03:01:39Z,61.027,-172.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-14T03:01:39Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-02-14T04:15:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T04:15:09Z,61.03,-172.064,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-14T04:15:09Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 3 records. +ioos_atn_38553_2012-02-14T05:53:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T05:53:24Z,61.039,-172.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-14T05:53:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-02-14T06:05:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T06:05:24Z,61.042,-172.108,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-14T06:05:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-02-15T00:12:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T00:12:23Z,61.082,-172.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-15T00:12:23Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-15T07:36:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T07:36:58Z,61.018,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-15T07:36:58Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 3 records. +ioos_atn_38553_2012-02-15T22:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T22:51:07Z,60.951,-172.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-15T22:51:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-16T00:28:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T00:28:35Z,60.952,-172.353,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-16T00:28:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-16T04:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T04:14:53Z,60.912,-172.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-16T04:14:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-16T07:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T07:16:03Z,60.907,-172.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-16T07:16:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-16T16:17:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T16:17:45Z,60.868,-172.592,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-16T16:17:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-18T01:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T01:27:03Z,60.998,-172.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-18T01:27:03Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-18T06:28:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T06:28:55Z,60.998,-172.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-18T06:28:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-18T15:19:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T15:19:37Z,61.029,-172.364,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-18T15:19:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-18T20:10:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T20:10:57Z,61.009,-172.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-18T20:10:57Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-18T21:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T21:49:48Z,60.992,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-18T21:49:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,first of 2 records. +ioos_atn_38553_2012-02-19T01:17:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T01:17:19Z,60.971,-172.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-19T01:17:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-19T03:10:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T03:10:46Z,60.981,-172.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-19T03:10:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-19T04:55:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T04:55:31Z,60.987,-172.386,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-19T04:55:31Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-19T07:40:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T07:40:59Z,60.97,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-19T07:40:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-19T11:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T11:39:37Z,60.945,-172.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-19T11:39:37Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-19T15:07:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T15:07:16Z,60.966,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-19T15:07:16Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-02-20T01:08:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T01:08:21Z,60.924,-172.3,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-20T01:08:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-20T07:19:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T07:19:40Z,60.967,-172.338,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-20T07:19:40Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-20T09:00:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T09:00:02Z,60.951,-172.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-20T09:00:02Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-20T11:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T11:33:21Z,60.968,-172.362,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-20T11:33:21Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-20T16:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T16:58:36Z,61.034,-172.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-20T16:58:36Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-21T01:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T01:22:30Z,61.029,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-21T01:22:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-21T02:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T02:20:06Z,61.034,-172.343,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-21T02:20:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-22T00:38:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-22T00:38:04Z,60.968,-172.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-22T00:38:04Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-23T02:11:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T02:11:45Z,60.933,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-23T02:11:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 4 records. +ioos_atn_38553_2012-02-23T03:05:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T03:05:45Z,60.915,-172.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-23T03:05:45Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,first of 2 records. +ioos_atn_38553_2012-02-23T04:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T04:09:30Z,60.921,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-23T04:09:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 4 records. +ioos_atn_38553_2012-02-23T05:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T05:49:15Z,60.929,-172.278,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-23T05:49:15Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-23T06:06:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T06:06:30Z,60.927,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-23T06:06:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-02-24T23:08:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-24T23:08:42Z,60.957,-172.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-24T23:08:42Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-25T13:58:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T13:58:47Z,60.953,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-25T13:58:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-25T20:55:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T20:55:47Z,60.933,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-25T20:55:47Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-26T01:59:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T01:59:55Z,60.889,-172.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-26T01:59:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-26T06:42:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T06:42:50Z,60.806,-173.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-26T06:42:50Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-02-27T07:55:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T07:55:19Z,60.811,-172.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-27T07:55:19Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-27T21:34:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T21:34:24Z,60.89,-172.521,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-27T21:34:24Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-28T02:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T02:50:11Z,60.875,-172.55,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-28T02:50:11Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-02-28T04:07:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T04:07:53Z,60.879,-172.558,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-28T04:07:53Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-28T07:55:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T07:55:54Z,60.898,-172.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-28T07:55:54Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-28T08:13:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T08:13:07Z,60.889,-172.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-28T08:13:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-28T09:37:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T09:37:07Z,60.894,-172.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-28T09:37:07Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-02-29T05:21:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T05:21:48Z,61.012,-172.577,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-29T05:21:48Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-02-29T06:21:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T06:21:28Z,61.006,-172.552,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-29T06:21:28Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-02-29T23:07:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T23:07:10Z,60.936,-172.366,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-02-29T23:07:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-03-01T03:09:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T03:09:25Z,60.93,-172.328,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-01T03:09:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-03-01T04:22:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T04:22:46Z,60.92,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-01T04:22:46Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-03-02T02:59:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T02:59:35Z,60.914,-172.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-02T02:59:35Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-03-02T06:22:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T06:22:25Z,60.88,-172.22,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-02T06:22:25Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-03-02T08:03:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T08:03:30Z,60.896,-172.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-02T08:03:30Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250, +ioos_atn_38553_2012-03-06T00:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T00:25:59Z,61.033,-171.893,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-06T00:25:59Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-03-06T02:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T02:14:55Z,61.091,-171.993,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-06T02:14:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-03-06T06:23:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T06:23:29Z,61.074,-171.987,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-06T06:23:29Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,first of 2 records. +ioos_atn_38553_2012-03-06T08:07:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T08:07:06Z,61.083,-171.921,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-06T08:07:06Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,first of 2 records. +ioos_atn_38553_2012-03-07T04:37:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-07T04:37:13Z,61.091,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-07T04:37:13Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500, +ioos_atn_38553_2012-03-10T06:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T06:29:55Z,60.917,-172.193,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-10T06:29:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500, +ioos_atn_38553_2012-03-10T22:53:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T22:53:10Z,60.819,-172.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-10T22:53:10Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-03-10T23:30:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T23:30:55Z,60.816,-172.07,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-10T23:30:55Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, +ioos_atn_38553_2012-03-11T01:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-11T01:09:51Z,60.817,-172.102,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,38553_bearded_seal_2012-03-11T01:09:51Z,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000, diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml index 431edfb..1102fd5 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml @@ -29,8 +29,8 @@ - US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) - US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + US + (ATN) US Integrated Ocean Observing System Office Data Manager @@ -44,48 +44,47 @@ - Josh London - Josh London + Josh + London NOAA Alaska Fisheries Science Center josh.london@noaa.gov https://orcid.org/0000-0002-3647-5046 originator - + - Michael Cameron - Michael Cameron + Michael + Cameron NOAA Alaska Fisheries Science Center michael.cameron@noaa.gov author - + - John Jansen - John Jansen + John + Jansen NOAA Alaska Fisheries Science Center john.jansen@noaa.gov author - + - Alex Whiting - Alex Whiting + Alex + Whiting Native Village of Kotzebue https://orcid.org/0000-0003-0664-490X author - 2024-08-28T00:07:07Z eng @@ -93,52 +92,28 @@ Wildlife Computers SPLASH10 tag (ptt id 38553) deployed on a bearded seal (Erignathus barbatus) by Peter Boveng in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14 Abstract:A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012 - + EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR - GCMD Science Keywords v15.1 - - EARTH SCIENCE > BIOSPHERE > ECOLOGICAL DYNAMICS > SPECIES/POPULATION INTERACTIONS > MIGRATORY RATES/ROUTES - GCMD Science Keywords v15.1 - - EARTH SCIENCE > OCEANS - GCMD Science Keywords v15.1 - - EARTH SCIENCE > CLIMATE INDICATORS > BIOSPHERIC INDICATORS > SPECIES MIGRATION - GCMD Science Keywords v15.1 - - EARTH SCIENCE > OCEANS - GCMD Science Keywords v15.1 - - EARTH SCIENCE > BIOLOGICAL CLASSIFICATION > ANIMALS/VERTEBRATES - GCMD Science Keywords v15.1 - - EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > MARINE ECOSYSTEMS - GCMD Science Keywords v15.1 - - PROVIDERS > GOVERNMENT AGENCIES-U.S. FEDERAL AGENCIES > DOC > NOAA > IOOS - GCMD Science Keywords v15.1 - - PROVIDERS > COMMERCIAL > Axiom Data Science + GCMD Science Keywords v15.1 - ATN @@ -176,7 +151,7 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - Arctic Ocean,Beaufort Sea,Bering Sea,Chukchi Sea + Arctic Ocean,Beaufort Sea,Bering Sea,Chukchi Sea -173.277 -145.971 @@ -199,7 +174,7 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht Species included below are tagged by this project and have left any embargo. Other individuals or species may later be appended to this dataset. species - Erignathus barbatus + Erignathus barbatus bearded seal @@ -209,8 +184,8 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - Peter Boveng - Peter Boveng + Peter + Boveng NOAA Alaska Fisheries Science Center principalInvestigator @@ -253,8 +228,8 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012 - Peter Boveng - Peter Boveng + Peter + Boveng principalInvestigator diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/38553/meta.xml new file mode 100644 index 0000000..792b0a8 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/38553/meta.xml @@ -0,0 +1,51 @@ + + + + + + atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv + + + + + + + + + + + + + + + atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/datasets/atn_satellite_telemetry/templates/eml.xml.j2 b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 index 921435d..1a1b928 100644 --- a/datasets/atn_satellite_telemetry/templates/eml.xml.j2 +++ b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 @@ -14,7 +14,7 @@ {{ data_manager_lastname }} Animal Tracking Network - {{ data_manager_title}} + {{ data_manager_title }}
U.S. Integrated Ocean Observing System Program Silver Spring @@ -29,8 +29,8 @@ - {{ publisher_name }} - {{ publisher_name }} + {{ publisher_name.split(" ")[0] }} + {{ publisher_name.split(" ")[-1] }} {{ publisher_institution }} Data Manager @@ -46,28 +46,27 @@ {%- for party in contributors %} - {{ party.contributor_name }} - {{ party.contributor_name }} + {{ party.contributor_name.split(" ")[0] }} + {{ party.contributor_name.split(" ")[-1] }} {{ party.contributor_institution }} {{ party.contributor_email }} {{ party.contributor_url }} {{ party.contributor_role }} - {% endfor %} - +{% endfor %} {{ date_created }} eng {{ summary }} Abstract:{{ project }} -{% for keyword in keywords.split(", ")%} +{% for keyword in keywords.split(", ")%} {{ keyword }} +{% endfor %} {{ keywords_vocabulary }} -{% endfor %} {% for keyword in arbitrary_keywords.split(", ")%} {{ keyword }} @@ -95,7 +94,7 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - {{ sea_name }} + {{ sea_name }} {{ geospatial_lon_min }} {{ geospatial_lon_max }} @@ -118,7 +117,7 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht Species included below are tagged by this project and have left any embargo. Other individuals or species may later be appended to this dataset. species - {{ animal_scientific_name }} + {{ animal_scientific_name }} {{ animal_common_name }} @@ -128,8 +127,8 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - {{ creator_name }} - {{ creator_name }} + {{ creator_name.split(" ")[0] }} + {{ creator_name.split(" ")[-1] }} {{ creator_institution }} {{ creator_role }} @@ -172,8 +171,8 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht {{ project }} - {{ creator_name }} - {{ creator_name }} + {{ creator_name.split(" ")[0] }} + {{ creator_name.split(" ")[-1] }} {{ creator_role }} diff --git a/datasets/atn_satellite_telemetry/templates/meta.xml.j2 b/datasets/atn_satellite_telemetry/templates/meta.xml.j2 new file mode 100644 index 0000000..1469bc1 --- /dev/null +++ b/datasets/atn_satellite_telemetry/templates/meta.xml.j2 @@ -0,0 +1,40 @@ + + + {% if event_filename %} + + + {{ event_filename.split("\\")[-1] }} + + {% for event_colname in event_cols_list %} + {% endfor %} + + + + {{ occurrence_filename.split("\\")[-1] }} + + {% for colname in cols_list %} + {% endfor %} + + + {% else %} + + + + {{ occurrence_filename.split("\\")[-1] }} + + {% for colname in cols_list %} + {% endfor %} + + {% endif %} + + {% if emof_filename %} + + + {{ emof_filename.split("\\")[-1] }} + + {% for emof_colname in emof_cols_list %} + {% endfor %} + + {% endif %} + + From b9b10621310bfac7712aca4298bc6289dec1cfd6 Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Fri, 1 Aug 2025 10:25:50 -0400 Subject: [PATCH 03/14] bug fixes and generating new test packages --- .../convert_ATNnc2DwC.ipynb | 2659 +---------------- ...tted-seal_trajectory_20180418-20180526.zip | Bin 0 -> 6334 bytes .../data/dwc/137491/eml.xml | 43 +- .../data/dwc/137491/meta.xml | 72 +- .../data/dwc/137494/eml.xml | 43 +- .../data/dwc/137494/meta.xml | 38 +- .../data/dwc/38553/eml.xml | 43 +- .../data/dwc/38553/meta.xml | 56 +- .../templates/eml.xml.j2 | 35 +- .../templates/meta.xml.j2 | 10 +- 10 files changed, 205 insertions(+), 2794 deletions(-) create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip diff --git a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb index 506815c..3477dc2 100644 --- a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb +++ b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb @@ -13,7 +13,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 3, "metadata": { "id": "0JvPXasXc432" }, @@ -45,7 +45,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 4, "metadata": { "id": "puONkrPNceM5" }, @@ -142,7 +142,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 5, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -484,7 +484,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 6, "metadata": { "id": "c9G3a6N2bMh2" }, @@ -643,7 +643,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -688,11 +688,11 @@ " other_meta = {\n", " 'dataset_ipt_id': None,\n", " 'dataset_short_name': ds.encoding.get('source').split(\"\\\\\")[-1].replace(\".nc\",\"\"),\n", - " 'data_manager_firstname': 'Mathew',\n", - " 'data_manager_lastname': 'Biddle',\n", - " 'data_manager_title': 'Physical Scientist',\n", + " 'data_manager_firstname': 'Megan',\n", + " 'data_manager_lastname': 'McKinzie',\n", + " 'data_manager_title': 'Data Manager',\n", " 'data_manager_phone': '',\n", - " 'data_manager_email': 'mathew.biddle@noaa.gov',\n", + " 'data_manager_email': 'mmckinzie@mbari.org',\n", " 'contributors': contributors_list,\n", " }\n", "\n", @@ -705,7 +705,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 18, "metadata": {}, "outputs": [], "source": [ @@ -729,6 +729,16 @@ " # create and include the meta.xml and eml.xml\n", " # set the meta.xml paramaters by hand, using the format of the dataframes above\n", " meta_xml_vars = {}\n", + "\n", + " # when writing dwc occurrence file, we only save some columns\n", + " dwc_df = dwc_df[['occurrenceID', 'occurrenceStatus', 'basisOfRecord',\n", + " 'organismID', 'eventDate', 'decimalLatitude',\n", + " 'decimalLongitude', 'geodeticDatum',\n", + " 'scientificName', 'scientificNameID', 'eventID',\n", + " 'samplingProtocol', 'kingdom', 'taxonRank', 'lifeStage',\n", + " 'sex', 'associatedReferences',\n", + " 'coordinateUncertaintyInMeters', 'dataGeneralizations']].copy()\n", + " \n", " meta_xml_vars['cols_list'] = dwc_df.columns.tolist()\n", " meta_xml_vars['occurrence_filename'] = output_csv\n", "\n", @@ -756,7 +766,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 19, "metadata": { "id": "aD62GgzSS0zu" }, @@ -842,7 +852,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 24, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -858,33 +868,6 @@ "text": [ "\n", "--- 2. Starting Darwin Core Conversion (Individual Files) ---\n", - "Processing atn_131373_ribbon-seal_trajectory_20140428-20141213.nc...\n", - "Found 1215 records.\n", - " Extracted 389 occurrences with valid locations.\n", - " Extracted 179 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\131373\\atn_131373_ribbon-seal_trajectory_20140428-20141213_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\131373\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\131373\\meta.xml'.\n", - "Processing atn_137487_ribbon-seal_trajectory_20140412-20140413.nc...\n", - "Found 17 records.\n", - " Extracted 15 occurrences with valid locations.\n", - " Extracted 3 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137487\\atn_137487_ribbon-seal_trajectory_20140412-20140413_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137487\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137487\\meta.xml'.\n", - "Processing atn_137490_spotted-seal_trajectory_20160414-20160414.nc...\n", - "Found 267 records.\n", - " Extracted 16 occurrences with valid locations.\n", - " Extracted 14 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137490\\atn_137490_spotted-seal_trajectory_20160414-20160414_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137490\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137490\\meta.xml'.\n", "Processing atn_137491_spotted-seal_trajectory_20180418-20180526.nc...\n", "Found 107 records.\n", " Extracted 12 occurrences with valid locations.\n", @@ -906,448 +889,6 @@ "No HumanObservations found in the dataset.\n", " no emof data found\n", " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137494\\meta.xml'.\n", - "Processing atn_137495_ribbon-seal_trajectory_20140426-20140427.nc...\n", - "Found 55 records.\n", - " Extracted 44 occurrences with valid locations.\n", - " Extracted 12 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137495\\atn_137495_ribbon-seal_trajectory_20140426-20140427_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\meta.xml'.\n", - "Processing atn_137495_spotted-seal_trajectory_20170809-20180607.nc...\n", - "Found 362 records.\n", - " Extracted 61 occurrences with valid locations.\n", - " Extracted 42 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137495\\atn_137495_spotted-seal_trajectory_20170809-20180607_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137495\\meta.xml'.\n", - "Processing atn_137497_spotted-seal_trajectory_20160412-20170721.nc...\n", - "Found 484 records.\n", - " Extracted 56 occurrences with valid locations.\n", - " Extracted 37 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137497\\atn_137497_spotted-seal_trajectory_20160412-20170721_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137497\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137497\\meta.xml'.\n", - "Processing atn_137500_ribbon-seal_trajectory_20140426-20140427.nc...\n", - "Found 19 records.\n", - " Extracted 14 occurrences with valid locations.\n", - " Extracted 3 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137500\\atn_137500_ribbon-seal_trajectory_20140426-20140427_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137500\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137500\\meta.xml'.\n", - "Processing atn_137506_ribbon-seal_trajectory_20140421-20140421.nc...\n", - "Found 66 records.\n", - " Extracted 35 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137506\\atn_137506_ribbon-seal_trajectory_20140421-20140421_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137506\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137506\\meta.xml'.\n", - "Processing atn_137514_ribbon-seal_trajectory_20140419-20140420.nc...\n", - "Found 17 records.\n", - " Extracted 9 occurrences with valid locations.\n", - " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137514\\atn_137514_ribbon-seal_trajectory_20140419-20140420_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137514\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137514\\meta.xml'.\n", - "Processing atn_137516_ribbon-seal_trajectory_20140420-20140420.nc...\n", - "Found 60 records.\n", - " Extracted 42 occurrences with valid locations.\n", - " Extracted 11 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137516\\atn_137516_ribbon-seal_trajectory_20140420-20140420_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137516\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137516\\meta.xml'.\n", - "Processing atn_141929_spotted-seal_trajectory_20160425-20160514.nc...\n", - "Found 480 records.\n", - " Extracted 211 occurrences with valid locations.\n", - " Extracted 136 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\141929\\atn_141929_spotted-seal_trajectory_20160425-20160514_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\141929\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\141929\\meta.xml'.\n", - "Processing atn_143947_spotted-seal_trajectory_20160414-20160623.nc...\n", - "Found 139 records.\n", - " Extracted 10 occurrences with valid locations.\n", - " Extracted 5 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\143947\\atn_143947_spotted-seal_trajectory_20160414-20160623_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143947\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143947\\meta.xml'.\n", - "Processing atn_143956_spotted-seal_trajectory_20180410-20180901.nc...\n", - "Found 315 records.\n", - " Extracted 28 occurrences with valid locations.\n", - " Extracted 22 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\143956\\atn_143956_spotted-seal_trajectory_20180410-20180901_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143956\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\143956\\atn_143956_spotted-seal_trajectory_20180410-20180901_event.csv\n", - " Created 2 emofs.\n", - " Saved data to data\\dwc\\143956\\atn_143956_spotted-seal_trajectory_20180410-20180901_emof.csv\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143956\\meta.xml'.\n", - "Processing atn_143966_ribbon-seal_trajectory_20160416-20160430.nc...\n", - "Found 247 records.\n", - " Extracted 56 occurrences with valid locations.\n", - " Extracted 38 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\143966\\atn_143966_ribbon-seal_trajectory_20160416-20160430_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143966\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143966\\meta.xml'.\n", - "Processing atn_143979_spotted-seal_trajectory_20160414-20160422.nc...\n", - "Found 205 records.\n", - " Extracted 135 occurrences with valid locations.\n", - " Extracted 76 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\143979\\atn_143979_spotted-seal_trajectory_20160414-20160422_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143979\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143979\\meta.xml'.\n", - "Processing atn_143982_ribbon-seal_trajectory_20160423-20160510.nc...\n", - "Found 392 records.\n", - " Extracted 106 occurrences with valid locations.\n", - " Extracted 79 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\143982\\atn_143982_ribbon-seal_trajectory_20160423-20160510_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143982\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143982\\meta.xml'.\n", - "Processing atn_143991_spotted-seal_trajectory_20160415-20160509.nc...\n", - "Found 559 records.\n", - " Extracted 208 occurrences with valid locations.\n", - " Extracted 154 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\143991\\atn_143991_spotted-seal_trajectory_20160415-20160509_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143991\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143991\\meta.xml'.\n", - "Processing atn_143994_spotted-seal_trajectory_20160423-20160516.nc...\n", - "Found 574 records.\n", - " Extracted 250 occurrences with valid locations.\n", - " Extracted 171 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\143994\\atn_143994_spotted-seal_trajectory_20160423-20160516_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143994\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\143994\\meta.xml'.\n", - "Processing atn_144001_ribbon-seal_trajectory_20160413-20160427.nc...\n", - "Found 513 records.\n", - " Extracted 31 occurrences with valid locations.\n", - " Extracted 26 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\144001\\atn_144001_ribbon-seal_trajectory_20160413-20160427_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144001\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144001\\meta.xml'.\n", - "Processing atn_144004_ribbon-seal_trajectory_20160421-20160424.nc...\n", - "Found 105 records.\n", - " Extracted 27 occurrences with valid locations.\n", - " Extracted 21 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\144004\\atn_144004_ribbon-seal_trajectory_20160421-20160424_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144004\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144004\\meta.xml'.\n", - "Processing atn_144006_spotted-seal_trajectory_20160412-20160420.nc...\n", - "Found 201 records.\n", - " Extracted 108 occurrences with valid locations.\n", - " Extracted 70 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\144006\\atn_144006_spotted-seal_trajectory_20160412-20160420_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144006\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144006\\meta.xml'.\n", - "Processing atn_144009_spotted-seal_trajectory_20160414-20160510.nc...\n", - "Found 616 records.\n", - " Extracted 196 occurrences with valid locations.\n", - " Extracted 145 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\144009\\atn_144009_spotted-seal_trajectory_20160414-20160510_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144009\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144009\\meta.xml'.\n", - "Processing atn_144015_ribbon-seal_trajectory_20160416-20160418.nc...\n", - "Found 58 records.\n", - " Extracted 24 occurrences with valid locations.\n", - " Extracted 19 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\144015\\atn_144015_ribbon-seal_trajectory_20160416-20160418_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144015\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144015\\meta.xml'.\n", - "Processing atn_144017_ribbon-seal_trajectory_20160425-20160512.nc...\n", - "Found 417 records.\n", - " Extracted 118 occurrences with valid locations.\n", - " Extracted 88 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\144017\\atn_144017_ribbon-seal_trajectory_20160425-20160512_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144017\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\144017\\meta.xml'.\n", - "Processing atn_160948_ribbon-seal_trajectory_20160421-20170519.nc...\n", - "Found 371 records.\n", - " Extracted 44 occurrences with valid locations.\n", - " Extracted 32 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160948\\atn_160948_ribbon-seal_trajectory_20160421-20170519_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160948\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160948\\meta.xml'.\n", - "Processing atn_160951_spotted-seal_trajectory_20160817-20170828.nc...\n", - "Found 518 records.\n", - " Extracted 48 occurrences with valid locations.\n", - " Extracted 30 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160951\\atn_160951_spotted-seal_trajectory_20160817-20170828_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160951\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160951\\meta.xml'.\n", - "Processing atn_160954_spotted-seal_trajectory_20160814-20161219.nc...\n", - "Found 94 records.\n", - " Extracted 20 occurrences with valid locations.\n", - " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160954\\atn_160954_spotted-seal_trajectory_20160814-20161219_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160954\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160954\\meta.xml'.\n", - "Processing atn_160955_ribbon-seal_trajectory_20160413-20170605.nc...\n", - "Found 472 records.\n", - " Extracted 71 occurrences with valid locations.\n", - " Extracted 52 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160955\\atn_160955_ribbon-seal_trajectory_20160413-20170605_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160955\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160955\\meta.xml'.\n", - "Processing atn_160956_spotted-seal_trajectory_20160415-20160622.nc...\n", - "Found 241 records.\n", - " Extracted 14 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160956\\atn_160956_spotted-seal_trajectory_20160415-20160622_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160956\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160956\\meta.xml'.\n", - "Processing atn_160957_spotted-seal_trajectory_20170816-20171125.nc...\n", - "Found 79 records.\n", - " Extracted 23 occurrences with valid locations.\n", - " Extracted 14 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160957\\atn_160957_spotted-seal_trajectory_20170816-20171125_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160957\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160957\\meta.xml'.\n", - "Processing atn_160960_spotted-seal_trajectory_20160817-20170729.nc...\n", - "Found 470 records.\n", - " Extracted 55 occurrences with valid locations.\n", - " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160960\\atn_160960_spotted-seal_trajectory_20160817-20170729_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160960\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160960\\meta.xml'.\n", - "Processing atn_160965_ribbon-seal_trajectory_20160416-20160725.nc...\n", - "Found 164 records.\n", - " Extracted 20 occurrences with valid locations.\n", - " Extracted 15 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160965\\atn_160965_ribbon-seal_trajectory_20160416-20160725_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160965\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160965\\meta.xml'.\n", - "Processing atn_160966_spotted-seal_trajectory_20160423-20170120.nc...\n", - "Found 342 records.\n", - " Extracted 29 occurrences with valid locations.\n", - " Extracted 19 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160966\\atn_160966_spotted-seal_trajectory_20160423-20170120_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160966\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160966\\meta.xml'.\n", - "Processing atn_160968_ribbon-seal_trajectory_20160425-20160726.nc...\n", - "Found 199 records.\n", - " Extracted 13 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160968\\atn_160968_ribbon-seal_trajectory_20160425-20160726_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160968\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160968\\meta.xml'.\n", - "Processing atn_160969_ribbon-seal_trajectory_20160416-20161230.nc...\n", - "Found 341 records.\n", - " Extracted 31 occurrences with valid locations.\n", - " Extracted 22 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160969\\atn_160969_ribbon-seal_trajectory_20160416-20161230_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160969\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160969\\meta.xml'.\n", - "Processing atn_160972_spotted-seal_trajectory_20170816-20171121.nc...\n", - "Found 92 records.\n", - " Extracted 10 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160972\\atn_160972_spotted-seal_trajectory_20170816-20171121_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160972\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160972\\meta.xml'.\n", - "Processing atn_160973_ribbon-seal_trajectory_20160423-20170615.nc...\n", - "Found 451 records.\n", - " Extracted 78 occurrences with valid locations.\n", - " Extracted 59 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160973\\atn_160973_ribbon-seal_trajectory_20160423-20170615_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160973\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160973\\meta.xml'.\n", - "Processing atn_160975_ribbon-seal_trajectory_20160426-20170513.nc...\n", - "Found 318 records.\n", - " Extracted 22 occurrences with valid locations.\n", - " Extracted 16 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160975\\atn_160975_ribbon-seal_trajectory_20160426-20170513_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160975\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160975\\meta.xml'.\n", - "Processing atn_160977_spotted-seal_trajectory_20160425-20161009.nc...\n", - "Found 250 records.\n", - " Extracted 20 occurrences with valid locations.\n", - " Extracted 17 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\160977\\atn_160977_spotted-seal_trajectory_20160425-20161009_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160977\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\160977\\meta.xml'.\n", - "Processing atn_164869_spotted-seal_trajectory_20180420-20180514.nc...\n", - "Found 47 records.\n", - " Extracted 8 occurrences with valid locations.\n", - " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\164869\\atn_164869_spotted-seal_trajectory_20180420-20180514_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\164869\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\164869\\atn_164869_spotted-seal_trajectory_20180420-20180514_event.csv\n", - " Created 2 emofs.\n", - " Saved data to data\\dwc\\164869\\atn_164869_spotted-seal_trajectory_20180420-20180514_emof.csv\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\164869\\meta.xml'.\n", - "Processing atn_174785_spotted-seal_trajectory_20180420-20180605.nc...\n", - "Found 2318 records.\n", - " Extracted 873 occurrences with valid locations.\n", - " Extracted 560 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\174785\\atn_174785_spotted-seal_trajectory_20180420-20180605_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174785\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\174785\\atn_174785_spotted-seal_trajectory_20180420-20180605_event.csv\n", - " Created 2 emofs.\n", - " Saved data to data\\dwc\\174785\\atn_174785_spotted-seal_trajectory_20180420-20180605_emof.csv\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174785\\meta.xml'.\n", - "Processing atn_174786_spotted-seal_trajectory_20180414-20180511.nc...\n", - "Found 943 records.\n", - " Extracted 435 occurrences with valid locations.\n", - " Extracted 287 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\174786\\atn_174786_spotted-seal_trajectory_20180414-20180511_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174786\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174786\\meta.xml'.\n", - "Processing atn_174787_spotted-seal_trajectory_20180410-20180610.nc...\n", - "Found 1841 records.\n", - " Extracted 713 occurrences with valid locations.\n", - " Extracted 532 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\174787\\atn_174787_spotted-seal_trajectory_20180410-20180610_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174787\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\174787\\atn_174787_spotted-seal_trajectory_20180410-20180610_event.csv\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174787\\meta.xml'.\n", - "Processing atn_174790_spotted-seal_trajectory_20180418-20180527.nc...\n", - "Found 1308 records.\n", - " Extracted 585 occurrences with valid locations.\n", - " Extracted 383 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\174790\\atn_174790_spotted-seal_trajectory_20180418-20180527_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174790\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\174790\\atn_174790_spotted-seal_trajectory_20180418-20180527_event.csv\n", - " Created 2 emofs.\n", - " Saved data to data\\dwc\\174790\\atn_174790_spotted-seal_trajectory_20180418-20180527_emof.csv\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174790\\meta.xml'.\n", - "Processing atn_174805_spotted-seal_trajectory_20180420-20180523.nc...\n", - "Found 1495 records.\n", - " Extracted 584 occurrences with valid locations.\n", - " Extracted 373 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\174805\\atn_174805_spotted-seal_trajectory_20180420-20180523_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174805\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\174805\\atn_174805_spotted-seal_trajectory_20180420-20180523_event.csv\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174805\\meta.xml'.\n", - "Processing atn_174821_spotted-seal_trajectory_20180420-20180618.nc...\n", - "Found 164 records.\n", - " Extracted 11 occurrences with valid locations.\n", - " Extracted 7 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\174821\\atn_174821_spotted-seal_trajectory_20180420-20180618_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174821\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\174821\\atn_174821_spotted-seal_trajectory_20180420-20180618_event.csv\n", - " Created 2 emofs.\n", - " Saved data to data\\dwc\\174821\\atn_174821_spotted-seal_trajectory_20180420-20180618_emof.csv\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174821\\meta.xml'.\n", - "Processing atn_174822_spotted-seal_trajectory_20180414-20181103.nc...\n", - "Found 263 records.\n", - " Extracted 25 occurrences with valid locations.\n", - " Extracted 20 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\174822\\atn_174822_spotted-seal_trajectory_20180414-20181103_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174822\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\174822\\meta.xml'.\n", - "Processing atn_37515_spotted-seal_trajectory_20100522-20110423.nc...\n", - "Found 7589 records.\n", - " Extracted 2166 occurrences with valid locations.\n", - " Extracted 1261 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\37515\\atn_37515_spotted-seal_trajectory_20100522-20110423_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37515\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37515\\meta.xml'.\n", - "Processing atn_37909_spotted-seal_trajectory_20140427-20140921.nc...\n", - "Found 4396 records.\n", - " Extracted 1910 occurrences with valid locations.\n", - " Extracted 910 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\37909\\atn_37909_spotted-seal_trajectory_20140427-20140921_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37909\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\37909\\meta.xml'.\n", - "Processing atn_38549_spotted-seal_trajectory_20140429-20140613.nc...\n", - "Found 2881 records.\n", - " Extracted 1198 occurrences with valid locations.\n", - " Extracted 400 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\38549\\atn_38549_spotted-seal_trajectory_20140429-20140613_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38549\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38549\\meta.xml'.\n", "Processing atn_38553_bearded-seal_trajectory_20110618-20120314.nc...\n", "Found 10197 records.\n", " Extracted 1871 occurrences with valid locations.\n", @@ -1359,2156 +900,9 @@ " Saved data to data\\dwc\\38553\\atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv\n", " no emof data found\n", " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38553\\meta.xml'.\n", - "Processing atn_39482_spotted-seal_trajectory_20140427-20141022.nc...\n", - "Found 4984 records.\n", - " Extracted 1539 occurrences with valid locations.\n", - " Extracted 806 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\39482\\atn_39482_spotted-seal_trajectory_20140427-20141022_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39482\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39482\\meta.xml'.\n", - "Processing atn_39486_ribbon-seal_trajectory_20100517-20100917.nc...\n", - "Found 722 records.\n", - " Extracted 154 occurrences with valid locations.\n", - " Extracted 82 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\39486\\atn_39486_ribbon-seal_trajectory_20100517-20100917_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39486\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39486\\meta.xml'.\n", - "Processing atn_39489_bearded-seal_trajectory_20110616-20120401.nc...\n", - "Found 9698 records.\n", - " Extracted 2668 occurrences with valid locations.\n", - " Extracted 1663 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\39489\\atn_39489_bearded-seal_trajectory_20110616-20120401_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39489\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\39489\\atn_39489_bearded-seal_trajectory_20110616-20120401_event.csv\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39489\\meta.xml'.\n", - "Processing atn_39490_ribbon-seal_trajectory_20140426-20140526.nc...\n", - "Found 1339 records.\n", - " Extracted 469 occurrences with valid locations.\n", - " Extracted 147 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\39490\\atn_39490_ribbon-seal_trajectory_20140426-20140526_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39490\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39490\\meta.xml'.\n", - "Processing atn_39491_ribbon-seal_trajectory_20100516-20100518.nc...\n", - "Found 44 records.\n", - " Extracted 23 occurrences with valid locations.\n", - " Extracted 16 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\39491\\atn_39491_ribbon-seal_trajectory_20100516-20100518_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39491\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39491\\meta.xml'.\n", - "Processing atn_39496_ribbon-seal_trajectory_20100523-20101216.nc...\n", - "Found 617 records.\n", - " Extracted 226 occurrences with valid locations.\n", - " Extracted 132 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\39496\\atn_39496_ribbon-seal_trajectory_20100523-20101216_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39496\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39496\\meta.xml'.\n", - "Processing atn_39498_ribbon-seal_trajectory_20140427-20140509.nc...\n", - "Found 617 records.\n", - " Extracted 397 occurrences with valid locations.\n", - " Extracted 100 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\39498\\atn_39498_ribbon-seal_trajectory_20140427-20140509_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39498\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39498\\meta.xml'.\n", - "Processing atn_39499_ribbon-seal_trajectory_20140419-20140428.nc...\n", - "Found 588 records.\n", - " Extracted 221 occurrences with valid locations.\n", - " Extracted 61 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\39499\\atn_39499_ribbon-seal_trajectory_20140419-20140428_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39499\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\39499\\meta.xml'.\n", - "Processing atn_40857_ribbon-seal_trajectory_20100523-20110408.nc...\n", - "Found 1420 records.\n", - " Extracted 445 occurrences with valid locations.\n", - " Extracted 238 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\40857\\atn_40857_ribbon-seal_trajectory_20100523-20110408_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40857\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40857\\meta.xml'.\n", - "Processing atn_40858_ribbon-seal_trajectory_20140421-20140426.nc...\n", - "Found 371 records.\n", - " Extracted 194 occurrences with valid locations.\n", - " Extracted 53 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\40858\\atn_40858_ribbon-seal_trajectory_20140421-20140426_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40858\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40858\\meta.xml'.\n", - "Processing atn_40862_ribbon-seal_trajectory_20140420-20140428.nc...\n", - "Found 898 records.\n", - " Extracted 442 occurrences with valid locations.\n", - " Extracted 138 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\40862\\atn_40862_ribbon-seal_trajectory_20140420-20140428_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40862\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\40862\\meta.xml'.\n", - "Processing atn_45866_great-white-shark_trajectory_20090923-20091123.nc...\n", - "Found 29 records.\n", - " Extracted 19 occurrences with valid locations.\n", - " Extracted 17 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\45866\\atn_45866_great-white-shark_trajectory_20090923-20091123_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45866\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\45866\\atn_45866_great-white-shark_trajectory_20090923-20091123_event.csv\n", - " Created 1 emofs.\n", - " Saved data to data\\dwc\\45866\\atn_45866_great-white-shark_trajectory_20090923-20091123_emof.csv\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45866\\meta.xml'.\n", - "Processing atn_45869_great-white-shark_trajectory_20090923-20091213.nc...\n", - "Found 42 records.\n", - " Extracted 8 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\45869\\atn_45869_great-white-shark_trajectory_20090923-20091213_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45869\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\45869\\atn_45869_great-white-shark_trajectory_20090923-20091213_event.csv\n", - " Created 1 emofs.\n", - " Saved data to data\\dwc\\45869\\atn_45869_great-white-shark_trajectory_20090923-20091213_emof.csv\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\45869\\meta.xml'.\n", - "Processing atn_53631_false-killer-whale_trajectory_20100927-20101001.nc...\n", - "Found 35 records.\n", - " Extracted 29 occurrences with valid locations.\n", - " Extracted 23 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\53631\\atn_53631_false-killer-whale_trajectory_20100927-20101001_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53631\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53631\\meta.xml'.\n", - "Processing atn_53644_false-killer-whale_trajectory_20100927-20101118.nc...\n", - "Found 362 records.\n", - " Extracted 244 occurrences with valid locations.\n", - " Extracted 203 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\53644\\atn_53644_false-killer-whale_trajectory_20100927-20101118_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53644\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53644\\meta.xml'.\n", - "Processing atn_53652_false-killer-whale_trajectory_20101023-20101213.nc...\n", - "Found 504 records.\n", - " Extracted 394 occurrences with valid locations.\n", - " Extracted 314 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\53652\\atn_53652_false-killer-whale_trajectory_20101023-20101213_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53652\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\53652\\meta.xml'.\n", - "Processing atn_57998_ribbon-seal_trajectory_20050525-20060508.nc...\n", - "Found 1469 records.\n", - " Extracted 536 occurrences with valid locations.\n", - " Extracted 420 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\57998\\atn_57998_ribbon-seal_trajectory_20050525-20060508_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57998\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57998\\meta.xml'.\n", - "Processing atn_57999_spotted-seal_trajectory_20050925-20060521.nc...\n", - "Found 4632 records.\n", - " Extracted 1654 occurrences with valid locations.\n", - " Extracted 1199 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\57999\\atn_57999_spotted-seal_trajectory_20050925-20060521_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57999\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\57999\\meta.xml'.\n", - "Processing atn_58000_ribbon-seal_trajectory_20050601-20060403.nc...\n", - "Found 166 records.\n", - " Extracted 76 occurrences with valid locations.\n", - " Extracted 53 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58000\\atn_58000_ribbon-seal_trajectory_20050601-20060403_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58000\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58000\\meta.xml'.\n", - "Processing atn_58001_spotted-seal_trajectory_20050926-20051215.nc...\n", - "Found 1907 records.\n", - " Extracted 790 occurrences with valid locations.\n", - " Extracted 530 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58001\\atn_58001_spotted-seal_trajectory_20050926-20051215_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58001\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58001\\meta.xml'.\n", - "Processing atn_58002_spotted-seal_trajectory_20050926-20051223.nc...\n", - "Found 1627 records.\n", - " Extracted 567 occurrences with valid locations.\n", - " Extracted 398 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58002\\atn_58002_spotted-seal_trajectory_20050926-20051223_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58002\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58002\\meta.xml'.\n", - "Processing atn_58003_spotted-seal_trajectory_20050928-20060428.nc...\n", - "Found 514 records.\n", - " Extracted 237 occurrences with valid locations.\n", - " Extracted 162 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58003\\atn_58003_spotted-seal_trajectory_20050928-20060428_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58003\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58003\\meta.xml'.\n", - "Processing atn_58005_ribbon-seal_trajectory_20050601-20060508.nc...\n", - "Found 877 records.\n", - " Extracted 166 occurrences with valid locations.\n", - " Extracted 143 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58005\\atn_58005_ribbon-seal_trajectory_20050601-20060508_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58005\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58005\\meta.xml'.\n", - "Processing atn_58006_ribbon-seal_trajectory_20050602-20060220.nc...\n", - "Found 133 records.\n", - " Extracted 77 occurrences with valid locations.\n", - " Extracted 51 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58006\\atn_58006_ribbon-seal_trajectory_20050602-20060220_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58006\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58006\\meta.xml'.\n", - "Processing atn_58007_ribbon-seal_trajectory_20050602-20050603.nc...\n", - "Found 18 records.\n", - " Extracted 10 occurrences with valid locations.\n", - " Extracted 6 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58007\\atn_58007_ribbon-seal_trajectory_20050602-20050603_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58007\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58007\\meta.xml'.\n", - "Processing atn_58008_ribbon-seal_trajectory_20050602-20060508.nc...\n", - "Found 558 records.\n", - " Extracted 131 occurrences with valid locations.\n", - " Extracted 92 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58008\\atn_58008_ribbon-seal_trajectory_20050602-20060508_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58008\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58008\\meta.xml'.\n", - "Processing atn_58009_ribbon-seal_trajectory_20050606-20051215.nc...\n", - "Found 180 records.\n", - " Extracted 81 occurrences with valid locations.\n", - " Extracted 56 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58009\\atn_58009_ribbon-seal_trajectory_20050606-20051215_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58009\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58009\\meta.xml'.\n", - "Processing atn_58010_ribbon-seal_trajectory_20050607-20051213.nc...\n", - "Found 58 records.\n", - " Extracted 36 occurrences with valid locations.\n", - " Extracted 21 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58010\\atn_58010_ribbon-seal_trajectory_20050607-20051213_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58010\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58010\\meta.xml'.\n", - "Processing atn_58011_ribbon-seal_trajectory_20050602-20050604.nc...\n", - "Found 6 records.\n", - " Extracted 4 occurrences with valid locations.\n", - " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58011\\atn_58011_ribbon-seal_trajectory_20050602-20050604_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58011\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58011\\meta.xml'.\n", - "Processing atn_58012_ribbon-seal_trajectory_20050607-20060421.nc...\n", - "Found 1014 records.\n", - " Extracted 384 occurrences with valid locations.\n", - " Extracted 258 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58012\\atn_58012_ribbon-seal_trajectory_20050607-20060421_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58012\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58012\\meta.xml'.\n", - "Processing atn_58014_spotted-seal_trajectory_20050929-20060329.nc...\n", - "Found 1971 records.\n", - " Extracted 437 occurrences with valid locations.\n", - " Extracted 360 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\58014\\atn_58014_spotted-seal_trajectory_20050929-20060329_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58014\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\58014\\meta.xml'.\n", - "Processing atn_62755_spotted-seal_trajectory_20060424-20060506.nc...\n", - "Found 45 records.\n", - " Extracted 35 occurrences with valid locations.\n", - " Extracted 30 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\62755\\atn_62755_spotted-seal_trajectory_20060424-20060506_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62755\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62755\\meta.xml'.\n", - "Processing atn_62756_spotted-seal_trajectory_20060427-20060513.nc...\n", - "Found 44 records.\n", - " Extracted 25 occurrences with valid locations.\n", - " Extracted 22 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\62756\\atn_62756_spotted-seal_trajectory_20060427-20060513_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62756\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\62756\\meta.xml'.\n", - "Processing atn_64451_spotted-seal_trajectory_20090518-20090612.nc...\n", - "Found 21 records.\n", - " Extracted 14 occurrences with valid locations.\n", - " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64451\\atn_64451_spotted-seal_trajectory_20090518-20090612_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64451\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64451\\meta.xml'.\n", - "Processing atn_64452_spotted-seal_trajectory_20090528-20090612.nc...\n", - "Found 19 records.\n", - " Extracted 13 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64452\\atn_64452_spotted-seal_trajectory_20090528-20090612_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64452\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64452\\meta.xml'.\n", - "Processing atn_64453_ribbon-seal_trajectory_20090606-20090612.nc...\n", - "Found 11 records.\n", - " Extracted 10 occurrences with valid locations.\n", - " Extracted 6 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64453\\atn_64453_ribbon-seal_trajectory_20090606-20090612_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64453\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64453\\meta.xml'.\n", - "Processing atn_64455_spotted-seal_trajectory_20090517-20100430.nc...\n", - "Found 74 records.\n", - " Extracted 49 occurrences with valid locations.\n", - " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64455\\atn_64455_spotted-seal_trajectory_20090517-20100430_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64455\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64455\\meta.xml'.\n", - "Processing atn_64457_ribbon-seal_trajectory_20090603-20090613.nc...\n", - "Found 11 records.\n", - " Extracted 6 occurrences with valid locations.\n", - " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64457\\atn_64457_ribbon-seal_trajectory_20090603-20090613_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64457\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64457\\meta.xml'.\n", - "Processing atn_64459_bearded-seal_trajectory_20090626-20120518.nc...\n", - "Found 61 records.\n", - " Extracted 26 occurrences with valid locations.\n", - " Extracted 21 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64459\\atn_64459_bearded-seal_trajectory_20090626-20120518_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64459\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64459\\meta.xml'.\n", - "Processing atn_64460_spotted-seal_trajectory_20090518-20090618.nc...\n", - "Found 22 records.\n", - " Extracted 14 occurrences with valid locations.\n", - " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64460\\atn_64460_spotted-seal_trajectory_20090518-20090618_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64460\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64460\\meta.xml'.\n", - "Processing atn_64461_ribbon-seal_trajectory_20090607-20100524.nc...\n", - "Found 67 records.\n", - " Extracted 45 occurrences with valid locations.\n", - " Extracted 27 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64461\\atn_64461_ribbon-seal_trajectory_20090607-20100524_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64461\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64461\\meta.xml'.\n", - "Processing atn_64462_bearded-seal_trajectory_20090623-20120612.nc...\n", - "Found 126 records.\n", - " Extracted 53 occurrences with valid locations.\n", - " Extracted 37 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64462\\atn_64462_bearded-seal_trajectory_20090623-20120612_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64462\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64462\\meta.xml'.\n", - "Processing atn_64463_spotted-seal_trajectory_20090528-20090620.nc...\n", - "Found 13 records.\n", - " Extracted 9 occurrences with valid locations.\n", - " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64463\\atn_64463_spotted-seal_trajectory_20090528-20090620_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64463\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64463\\meta.xml'.\n", - "Processing atn_64464_ribbon-seal_trajectory_20090531-20100506.nc...\n", - "Found 49 records.\n", - " Extracted 35 occurrences with valid locations.\n", - " Extracted 26 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64464\\atn_64464_ribbon-seal_trajectory_20090531-20100506_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64464\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64464\\meta.xml'.\n", - "Processing atn_64465_ribbon-seal_trajectory_20090602-20090607.nc...\n", - "Found 4 records.\n", - " Extracted 3 occurrences with valid locations.\n", - " Extracted 1 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64465\\atn_64465_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64465\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64465\\meta.xml'.\n", - "Processing atn_64467_ribbon-seal_trajectory_20090606-20100531.nc...\n", - "Found 62 records.\n", - " Extracted 42 occurrences with valid locations.\n", - " Extracted 27 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64467\\atn_64467_ribbon-seal_trajectory_20090606-20100531_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64467\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64467\\meta.xml'.\n", - "Processing atn_64469_ribbon-seal_trajectory_20090607-20110526.nc...\n", - "Found 155 records.\n", - " Extracted 92 occurrences with valid locations.\n", - " Extracted 57 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64469\\atn_64469_ribbon-seal_trajectory_20090607-20110526_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64469\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64469\\meta.xml'.\n", - "Processing atn_64471_ribbon-seal_trajectory_20090605-20100522.nc...\n", - "Found 158 records.\n", - " Extracted 93 occurrences with valid locations.\n", - " Extracted 53 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64471\\atn_64471_ribbon-seal_trajectory_20090605-20100522_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64471\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64471\\meta.xml'.\n", - "Processing atn_64472_ribbon-seal_trajectory_20090602-20090607.nc...\n", - "Found 6 records.\n", - " Extracted 4 occurrences with valid locations.\n", - " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64472\\atn_64472_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64472\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64472\\meta.xml'.\n", - "Processing atn_64473_spotted-seal_trajectory_20090518-20090618.nc...\n", - "Found 31 records.\n", - " Extracted 21 occurrences with valid locations.\n", - " Extracted 14 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64473\\atn_64473_spotted-seal_trajectory_20090518-20090618_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64473\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64473\\meta.xml'.\n", - "Processing atn_64476_ribbon-seal_trajectory_20090528-20100603.nc...\n", - "Found 88 records.\n", - " Extracted 48 occurrences with valid locations.\n", - " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64476\\atn_64476_ribbon-seal_trajectory_20090528-20100603_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64476\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64476\\meta.xml'.\n", - "Processing atn_64477_spotted-seal_trajectory_20090528-20100422.nc...\n", - "Found 11 records.\n", - " Extracted 7 occurrences with valid locations.\n", - " Extracted 5 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64477\\atn_64477_spotted-seal_trajectory_20090528-20100422_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64477\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64477\\meta.xml'.\n", - "Processing atn_64478_ribbon-seal_trajectory_20090531-20091230.nc...\n", - "Found 4 records.\n", - " Extracted 3 occurrences with valid locations.\n", - " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64478\\atn_64478_ribbon-seal_trajectory_20090531-20091230_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64478\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64478\\meta.xml'.\n", - "Processing atn_64479_ribbon-seal_trajectory_20090607-20100126.nc...\n", - "Found 878 records.\n", - " Extracted 479 occurrences with valid locations.\n", - " Extracted 260 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64479\\atn_64479_ribbon-seal_trajectory_20090607-20100126_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64479\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64479\\meta.xml'.\n", - "Processing atn_64481_ribbon-seal_trajectory_20090604-20091221.nc...\n", - "Found 1219 records.\n", - " Extracted 362 occurrences with valid locations.\n", - " Extracted 239 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64481\\atn_64481_ribbon-seal_trajectory_20090604-20091221_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64481\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64481\\meta.xml'.\n", - "Processing atn_64482_ribbon-seal_trajectory_20090603-20100514.nc...\n", - "Found 2567 records.\n", - " Extracted 784 occurrences with valid locations.\n", - " Extracted 486 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64482\\atn_64482_ribbon-seal_trajectory_20090603-20100514_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64482\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64482\\meta.xml'.\n", - "Processing atn_64483_ribbon-seal_trajectory_20100505-20100928.nc...\n", - "Found 244 records.\n", - " Extracted 120 occurrences with valid locations.\n", - " Extracted 75 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64483\\atn_64483_ribbon-seal_trajectory_20100505-20100928_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64483\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64483\\meta.xml'.\n", - "Processing atn_64484_ribbon-seal_trajectory_20090530-20100326.nc...\n", - "Found 533 records.\n", - " Extracted 299 occurrences with valid locations.\n", - " Extracted 200 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64484\\atn_64484_ribbon-seal_trajectory_20090530-20100326_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64484\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64484\\meta.xml'.\n", - "Processing atn_64485_spotted-seal_trajectory_20090603-20091023.nc...\n", - "Found 2889 records.\n", - " Extracted 1080 occurrences with valid locations.\n", - " Extracted 705 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64485\\atn_64485_spotted-seal_trajectory_20090603-20091023_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64485\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64485\\meta.xml'.\n", - "Processing atn_64486_ribbon-seal_trajectory_20090601-20100426.nc...\n", - "Found 357 records.\n", - " Extracted 224 occurrences with valid locations.\n", - " Extracted 147 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64486\\atn_64486_ribbon-seal_trajectory_20090601-20100426_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64486\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64486\\meta.xml'.\n", - "Processing atn_64488_spotted-seal_trajectory_20090606-20100310.nc...\n", - "Found 4567 records.\n", - " Extracted 1326 occurrences with valid locations.\n", - " Extracted 853 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64488\\atn_64488_spotted-seal_trajectory_20090606-20100310_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64488\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64488\\meta.xml'.\n", - "Processing atn_64489_ribbon-seal_trajectory_20090529-20100502.nc...\n", - "Found 434 records.\n", - " Extracted 238 occurrences with valid locations.\n", - " Extracted 150 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64489\\atn_64489_ribbon-seal_trajectory_20090529-20100502_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64489\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64489\\meta.xml'.\n", - "Processing atn_64490_ribbon-seal_trajectory_20090531-20100105.nc...\n", - "Found 870 records.\n", - " Extracted 215 occurrences with valid locations.\n", - " Extracted 137 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64490\\atn_64490_ribbon-seal_trajectory_20090531-20100105_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64490\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64490\\meta.xml'.\n", - "Processing atn_64491_ribbon-seal_trajectory_20090529-20090617.nc...\n", - "Found 282 records.\n", - " Extracted 126 occurrences with valid locations.\n", - " Extracted 85 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64491\\atn_64491_ribbon-seal_trajectory_20090529-20090617_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64491\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64491\\meta.xml'.\n", - "Processing atn_64492_ribbon-seal_trajectory_20090602-20100116.nc...\n", - "Found 1685 records.\n", - " Extracted 262 occurrences with valid locations.\n", - " Extracted 189 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64492\\atn_64492_ribbon-seal_trajectory_20090602-20100116_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64492\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64492\\meta.xml'.\n", - "Processing atn_64706_ribbon-seal_trajectory_20060427-20060520.nc...\n", - "Found 16 records.\n", - " Extracted 11 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64706\\atn_64706_ribbon-seal_trajectory_20060427-20060520_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64706\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64706\\meta.xml'.\n", - "Processing atn_64707_ribbon-seal_trajectory_20060502-20060505.nc...\n", - "Found 3 records.\n", - " Extracted 2 occurrences with valid locations.\n", - " Extracted 1 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64707\\atn_64707_ribbon-seal_trajectory_20060502-20060505_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64707\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64707\\meta.xml'.\n", - "Processing atn_64708_ribbon-seal_trajectory_20060503-20060527.nc...\n", - "Found 21 records.\n", - " Extracted 7 occurrences with valid locations.\n", - " Extracted 5 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64708\\atn_64708_ribbon-seal_trajectory_20060503-20060527_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64708\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64708\\meta.xml'.\n", - "Processing atn_64709_ribbon-seal_trajectory_20060502-20060511.nc...\n", - "Found 9 records.\n", - " Extracted 3 occurrences with valid locations.\n", - " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64709\\atn_64709_ribbon-seal_trajectory_20060502-20060511_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64709\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64709\\meta.xml'.\n", - "Processing atn_64710_ribbon-seal_trajectory_20060503-20060520.nc...\n", - "Found 12 records.\n", - " Extracted 7 occurrences with valid locations.\n", - " Extracted 5 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64710\\atn_64710_ribbon-seal_trajectory_20060503-20060520_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64710\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64710\\meta.xml'.\n", - "Processing atn_64712_spotted-seal_trajectory_20060503-20060506.nc...\n", - "Found 6 records.\n", - " Extracted 3 occurrences with valid locations.\n", - " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64712\\atn_64712_spotted-seal_trajectory_20060503-20060506_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64712\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64712\\meta.xml'.\n", - "Processing atn_64713_spotted-seal_trajectory_20060503-20060518.nc...\n", - "Found 5 records.\n", - " Extracted 5 occurrences with valid locations.\n", - " Extracted 3 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64713\\atn_64713_spotted-seal_trajectory_20060503-20060518_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64713\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64713\\meta.xml'.\n", - "Processing atn_64714_spotted-seal_trajectory_20060501-20060513.nc...\n", - "Found 4 records.\n", - " Extracted 3 occurrences with valid locations.\n", - " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64714\\atn_64714_spotted-seal_trajectory_20060501-20060513_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64714\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64714\\meta.xml'.\n", - "Processing atn_64715_ribbon-seal_trajectory_20060503-20060527.nc...\n", - "Found 16 records.\n", - " Extracted 11 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64715\\atn_64715_ribbon-seal_trajectory_20060503-20060527_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64715\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64715\\meta.xml'.\n", - "Processing atn_64717_spotted-seal_trajectory_20060503-20060516.nc...\n", - "Found 11 records.\n", - " Extracted 5 occurrences with valid locations.\n", - " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64717\\atn_64717_spotted-seal_trajectory_20060503-20060516_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64717\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64717\\meta.xml'.\n", - "Processing atn_64899_ribbon-seal_trajectory_20090604-20090612.nc...\n", - "Found 10 records.\n", - " Extracted 6 occurrences with valid locations.\n", - " Extracted 3 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\64899\\atn_64899_ribbon-seal_trajectory_20090604-20090612_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64899\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\64899\\meta.xml'.\n", - "Processing atn_65922_ribbon-seal_trajectory_20060506-20060508.nc...\n", - "Found 4 records.\n", - " Extracted 3 occurrences with valid locations.\n", - " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\65922\\atn_65922_ribbon-seal_trajectory_20060506-20060508_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65922\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65922\\meta.xml'.\n", - "Processing atn_65924_ribbon-seal_trajectory_20060502-20060618.nc...\n", - "Found 149 records.\n", - " Extracted 108 occurrences with valid locations.\n", - " Extracted 68 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\65924\\atn_65924_ribbon-seal_trajectory_20060502-20060618_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65924\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65924\\meta.xml'.\n", - "Processing atn_65925_ribbon-seal_trajectory_20060505-20060525.nc...\n", - "Found 67 records.\n", - " Extracted 50 occurrences with valid locations.\n", - " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\65925\\atn_65925_ribbon-seal_trajectory_20060505-20060525_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65925\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65925\\meta.xml'.\n", - "Processing atn_65926_ribbon-seal_trajectory_20060503-20060516.nc...\n", - "Found 101 records.\n", - " Extracted 76 occurrences with valid locations.\n", - " Extracted 49 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\65926\\atn_65926_ribbon-seal_trajectory_20060503-20060516_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65926\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65926\\meta.xml'.\n", - "Processing atn_65927_ribbon-seal_trajectory_20070522-20080107.nc...\n", - "Found 376 records.\n", - " Extracted 175 occurrences with valid locations.\n", - " Extracted 138 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\65927\\atn_65927_ribbon-seal_trajectory_20070522-20080107_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65927\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65927\\meta.xml'.\n", - "Processing atn_65928_ribbon-seal_trajectory_20070517-20080402.nc...\n", - "Found 628 records.\n", - " Extracted 375 occurrences with valid locations.\n", - " Extracted 297 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\65928\\atn_65928_ribbon-seal_trajectory_20070517-20080402_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65928\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65928\\meta.xml'.\n", - "Processing atn_65931_ribbon-seal_trajectory_20070522-20080130.nc...\n", - "Found 163 records.\n", - " Extracted 101 occurrences with valid locations.\n", - " Extracted 73 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\65931\\atn_65931_ribbon-seal_trajectory_20070522-20080130_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65931\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65931\\meta.xml'.\n", - "Processing atn_65932_spotted-seal_trajectory_20060506-20060620.nc...\n", - "Found 754 records.\n", - " Extracted 471 occurrences with valid locations.\n", - " Extracted 349 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\65932\\atn_65932_spotted-seal_trajectory_20060506-20060620_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65932\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65932\\meta.xml'.\n", - "Processing atn_65933_spotted-seal_trajectory_20060427-20060511.nc...\n", - "Found 153 records.\n", - " Extracted 120 occurrences with valid locations.\n", - " Extracted 97 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\65933\\atn_65933_spotted-seal_trajectory_20060427-20060511_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65933\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\65933\\meta.xml'.\n", - "Processing atn_66928_ribbon-seal_trajectory_20140426-20140518.nc...\n", - "Found 526 records.\n", - " Extracted 264 occurrences with valid locations.\n", - " Extracted 67 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\66928\\atn_66928_ribbon-seal_trajectory_20140426-20140518_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66928\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66928\\meta.xml'.\n", - "Processing atn_66949_ribbon-seal_trajectory_20140415-20140503.nc...\n", - "Found 1289 records.\n", - " Extracted 521 occurrences with valid locations.\n", - " Extracted 154 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\66949\\atn_66949_ribbon-seal_trajectory_20140415-20140503_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66949\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66949\\meta.xml'.\n", - "Processing atn_66971_bearded-seal_trajectory_20110617-20120131.nc...\n", - "Found 7559 records.\n", - " Extracted 2041 occurrences with valid locations.\n", - " Extracted 1303 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\66971\\atn_66971_bearded-seal_trajectory_20110617-20120131_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66971\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\66971\\atn_66971_bearded-seal_trajectory_20110617-20120131_event.csv\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66971\\meta.xml'.\n", - "Processing atn_66973_spotted-seal_trajectory_20140427-20141222.nc...\n", - "Found 6857 records.\n", - " Extracted 1962 occurrences with valid locations.\n", - " Extracted 1118 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\66973\\atn_66973_spotted-seal_trajectory_20140427-20141222_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66973\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66973\\meta.xml'.\n", - "Processing atn_66978_spotted-seal_trajectory_20140429-20141201.nc...\n", - "Found 7325 records.\n", - " Extracted 2421 occurrences with valid locations.\n", - " Extracted 1274 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\66978\\atn_66978_spotted-seal_trajectory_20140429-20141201_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66978\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66978\\meta.xml'.\n", - "Processing atn_66983_bearded-seal_trajectory_20110618-20140626.nc...\n", - "Found 146 records.\n", - " Extracted 103 occurrences with valid locations.\n", - " Extracted 53 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\66983\\atn_66983_bearded-seal_trajectory_20110618-20140626_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66983\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66983\\meta.xml'.\n", - "Processing atn_66989_ribbon-seal_trajectory_20140428-20140518.nc...\n", - "Found 154 records.\n", - " Extracted 78 occurrences with valid locations.\n", - " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\66989\\atn_66989_ribbon-seal_trajectory_20140428-20140518_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66989\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66989\\meta.xml'.\n", - "Processing atn_66990_ribbon-seal_trajectory_20140428-20140501.nc...\n", - "Found 13 records.\n", - " Extracted 5 occurrences with valid locations.\n", - " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\66990\\atn_66990_ribbon-seal_trajectory_20140428-20140501_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66990\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\66990\\meta.xml'.\n", - "Processing atn_67000_spotted-seal_trajectory_20140429-20140721.nc...\n", - "Found 148 records.\n", - " Extracted 74 occurrences with valid locations.\n", - " Extracted 44 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\67000\\atn_67000_spotted-seal_trajectory_20140429-20140721_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67000\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67000\\meta.xml'.\n", - "Processing atn_67003_ribbon-seal_trajectory_20140428-20140519.nc...\n", - "Found 112 records.\n", - " Extracted 50 occurrences with valid locations.\n", - " Extracted 21 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\67003\\atn_67003_ribbon-seal_trajectory_20140428-20140519_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67003\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67003\\meta.xml'.\n", - "Processing atn_67004_bearded-seal_trajectory_20120704-20130618.nc...\n", - "Found 100 records.\n", - " Extracted 69 occurrences with valid locations.\n", - " Extracted 31 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\67004\\atn_67004_bearded-seal_trajectory_20120704-20130618_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67004\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67004\\meta.xml'.\n", - "Processing atn_67007_bearded-seal_trajectory_20110616-20120813.nc...\n", - "Found 98 records.\n", - " Extracted 66 occurrences with valid locations.\n", - " Extracted 38 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\67007\\atn_67007_bearded-seal_trajectory_20110616-20120813_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67007\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67007\\meta.xml'.\n", - "Processing atn_67026_ribbon-seal_trajectory_20140427-20141108.nc...\n", - "Found 123 records.\n", - " Extracted 67 occurrences with valid locations.\n", - " Extracted 27 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\67026\\atn_67026_ribbon-seal_trajectory_20140427-20141108_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67026\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\67026\\meta.xml'.\n", - "Processing atn_74626_bearded-seal_trajectory_20090625-20100128.nc...\n", - "Found 5660 records.\n", - " Extracted 1040 occurrences with valid locations.\n", - " Extracted 789 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74626\\atn_74626_bearded-seal_trajectory_20090625-20100128_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74626\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\74626\\atn_74626_bearded-seal_trajectory_20090625-20100128_event.csv\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74626\\meta.xml'.\n", - "Processing atn_74627_bearded-seal_trajectory_20090623-20100318.nc...\n", - "Found 6491 records.\n", - " Extracted 867 occurrences with valid locations.\n", - " Extracted 705 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74627\\atn_74627_bearded-seal_trajectory_20090623-20100318_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74627\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\74627\\atn_74627_bearded-seal_trajectory_20090623-20100318_event.csv\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74627\\meta.xml'.\n", - "Processing atn_74629_ribbon-seal_trajectory_20070529-20080404.nc...\n", - "Found 855 records.\n", - " Extracted 593 occurrences with valid locations.\n", - " Extracted 500 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74629\\atn_74629_ribbon-seal_trajectory_20070529-20080404_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74629\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\74629\\atn_74629_ribbon-seal_trajectory_20070529-20080404_event.csv\n", - " Created 2 emofs.\n", - " Saved data to data\\dwc\\74629\\atn_74629_ribbon-seal_trajectory_20070529-20080404_emof.csv\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74629\\meta.xml'.\n", - "Processing atn_74630_bearded-seal_trajectory_20090626-20100213.nc...\n", - "Found 4913 records.\n", - " Extracted 645 occurrences with valid locations.\n", - " Extracted 501 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74630\\atn_74630_bearded-seal_trajectory_20090626-20100213_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74630\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\74630\\atn_74630_bearded-seal_trajectory_20090626-20100213_event.csv\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74630\\meta.xml'.\n", - "Processing atn_74631_spotted-seal_trajectory_20090606-20100504.nc...\n", - "Found 2805 records.\n", - " Extracted 815 occurrences with valid locations.\n", - " Extracted 562 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74631\\atn_74631_spotted-seal_trajectory_20090606-20100504_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74631\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74631\\meta.xml'.\n", - "Processing atn_74633_spotted-seal_trajectory_20090518-20090731.nc...\n", - "Found 824 records.\n", - " Extracted 190 occurrences with valid locations.\n", - " Extracted 150 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74633\\atn_74633_spotted-seal_trajectory_20090518-20090731_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74633\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74633\\meta.xml'.\n", - "Processing atn_74634_ribbon-seal_trajectory_20090602-20100222.nc...\n", - "Found 174 records.\n", - " Extracted 107 occurrences with valid locations.\n", - " Extracted 78 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74634\\atn_74634_ribbon-seal_trajectory_20090602-20100222_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74634\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74634\\meta.xml'.\n", - "Processing atn_74635_spotted-seal_trajectory_20090523-20091028.nc...\n", - "Found 1996 records.\n", - " Extracted 600 occurrences with valid locations.\n", - " Extracted 414 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74635\\atn_74635_spotted-seal_trajectory_20090523-20091028_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74635\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74635\\meta.xml'.\n", - "Processing atn_74636_ribbon-seal_trajectory_20090528-20100209.nc...\n", - "Found 536 records.\n", - " Extracted 171 occurrences with valid locations.\n", - " Extracted 101 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74636\\atn_74636_ribbon-seal_trajectory_20090528-20100209_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74636\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74636\\meta.xml'.\n", - "Processing atn_74637_spotted-seal_trajectory_20100506-20110410.nc...\n", - "Found 5477 records.\n", - " Extracted 1459 occurrences with valid locations.\n", - " Extracted 927 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74637\\atn_74637_spotted-seal_trajectory_20100506-20110410_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74637\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74637\\meta.xml'.\n", - "Processing atn_74638_ribbon-seal_trajectory_20100510-20100605.nc...\n", - "Found 158 records.\n", - " Extracted 73 occurrences with valid locations.\n", - " Extracted 51 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74638\\atn_74638_ribbon-seal_trajectory_20100510-20100605_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74638\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74638\\meta.xml'.\n", - "Processing atn_74639_ribbon-seal_trajectory_20070524-20070902.nc...\n", - "Found 148 records.\n", - " Extracted 104 occurrences with valid locations.\n", - " Extracted 70 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74639\\atn_74639_ribbon-seal_trajectory_20070524-20070902_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74639\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74639\\meta.xml'.\n", - "Processing atn_74640_ribbon-seal_trajectory_20070529-20071022.nc...\n", - "Found 136 records.\n", - " Extracted 94 occurrences with valid locations.\n", - " Extracted 64 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74640\\atn_74640_ribbon-seal_trajectory_20070529-20071022_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74640\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74640\\meta.xml'.\n", - "Processing atn_74641_ribbon-seal_trajectory_20070527-20071103.nc...\n", - "Found 109 records.\n", - " Extracted 48 occurrences with valid locations.\n", - " Extracted 34 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74641\\atn_74641_ribbon-seal_trajectory_20070527-20071103_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74641\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74641\\meta.xml'.\n", - "Processing atn_74642_spotted-seal_trajectory_20070508-20071123.nc...\n", - "Found 367 records.\n", - " Extracted 101 occurrences with valid locations.\n", - " Extracted 85 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74642\\atn_74642_spotted-seal_trajectory_20070508-20071123_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74642\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74642\\meta.xml'.\n", - "Processing atn_74643_ribbon-seal_trajectory_20070525-20080502.nc...\n", - "Found 739 records.\n", - " Extracted 330 occurrences with valid locations.\n", - " Extracted 232 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74643\\atn_74643_ribbon-seal_trajectory_20070525-20080502_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74643\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74643\\meta.xml'.\n", - "Processing atn_74644_spotted-seal_trajectory_20070507-20080303.nc...\n", - "Found 1712 records.\n", - " Extracted 599 occurrences with valid locations.\n", - " Extracted 482 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74644\\atn_74644_spotted-seal_trajectory_20070507-20080303_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74644\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74644\\meta.xml'.\n", - "Processing atn_74645_ribbon-seal_trajectory_20070524-20070605.nc...\n", - "Found 22 records.\n", - " Extracted 11 occurrences with valid locations.\n", - " Extracted 7 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74645\\atn_74645_ribbon-seal_trajectory_20070524-20070605_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74645\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74645\\meta.xml'.\n", - "Processing atn_74646_ribbon-seal_trajectory_20070528-20100529.nc...\n", - "Found 102 records.\n", - " Extracted 63 occurrences with valid locations.\n", - " Extracted 51 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74646\\atn_74646_ribbon-seal_trajectory_20070528-20100529_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74646\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74646\\meta.xml'.\n", - "Processing atn_74647_ribbon-seal_trajectory_20070520-20080612.nc...\n", - "Found 61 records.\n", - " Extracted 41 occurrences with valid locations.\n", - " Extracted 33 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74647\\atn_74647_ribbon-seal_trajectory_20070520-20080612_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74647\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74647\\meta.xml'.\n", - "Processing atn_74648_ribbon-seal_trajectory_20070523-20080402.nc...\n", - "Found 24 records.\n", - " Extracted 13 occurrences with valid locations.\n", - " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74648\\atn_74648_ribbon-seal_trajectory_20070523-20080402_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74648\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74648\\meta.xml'.\n", - "Processing atn_74649_ribbon-seal_trajectory_20070524-20070614.nc...\n", - "Found 21 records.\n", - " Extracted 12 occurrences with valid locations.\n", - " Extracted 9 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74649\\atn_74649_ribbon-seal_trajectory_20070524-20070614_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74649\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74649\\meta.xml'.\n", - "Processing atn_74650_ribbon-seal_trajectory_20070525-20080617.nc...\n", - "Found 54 records.\n", - " Extracted 34 occurrences with valid locations.\n", - " Extracted 26 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74650\\atn_74650_ribbon-seal_trajectory_20070525-20080617_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74650\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74650\\meta.xml'.\n", - "Processing atn_74651_ribbon-seal_trajectory_20070516-20080613.nc...\n", - "Found 66 records.\n", - " Extracted 35 occurrences with valid locations.\n", - " Extracted 29 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74651\\atn_74651_ribbon-seal_trajectory_20070516-20080613_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74651\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74651\\meta.xml'.\n", - "Processing atn_74652_ribbon-seal_trajectory_20070523-20080502.nc...\n", - "Found 27 records.\n", - " Extracted 20 occurrences with valid locations.\n", - " Extracted 13 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74652\\atn_74652_ribbon-seal_trajectory_20070523-20080502_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74652\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74652\\meta.xml'.\n", - "Processing atn_74653_ribbon-seal_trajectory_20070518-20100426.nc...\n", - "Found 94 records.\n", - " Extracted 49 occurrences with valid locations.\n", - " Extracted 36 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74653\\atn_74653_ribbon-seal_trajectory_20070518-20100426_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74653\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74653\\meta.xml'.\n", - "Processing atn_74654_spotted-seal_trajectory_20070520-20070713.nc...\n", - "Found 24 records.\n", - " Extracted 14 occurrences with valid locations.\n", - " Extracted 11 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74654\\atn_74654_spotted-seal_trajectory_20070520-20070713_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74654\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74654\\meta.xml'.\n", - "Processing atn_74655_spotted-seal_trajectory_20070526-20080619.nc...\n", - "Found 58 records.\n", - " Extracted 41 occurrences with valid locations.\n", - " Extracted 29 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74655\\atn_74655_spotted-seal_trajectory_20070526-20080619_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74655\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74655\\meta.xml'.\n", - "Processing atn_74656_spotted-seal_trajectory_20070524-20070613.nc...\n", - "Found 22 records.\n", - " Extracted 18 occurrences with valid locations.\n", - " Extracted 15 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74656\\atn_74656_spotted-seal_trajectory_20070524-20070613_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74656\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74656\\meta.xml'.\n", - "Processing atn_74657_ribbon-seal_trajectory_20070518-20070608.nc...\n", - "Found 28 records.\n", - " Extracted 14 occurrences with valid locations.\n", - " Extracted 12 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74657\\atn_74657_ribbon-seal_trajectory_20070518-20070608_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74657\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74657\\meta.xml'.\n", - "Processing atn_74658_spotted-seal_trajectory_20070520-20070613.nc...\n", - "Found 24 records.\n", - " Extracted 15 occurrences with valid locations.\n", - " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74658\\atn_74658_spotted-seal_trajectory_20070520-20070613_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74658\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74658\\meta.xml'.\n", - "Processing atn_74662_ribbon-seal_trajectory_20070527-20070626.nc...\n", - "Found 33 records.\n", - " Extracted 23 occurrences with valid locations.\n", - " Extracted 11 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74662\\atn_74662_ribbon-seal_trajectory_20070527-20070626_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74662\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74662\\meta.xml'.\n", - "Processing atn_74664_ribbon-seal_trajectory_20070518-20080621.nc...\n", - "Found 59 records.\n", - " Extracted 31 occurrences with valid locations.\n", - " Extracted 29 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74664\\atn_74664_ribbon-seal_trajectory_20070518-20080621_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74664\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74664\\meta.xml'.\n", - "Processing atn_74665_ribbon-seal_trajectory_20070522-20080614.nc...\n", - "Found 40 records.\n", - " Extracted 26 occurrences with valid locations.\n", - " Extracted 19 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74665\\atn_74665_ribbon-seal_trajectory_20070522-20080614_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74665\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74665\\meta.xml'.\n", - "Processing atn_74666_spotted-seal_trajectory_20070524-20070629.nc...\n", - "Found 9 records.\n", - " Extracted 6 occurrences with valid locations.\n", - " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74666\\atn_74666_spotted-seal_trajectory_20070524-20070629_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74666\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74666\\meta.xml'.\n", - "Processing atn_74670_ribbon-seal_trajectory_20090609-20100607.nc...\n", - "Found 87 records.\n", - " Extracted 51 occurrences with valid locations.\n", - " Extracted 33 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74670\\atn_74670_ribbon-seal_trajectory_20090609-20100607_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74670\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74670\\meta.xml'.\n", - "Processing atn_74672_ribbon-seal_trajectory_20070527-20080622.nc...\n", - "Found 58 records.\n", - " Extracted 40 occurrences with valid locations.\n", - " Extracted 31 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74672\\atn_74672_ribbon-seal_trajectory_20070527-20080622_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74672\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74672\\meta.xml'.\n", - "Processing atn_74673_ribbon-seal_trajectory_20070510-20070611.nc...\n", - "Found 37 records.\n", - " Extracted 25 occurrences with valid locations.\n", - " Extracted 21 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74673\\atn_74673_ribbon-seal_trajectory_20070510-20070611_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74673\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74673\\meta.xml'.\n", - "Processing atn_74674_spotted-seal_trajectory_20070521-20090601.nc...\n", - "Found 80 records.\n", - " Extracted 43 occurrences with valid locations.\n", - " Extracted 35 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74674\\atn_74674_spotted-seal_trajectory_20070521-20090601_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74674\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74674\\meta.xml'.\n", - "Processing atn_74677_ribbon-seal_trajectory_20070523-20090522.nc...\n", - "Found 106 records.\n", - " Extracted 58 occurrences with valid locations.\n", - " Extracted 45 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74677\\atn_74677_ribbon-seal_trajectory_20070523-20090522_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74677\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74677\\meta.xml'.\n", - "Processing atn_74679_ribbon-seal_trajectory_20070523-20070613.nc...\n", - "Found 25 records.\n", - " Extracted 16 occurrences with valid locations.\n", - " Extracted 11 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74679\\atn_74679_ribbon-seal_trajectory_20070523-20070613_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74679\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74679\\meta.xml'.\n", - "Processing atn_74681_spotted-seal_trajectory_20070424-20070701.nc...\n", - "Found 46 records.\n", - " Extracted 26 occurrences with valid locations.\n", - " Extracted 22 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74681\\atn_74681_spotted-seal_trajectory_20070424-20070701_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74681\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74681\\meta.xml'.\n", - "Processing atn_74682_ribbon-seal_trajectory_20070526-20080610.nc...\n", - "Found 54 records.\n", - " Extracted 36 occurrences with valid locations.\n", - " Extracted 27 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74682\\atn_74682_ribbon-seal_trajectory_20070526-20080610_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74682\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74682\\meta.xml'.\n", - "Processing atn_74685_spotted-seal_trajectory_20070424-20070625.nc...\n", - "Found 12 records.\n", - " Extracted 12 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74685\\atn_74685_spotted-seal_trajectory_20070424-20070625_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74685\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74685\\meta.xml'.\n", - "Processing atn_74688_ribbon-seal_trajectory_20070527-20071115.nc...\n", - "Found 18 records.\n", - " Extracted 14 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74688\\atn_74688_ribbon-seal_trajectory_20070527-20071115_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74688\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74688\\meta.xml'.\n", - "Processing atn_74689_spotted-seal_trajectory_20070507-20070901.nc...\n", - "Found 28 records.\n", - " Extracted 19 occurrences with valid locations.\n", - " Extracted 13 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74689\\atn_74689_spotted-seal_trajectory_20070507-20070901_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74689\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74689\\meta.xml'.\n", - "Processing atn_74690_ribbon-seal_trajectory_20070505-20070521.nc...\n", - "Found 16 records.\n", - " Extracted 12 occurrences with valid locations.\n", - " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74690\\atn_74690_ribbon-seal_trajectory_20070505-20070521_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74690\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74690\\meta.xml'.\n", - "Processing atn_74693_spotted-seal_trajectory_20070526-20080301.nc...\n", - "Found 26 records.\n", - " Extracted 15 occurrences with valid locations.\n", - " Extracted 12 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74693\\atn_74693_spotted-seal_trajectory_20070526-20080301_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74693\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74693\\meta.xml'.\n", - "Processing atn_74698_ribbon-seal_trajectory_20070522-20070605.nc...\n", - "Found 12 records.\n", - " Extracted 5 occurrences with valid locations.\n", - " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\74698\\atn_74698_ribbon-seal_trajectory_20070522-20070605_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74698\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\74698\\meta.xml'.\n", - "Processing atn_77250_false-killer-whale_trajectory_20070816-20070830.nc...\n", - "Found 66 records.\n", - " Extracted 50 occurrences with valid locations.\n", - " Extracted 40 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\77250\\atn_77250_false-killer-whale_trajectory_20070816-20070830_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\meta.xml'.\n", - "Processing atn_77250_false-killer-whale_trajectory_20080422-20080513.nc...\n", - "Found 10 records.\n", - " Extracted 2 occurrences with valid locations.\n", - " Extracted 1 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\77250\\atn_77250_false-killer-whale_trajectory_20080422-20080513_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77250\\meta.xml'.\n", - "Processing atn_77251_false-killer-whale_trajectory_20070816-20070818.nc...\n", - "Found 16 records.\n", - " Extracted 13 occurrences with valid locations.\n", - " Extracted 9 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\77251\\atn_77251_false-killer-whale_trajectory_20070816-20070818_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77251\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77251\\meta.xml'.\n", - "Processing atn_77252_false-killer-whale_trajectory_20070816-20070917.nc...\n", - "Found 150 records.\n", - " Extracted 132 occurrences with valid locations.\n", - " Extracted 104 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\77252\\atn_77252_false-killer-whale_trajectory_20070816-20070917_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\meta.xml'.\n", - "Processing atn_77252_false-killer-whale_trajectory_20080727-20080915.nc...\n", - "Found 518 records.\n", - " Extracted 417 occurrences with valid locations.\n", - " Extracted 329 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\77252\\atn_77252_false-killer-whale_trajectory_20080727-20080915_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77252\\meta.xml'.\n", - "Processing atn_77253_false-killer-whale_trajectory_20080727-20080824.nc...\n", - "Found 320 records.\n", - " Extracted 277 occurrences with valid locations.\n", - " Extracted 210 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\77253\\atn_77253_false-killer-whale_trajectory_20080727-20080824_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77253\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\77253\\meta.xml'.\n", - "Processing atn_83881_ribbon-seal_trajectory_20080429-20080514.nc...\n", - "Found 52 records.\n", - " Extracted 34 occurrences with valid locations.\n", - " Extracted 24 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83881\\atn_83881_ribbon-seal_trajectory_20080429-20080514_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83881\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83881\\meta.xml'.\n", - "Processing atn_83885_spotted-seal_trajectory_20090606-20100612.nc...\n", - "Found 178 records.\n", - " Extracted 108 occurrences with valid locations.\n", - " Extracted 74 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83885\\atn_83885_spotted-seal_trajectory_20090606-20100612_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83885\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83885\\meta.xml'.\n", - "Processing atn_83901_spotted-seal_trajectory_20090531-20090707.nc...\n", - "Found 7 records.\n", - " Extracted 6 occurrences with valid locations.\n", - " Extracted 3 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83901\\atn_83901_spotted-seal_trajectory_20090531-20090707_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83901\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83901\\meta.xml'.\n", - "Processing atn_83902_ribbon-seal_trajectory_20090602-20100101.nc...\n", - "Found 18 records.\n", - " Extracted 12 occurrences with valid locations.\n", - " Extracted 8 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83902\\atn_83902_ribbon-seal_trajectory_20090602-20100101_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83902\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83902\\meta.xml'.\n", - "Processing atn_83904_bearded-seal_trajectory_20090625-20120612.nc...\n", - "Found 98 records.\n", - " Extracted 37 occurrences with valid locations.\n", - " Extracted 32 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83904\\atn_83904_bearded-seal_trajectory_20090625-20120612_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83904\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83904\\meta.xml'.\n", - "Processing atn_83905_ribbon-seal_trajectory_20090602-20090607.nc...\n", - "Found 7 records.\n", - " Extracted 3 occurrences with valid locations.\n", - " Extracted 2 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83905\\atn_83905_ribbon-seal_trajectory_20090602-20090607_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83905\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83905\\meta.xml'.\n", - "Processing atn_83908_spotted-seal_trajectory_20090414-20100507.nc...\n", - "Found 16 records.\n", - " Extracted 9 occurrences with valid locations.\n", - " Extracted 6 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83908\\atn_83908_spotted-seal_trajectory_20090414-20100507_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83908\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83908\\meta.xml'.\n", - "Processing atn_83912_ribbon-seal_trajectory_20090530-20100520.nc...\n", - "Found 113 records.\n", - " Extracted 64 occurrences with valid locations.\n", - " Extracted 43 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83912\\atn_83912_ribbon-seal_trajectory_20090530-20100520_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83912\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83912\\meta.xml'.\n", - "Processing atn_83913_spotted-seal_trajectory_20090606-20090902.nc...\n", - "Found 25 records.\n", - " Extracted 11 occurrences with valid locations.\n", - " Extracted 9 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83913\\atn_83913_spotted-seal_trajectory_20090606-20090902_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83913\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83913\\meta.xml'.\n", - "Processing atn_83916_spotted-seal_trajectory_20090529-20090707.nc...\n", - "Found 6 records.\n", - " Extracted 5 occurrences with valid locations.\n", - " Extracted 1 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83916\\atn_83916_spotted-seal_trajectory_20090529-20090707_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83916\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83916\\meta.xml'.\n", - "Processing atn_83918_ribbon-seal_trajectory_20090606-20100308.nc...\n", - "Found 31 records.\n", - " Extracted 20 occurrences with valid locations.\n", - " Extracted 14 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83918\\atn_83918_ribbon-seal_trajectory_20090606-20100308_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83918\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83918\\meta.xml'.\n", - "Processing atn_83922_spotted-seal_trajectory_20090414-20120528.nc...\n", - "Found 54 records.\n", - " Extracted 18 occurrences with valid locations.\n", - " Extracted 16 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83922\\atn_83922_spotted-seal_trajectory_20090414-20120528_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83922\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83922\\meta.xml'.\n", - "Processing atn_83923_ribbon-seal_trajectory_20090604-20090609.nc...\n", - "Found 13 records.\n", - " Extracted 9 occurrences with valid locations.\n", - " Extracted 7 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83923\\atn_83923_ribbon-seal_trajectory_20090604-20090609_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83923\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83923\\meta.xml'.\n", - "Processing atn_83926_spotted-seal_trajectory_20090414-20100512.nc...\n", - "Found 21 records.\n", - " Extracted 8 occurrences with valid locations.\n", - " Extracted 6 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\83926\\atn_83926_spotted-seal_trajectory_20090414-20100512_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83926\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\83926\\meta.xml'.\n", - "Processing atn_85567_false-killer-whale_trajectory_20081211-20090203.nc...\n", - "Found 448 records.\n", - " Extracted 391 occurrences with valid locations.\n", - " Extracted 292 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85567\\atn_85567_false-killer-whale_trajectory_20081211-20090203_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85567\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85567\\meta.xml'.\n", - "Processing atn_85568_short-finned-pilot-whale_trajectory_20080705-20080802.nc...\n", - "Found 397 records.\n", - " Extracted 344 occurrences with valid locations.\n", - " Extracted 277 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85568\\atn_85568_short-finned-pilot-whale_trajectory_20080705-20080802_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85568\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85568\\meta.xml'.\n", - "Processing atn_85586_false-killer-whale_trajectory_20080717-20080821.nc...\n", - "Found 447 records.\n", - " Extracted 412 occurrences with valid locations.\n", - " Extracted 315 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85586\\atn_85586_false-killer-whale_trajectory_20080717-20080821_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85586\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85586\\meta.xml'.\n", - "Processing atn_85587_false-killer-whale_trajectory_20080717-20080806.nc...\n", - "Found 202 records.\n", - " Extracted 180 occurrences with valid locations.\n", - " Extracted 137 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85587\\atn_85587_false-killer-whale_trajectory_20080717-20080806_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85587\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85587\\meta.xml'.\n", - "Processing atn_85588_false-killer-whale_trajectory_20080717-20080911.nc...\n", - "Found 727 records.\n", - " Extracted 672 occurrences with valid locations.\n", - " Extracted 499 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85588\\atn_85588_false-killer-whale_trajectory_20080717-20080911_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85588\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85588\\meta.xml'.\n", - "Processing atn_85589_false-killer-whale_trajectory_20080717-20080723.nc...\n", - "Found 63 records.\n", - " Extracted 55 occurrences with valid locations.\n", - " Extracted 41 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85589\\atn_85589_false-killer-whale_trajectory_20080717-20080723_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85589\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85589\\meta.xml'.\n", - "Processing atn_85590_false-killer-whale_trajectory_20080717-20081001.nc...\n", - "Found 281 records.\n", - " Extracted 207 occurrences with valid locations.\n", - " Extracted 168 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85590\\atn_85590_false-killer-whale_trajectory_20080717-20081001_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85590\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85590\\meta.xml'.\n", - "Processing atn_85853_ribbon-seal_trajectory_20090605-20100318.nc...\n", - "Found 2706 records.\n", - " Extracted 518 occurrences with valid locations.\n", - " Extracted 293 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85853\\atn_85853_ribbon-seal_trajectory_20090605-20100318_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85853\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85853\\meta.xml'.\n", - "Processing atn_85854_ribbon-seal_trajectory_20090607-20090926.nc...\n", - "Found 281 records.\n", - " Extracted 113 occurrences with valid locations.\n", - " Extracted 73 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85854\\atn_85854_ribbon-seal_trajectory_20090607-20090926_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85854\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85854\\meta.xml'.\n", - "Processing atn_85855_spotted-seal_trajectory_20100508-20101031.nc...\n", - "Found 2743 records.\n", - " Extracted 1311 occurrences with valid locations.\n", - " Extracted 746 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85855\\atn_85855_spotted-seal_trajectory_20100508-20101031_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85855\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85855\\meta.xml'.\n", - "Processing atn_85857_spotted-seal_trajectory_20090607-20100130.nc...\n", - "Found 4932 records.\n", - " Extracted 1871 occurrences with valid locations.\n", - " Extracted 1097 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85857\\atn_85857_spotted-seal_trajectory_20090607-20100130_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85857\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85857\\meta.xml'.\n", - "Processing atn_85858_spotted-seal_trajectory_20100505-20110214.nc...\n", - "Found 4459 records.\n", - " Extracted 1325 occurrences with valid locations.\n", - " Extracted 836 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85858\\atn_85858_spotted-seal_trajectory_20100505-20110214_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85858\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85858\\meta.xml'.\n", - "Processing atn_85859_spotted-seal_trajectory_20090531-20100201.nc...\n", - "Found 2504 records.\n", - " Extracted 1129 occurrences with valid locations.\n", - " Extracted 785 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85859\\atn_85859_spotted-seal_trajectory_20090531-20100201_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85859\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85859\\meta.xml'.\n", - "Processing atn_85860_ribbon-seal_trajectory_20090604-20090801.nc...\n", - "Found 148 records.\n", - " Extracted 31 occurrences with valid locations.\n", - " Extracted 25 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85860\\atn_85860_ribbon-seal_trajectory_20090604-20090801_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85860\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85860\\meta.xml'.\n", - "Processing atn_85861_ribbon-seal_trajectory_20090602-20090925.nc...\n", - "Found 490 records.\n", - " Extracted 205 occurrences with valid locations.\n", - " Extracted 138 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85861\\atn_85861_ribbon-seal_trajectory_20090602-20090925_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85861\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85861\\meta.xml'.\n", - "Processing atn_85862_spotted-seal_trajectory_20090519-20090810.nc...\n", - "Found 1282 records.\n", - " Extracted 381 occurrences with valid locations.\n", - " Extracted 273 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85862\\atn_85862_spotted-seal_trajectory_20090519-20090810_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85862\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85862\\meta.xml'.\n", - "Processing atn_85863_ribbon-seal_trajectory_20090602-20100127.nc...\n", - "Found 3682 records.\n", - " Extracted 750 occurrences with valid locations.\n", - " Extracted 559 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85863\\atn_85863_ribbon-seal_trajectory_20090602-20100127_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85863\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85863\\meta.xml'.\n", - "Processing atn_85864_spotted-seal_trajectory_20090519-20091216.nc...\n", - "Found 3781 records.\n", - " Extracted 1531 occurrences with valid locations.\n", - " Extracted 942 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85864\\atn_85864_spotted-seal_trajectory_20090519-20091216_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85864\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85864\\meta.xml'.\n", - "Processing atn_85865_ribbon-seal_trajectory_20100517-20110204.nc...\n", - "Found 528 records.\n", - " Extracted 178 occurrences with valid locations.\n", - " Extracted 105 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85865\\atn_85865_ribbon-seal_trajectory_20100517-20110204_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85865\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85865\\meta.xml'.\n", - "Processing atn_85866_spotted-seal_trajectory_20090529-20090704.nc...\n", - "Found 529 records.\n", - " Extracted 174 occurrences with valid locations.\n", - " Extracted 120 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85866\\atn_85866_spotted-seal_trajectory_20090529-20090704_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85866\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85866\\meta.xml'.\n", - "Processing atn_85867_spotted-seal_trajectory_20090609-20090929.nc...\n", - "Found 1164 records.\n", - " Extracted 255 occurrences with valid locations.\n", - " Extracted 175 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85867\\atn_85867_spotted-seal_trajectory_20090609-20090929_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85867\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85867\\meta.xml'.\n", - "Processing atn_85868_ribbon-seal_trajectory_20090603-20100223.nc...\n", - "Found 356 records.\n", - " Extracted 153 occurrences with valid locations.\n", - " Extracted 102 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85868\\atn_85868_ribbon-seal_trajectory_20090603-20100223_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85868\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85868\\meta.xml'.\n", - "Processing atn_85869_spotted-seal_trajectory_20100506-20110108.nc...\n", - "Found 3842 records.\n", - " Extracted 1198 occurrences with valid locations.\n", - " Extracted 736 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85869\\atn_85869_spotted-seal_trajectory_20100506-20110108_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85869\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85869\\meta.xml'.\n", - "Processing atn_85870_ribbon-seal_trajectory_20090609-20091228.nc...\n", - "Found 961 records.\n", - " Extracted 255 occurrences with valid locations.\n", - " Extracted 145 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85870\\atn_85870_ribbon-seal_trajectory_20090609-20091228_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85870\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85870\\meta.xml'.\n", - "Processing atn_85871_spotted-seal_trajectory_20090523-20100228.nc...\n", - "Found 4134 records.\n", - " Extracted 938 occurrences with valid locations.\n", - " Extracted 670 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85871\\atn_85871_spotted-seal_trajectory_20090523-20100228_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85871\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85871\\meta.xml'.\n", - "Processing atn_85872_ribbon-seal_trajectory_20090607-20091204.nc...\n", - "Found 774 records.\n", - " Extracted 252 occurrences with valid locations.\n", - " Extracted 153 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85872\\atn_85872_ribbon-seal_trajectory_20090607-20091204_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85872\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85872\\meta.xml'.\n", - "Processing atn_85873_ribbon-seal_trajectory_20100503-20100601.nc...\n", - "Found 253 records.\n", - " Extracted 135 occurrences with valid locations.\n", - " Extracted 90 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85873\\atn_85873_ribbon-seal_trajectory_20100503-20100601_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85873\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85873\\meta.xml'.\n", - "Processing atn_85874_ribbon-seal_trajectory_20090602-20090812.nc...\n", - "Found 249 records.\n", - " Extracted 99 occurrences with valid locations.\n", - " Extracted 70 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85874\\atn_85874_ribbon-seal_trajectory_20090602-20090812_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85874\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85874\\meta.xml'.\n", - "Processing atn_85875_spotted-seal_trajectory_20090531-20090921.nc...\n", - "Found 908 records.\n", - " Extracted 338 occurrences with valid locations.\n", - " Extracted 207 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85875\\atn_85875_spotted-seal_trajectory_20090531-20090921_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85875\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85875\\meta.xml'.\n", - "Processing atn_85876_ribbon-seal_trajectory_20090527-20100325.nc...\n", - "Found 578 records.\n", - " Extracted 324 occurrences with valid locations.\n", - " Extracted 192 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85876\\atn_85876_ribbon-seal_trajectory_20090527-20100325_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85876\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85876\\meta.xml'.\n", - "Processing atn_85877_spotted-seal_trajectory_20100506-20100626.nc...\n", - "Found 1649 records.\n", - " Extracted 961 occurrences with valid locations.\n", - " Extracted 523 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85877\\atn_85877_spotted-seal_trajectory_20100506-20100626_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85877\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85877\\meta.xml'.\n", - "Processing atn_85878_spotted-seal_trajectory_20090608-20100320.nc...\n", - "Found 5689 records.\n", - " Extracted 1826 occurrences with valid locations.\n", - " Extracted 1090 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85878\\atn_85878_spotted-seal_trajectory_20090608-20100320_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85878\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85878\\meta.xml'.\n", - "Processing atn_85879_ribbon-seal_trajectory_20100509-20100630.nc...\n", - "Found 244 records.\n", - " Extracted 102 occurrences with valid locations.\n", - " Extracted 71 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85879\\atn_85879_ribbon-seal_trajectory_20100509-20100630_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85879\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85879\\meta.xml'.\n", - "Processing atn_85880_ribbon-seal_trajectory_20100514-20101224.nc...\n", - "Found 261 records.\n", - " Extracted 82 occurrences with valid locations.\n", - " Extracted 59 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85880\\atn_85880_ribbon-seal_trajectory_20100514-20101224_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85880\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85880\\meta.xml'.\n", - "Processing atn_85881_ribbon-seal_trajectory_20090604-20100330.nc...\n", - "Found 576 records.\n", - " Extracted 161 occurrences with valid locations.\n", - " Extracted 112 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\85881\\atn_85881_ribbon-seal_trajectory_20090604-20100330_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85881\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\85881\\meta.xml'.\n", - "Processing atn_94793_false-killer-whale_trajectory_20091018-20091227.nc...\n", - "Found 413 records.\n", - " Extracted 354 occurrences with valid locations.\n", - " Extracted 281 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94793\\atn_94793_false-killer-whale_trajectory_20091018-20091227_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94793\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94793\\meta.xml'.\n", - "Processing atn_94804_false-killer-whale_trajectory_20101016-20101029.nc...\n", - "Found 166 records.\n", - " Extracted 116 occurrences with valid locations.\n", - " Extracted 100 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94804\\atn_94804_false-killer-whale_trajectory_20101016-20101029_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94804\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94804\\meta.xml'.\n", - "Processing atn_94808_false-killer-whale_trajectory_20091014-20091025.nc...\n", - "Found 108 records.\n", - " Extracted 96 occurrences with valid locations.\n", - " Extracted 72 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94808\\atn_94808_false-killer-whale_trajectory_20091014-20091025_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94808\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94808\\meta.xml'.\n", - "Processing atn_94811_false-killer-whale_trajectory_20091006-20100103.nc...\n", - "Found 676 records.\n", - " Extracted 589 occurrences with valid locations.\n", - " Extracted 448 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94811\\atn_94811_false-killer-whale_trajectory_20091006-20100103_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94811\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94811\\meta.xml'.\n", - "Processing atn_94812_false-killer-whale_trajectory_20091015-20100122.nc...\n", - "Found 678 records.\n", - " Extracted 596 occurrences with valid locations.\n", - " Extracted 449 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94812\\atn_94812_false-killer-whale_trajectory_20091015-20100122_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94812\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94812\\meta.xml'.\n", - "Processing atn_94813_false-killer-whale_trajectory_20091017-20091117.nc...\n", - "Found 287 records.\n", - " Extracted 241 occurrences with valid locations.\n", - " Extracted 184 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94813\\atn_94813_false-killer-whale_trajectory_20091017-20091117_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94813\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94813\\meta.xml'.\n", - "Processing atn_94818_false-killer-whale_trajectory_20091211-20100320.nc...\n", - "Found 704 records.\n", - " Extracted 598 occurrences with valid locations.\n", - " Extracted 471 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94818\\atn_94818_false-killer-whale_trajectory_20091211-20100320_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94818\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94818\\meta.xml'.\n", - "Processing atn_94819_false-killer-whale_trajectory_20091211-20091227.nc...\n", - "Found 131 records.\n", - " Extracted 88 occurrences with valid locations.\n", - " Extracted 73 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94819\\atn_94819_false-killer-whale_trajectory_20091211-20091227_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94819\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94819\\meta.xml'.\n", - "Processing atn_94820_false-killer-whale_trajectory_20091219-20100403.nc...\n", - "Found 596 records.\n", - " Extracted 410 occurrences with valid locations.\n", - " Extracted 356 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94820\\atn_94820_false-killer-whale_trajectory_20091219-20100403_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94820\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94820\\meta.xml'.\n", - "Processing atn_94821_blainvilles-beaked-whale_trajectory_20091221-20100111.nc...\n", - "Found 111 records.\n", - " Extracted 80 occurrences with valid locations.\n", - " Extracted 71 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94821\\atn_94821_blainvilles-beaked-whale_trajectory_20091221-20100111_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94821\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94821\\meta.xml'.\n", - "Processing atn_94822_false-killer-whale_trajectory_20091219-20100129.nc...\n", - "Found 345 records.\n", - " Extracted 249 occurrences with valid locations.\n", - " Extracted 209 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\94822\\atn_94822_false-killer-whale_trajectory_20091219-20100129_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94822\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\94822\\meta.xml'.\n", - "Processing atn_98364_false-killer-whale_trajectory_20131023-20140223.nc...\n", - "Found 824 records.\n", - " Extracted 522 occurrences with valid locations.\n", - " Extracted 373 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\98364\\atn_98364_false-killer-whale_trajectory_20131023-20140223_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98364\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\98364\\atn_98364_false-killer-whale_trajectory_20131023-20140223_event.csv\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98364\\meta.xml'.\n", - "Processing atn_98365_false-killer-whale_trajectory_20131023-20131107.nc...\n", - "Found 151 records.\n", - " Extracted 94 occurrences with valid locations.\n", - " Extracted 73 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\98365\\atn_98365_false-killer-whale_trajectory_20131023-20131107_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98365\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\98365\\meta.xml'.\n", - "Processing atn_99277_ribbon-seal_trajectory_20140412-20140503.nc...\n", - "Found 2531 records.\n", - " Extracted 777 occurrences with valid locations.\n", - " Extracted 241 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99277\\atn_99277_ribbon-seal_trajectory_20140412-20140503_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99277\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99277\\meta.xml'.\n", - "Processing atn_99279_ribbon-seal_trajectory_20140426-20140513.nc...\n", - "Found 484 records.\n", - " Extracted 46 occurrences with valid locations.\n", - " Extracted 14 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99279\\atn_99279_ribbon-seal_trajectory_20140426-20140513_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99279\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99279\\meta.xml'.\n", - "Processing atn_99280_ribbon-seal_trajectory_20140428-20140506.nc...\n", - "Found 731 records.\n", - " Extracted 365 occurrences with valid locations.\n", - " Extracted 101 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99280\\atn_99280_ribbon-seal_trajectory_20140428-20140506_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99280\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99280\\meta.xml'.\n", - "Processing atn_99282_ribbon-seal_trajectory_20140428-20140514.nc...\n", - "Found 507 records.\n", - " Extracted 153 occurrences with valid locations.\n", - " Extracted 40 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99282\\atn_99282_ribbon-seal_trajectory_20140428-20140514_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99282\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99282\\meta.xml'.\n", - "Processing atn_99283_ribbon-seal_trajectory_20100509-20110518.nc...\n", - "Found 5637 records.\n", - " Extracted 684 occurrences with valid locations.\n", - " Extracted 420 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99283\\atn_99283_ribbon-seal_trajectory_20100509-20110518_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99283\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99283\\meta.xml'.\n", - "Processing atn_99287_bearded-seal_trajectory_20120704-20130312.nc...\n", - "Found 9936 records.\n", - " Extracted 839 occurrences with valid locations.\n", - " Extracted 539 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99287\\atn_99287_bearded-seal_trajectory_20120704-20130312_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99287\\eml.xml'.\n", - " found 1 HumanObservations.\n", - " Created 1 events.\n", - " Saved data to data\\dwc\\99287\\atn_99287_bearded-seal_trajectory_20120704-20130312_event.csv\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99287\\meta.xml'.\n", - "Processing atn_99288_spotted-seal_trajectory_20100522-20100901.nc...\n", - "Found 27 records.\n", - " Extracted 15 occurrences with valid locations.\n", - " Extracted 10 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99288\\atn_99288_spotted-seal_trajectory_20100522-20100901_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99288\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99288\\meta.xml'.\n", - "Processing atn_99292_ribbon-seal_trajectory_20100523-20100612.nc...\n", - "Found 19 records.\n", - " Extracted 11 occurrences with valid locations.\n", - " Extracted 9 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99292\\atn_99292_ribbon-seal_trajectory_20100523-20100612_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99292\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99292\\meta.xml'.\n", - "Processing atn_99293_ribbon-seal_trajectory_20100509-20100801.nc...\n", - "Found 49 records.\n", - " Extracted 32 occurrences with valid locations.\n", - " Extracted 16 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99293\\atn_99293_ribbon-seal_trajectory_20100509-20100801_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99293\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99293\\meta.xml'.\n", - "Processing atn_99295_spotted-seal_trajectory_20100523-20110730.nc...\n", - "Found 169 records.\n", - " Extracted 82 occurrences with valid locations.\n", - " Extracted 54 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99295\\atn_99295_spotted-seal_trajectory_20100523-20110730_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99295\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99295\\meta.xml'.\n", - "Processing atn_99297_ribbon-seal_trajectory_20100515-20100530.nc...\n", - "Found 13 records.\n", - " Extracted 5 occurrences with valid locations.\n", - " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99297\\atn_99297_ribbon-seal_trajectory_20100515-20100530_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99297\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99297\\meta.xml'.\n", - "Processing atn_99298_ribbon-seal_trajectory_20100517-20120530.nc...\n", - "Found 199 records.\n", - " Extracted 104 occurrences with valid locations.\n", - " Extracted 66 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99298\\atn_99298_ribbon-seal_trajectory_20100517-20120530_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99298\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99298\\meta.xml'.\n", - "Processing atn_99299_ribbon-seal_trajectory_20100505-20100605.nc...\n", - "Found 39 records.\n", - " Extracted 20 occurrences with valid locations.\n", - " Extracted 12 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99299\\atn_99299_ribbon-seal_trajectory_20100505-20100605_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99299\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99299\\meta.xml'.\n", - "Processing atn_99300_ribbon-seal_trajectory_20100517-20110513.nc...\n", - "Found 50 records.\n", - " Extracted 30 occurrences with valid locations.\n", - " Extracted 19 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99300\\atn_99300_ribbon-seal_trajectory_20100517-20110513_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99300\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99300\\meta.xml'.\n", - "Processing atn_99301_ribbon-seal_trajectory_20100523-20110201.nc...\n", - "Found 33 records.\n", - " Extracted 19 occurrences with valid locations.\n", - " Extracted 12 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99301\\atn_99301_ribbon-seal_trajectory_20100523-20110201_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99301\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99301\\meta.xml'.\n", - "Processing atn_99305_spotted-seal_trajectory_20100522-20100730.nc...\n", - "Found 55 records.\n", - " Extracted 32 occurrences with valid locations.\n", - " Extracted 20 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99305\\atn_99305_spotted-seal_trajectory_20100522-20100730_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99305\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99305\\meta.xml'.\n", - "Processing atn_99306_ribbon-seal_trajectory_20100523-20100530.nc...\n", - "Found 8 records.\n", - " Extracted 6 occurrences with valid locations.\n", - " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99306\\atn_99306_ribbon-seal_trajectory_20100523-20100530_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99306\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99306\\meta.xml'.\n", - "Processing atn_99308_ribbon-seal_trajectory_20100517-20110607.nc...\n", - "Found 29 records.\n", - " Extracted 0 occurrences with valid locations.\n", - " Extracted 0 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99308\\atn_99308_ribbon-seal_trajectory_20100517-20110607_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99308\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99308\\meta.xml'.\n", - "Processing atn_99309_ribbon-seal_trajectory_20100514-20101215.nc...\n", - "Found 28 records.\n", - " Extracted 19 occurrences with valid locations.\n", - " Extracted 7 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99309\\atn_99309_ribbon-seal_trajectory_20100514-20101215_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99309\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99309\\meta.xml'.\n", - "Processing atn_99310_bearded-seal_trajectory_20110617-20120606.nc...\n", - "Found 155 records.\n", - " Extracted 109 occurrences with valid locations.\n", - " Extracted 54 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99310\\atn_99310_bearded-seal_trajectory_20110617-20120606_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99310\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99310\\meta.xml'.\n", - "Processing atn_99312_ribbon-seal_trajectory_20100516-20100718.nc...\n", - "Found 53 records.\n", - " Extracted 32 occurrences with valid locations.\n", - " Extracted 20 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\99312\\atn_99312_ribbon-seal_trajectory_20100516-20100718_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99312\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", - " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\99312\\meta.xml'.\n", "\n", "--- 3. Conversion Complete ---\n", - "✅ Success! Processed 289 files.\n" + "✅ Success! Processed 3 files.\n" ] } ], @@ -3516,9 +910,12 @@ "import glob\n", "\n", "# Step 1: Download all .nc files from the URL\n", - "local_files = glob.glob('data\\\\src\\\\*.nc')#[:10]\n", - "\n", + "#local_files = glob.glob('data\\\\src\\\\*.nc')#[:10]\n", "\n", + "local_files = ['data\\\\src\\\\atn_137491_spotted-seal_trajectory_20180418-20180526.nc',\n", + " 'data\\\\src\\\\atn_137494_ribbon-seal_trajectory_20140426-20140426.nc',\n", + " 'data\\\\src\\\\atn_38553_bearded-seal_trajectory_20110618-20120314.nc'\n", + " ]\n", "# Step 2: Convert the downloaded files to individual Darwin Core CSVs\n", "if local_files:\n", " convert_to_dwc_individual(local_files)\n", diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip new file mode 100644 index 0000000000000000000000000000000000000000..b6f25b7421862f215c588c026e3ed0306437bf10 GIT binary patch literal 6334 zcmb`LWl&t(mVmpl#@(IZkl>a84Z(uD6Wkhi4I~724Z$V22T5>i+?t?);1-(3B{+de z-c-%pJ5~3-SGQ*GI`(JPs_(45s@A8jgp5KAK>xLKG=N5cKP+(oJ;2=4*_4-GSl}tI zsfVkJr>C{m6Ax>1M^jICb9-w`PZxJTQ$8ME5gq|vkthFp5#$pxwRUo`;j;Ab_VUF7 z08xHN{MSuK8wUV#7>$Lv{JNx}v5@`*UY8yo{4gJ;``$Qu3ae5Dtc*6E+DTmF$DH8o z$ocqyG~K(~)fAb%E@=@0A2!ZeLq;By=_XPOB&KmUXS7~3x1G)N zh>fpkl`%#!F}GyYI%B^6*zt>$hd06nMhsPyU1%0WRSMp_L~*8Eoj`RZ5c(2Y?&j7n z3ZzH?fcjtJ2LEH+-qy~Z{|RrW_)*MXyk#$gAJ#z1O35V}ZJ!^ZqCQ`4X8%BAPoFTQ zD*LdKk44tnOnqn`PSIXiS`jL&q=NoLXuz&*&I)4RC4P0t_ze3=vfajyt!@gJr7gvM zgzhymAuglH&#P3GbTOPSDof!SZ7Y?FucK=-!yCd#4p~WFZ#Z`tx5ucqp*d@*w~!XJ`dlb}GlD3K|7cO=@WtamDOK4mYwe+Il17=} zI(Kp$d97BLFfxDT>dehkfTvzwHa=0H7k8a{<0C{(M*;6qlx-`xZf8S86ZrEn_rJ@1 ztiXW9g>hZ?h{7Ojynm|^vy5^_EPO^J0AXa!?SgdER!z?{j!}5q@1hVq#1AD8VJ8t| z4A#18Zw9Bxj-xylQms@dyz?*2ztk0iYS-(m=wllr#WN@+FcMK^@r>lKi>V$@-NM`m z_ajv-AE{17J&}6=|1op}Xp(?S)i46wd$JWFOnJn9_JTDqJT^F3l zfk;Qa#L4fHJ3wbr2$jrZMv*+3CXuuHfWBcRFnC;IrEsk%8^0_L&uwE@0erG3K~di& zZSy^OjCnozeMHEeCb5j>6E-?}G6U%LnH$5A-vel9ljFcDTjY zN*NtCXmvN@PdyMC;Fxm#E{R#iRB7lXHSVdBhP-1~ddyosmh%kO&C zf5V7G_v^f`f&Q*uLBHzN+R2g2*U9nUHOm94pB@V$7ngS=t@~ptd_;=@TWwr=NT0q_ z(jyo7Eazm!*P=o!jliR!6J7T!DUO!iEG^z`i#gxMn9L9eL?9w?xGv+!xR=}Sv_o>E zX)Z#<%3zE@EIoRtl-H+-y&waXNDfw&Iopeze81yWb9UoOJIGLlMV3^WZ#)=nu%+Yx zx=}dA4rqCqIofKdUa4L2wd++AqwRQr{jubLfUExNmaREW*a{|ShY+e%#yqT>Bw$Mf z)=8m^35N1A#`e8?HCB;H(h%Oeo#N>s8ZqOS&;Qj+aGh}Cgh!|^lvSQ=DmtAwX2`sR z^B%f9Cx8pq+aoL0oBhH^>^AmNnr}BSp7Dm$!-Ak1JjXFRI%0P|rEWTI508+ku^PKm z7GsCN6lR6WJ=;QcQ(_Bsv}xqOV-a~$8VENEXjW?d(hq|oPV?KtDgNr_RywtuAi zM)l(p<7LS8u)dR*-1if+K>=rc*?`DeJY#%ePEB-32z%glGuVkDG1~@4!DE+dBSHLp z78opBt7X}gvr2?9TZpl;oIEDZzv7p?cLO)Bk6bx1Sc{r>Y~$IH z8i~%*<@4KbN9kJH@=fw?s*(`PxhF43%j#&eCc7KIB4Z>zAxlDY1s|_r**2!eLzZ+2 z+^GbfBj3wnDB%brABKnx5@Z9nTEA=*N76bvfHWD=!?wPuQxz{40;zL{8ih&(1iXxE zMKd0}`ZTm3 zDH#u;)D&T5;6+VK2mIX|u{A<$F*IV83F*QYg(T$ZSmDj0EhZQN{WA_2X@d5tmG-i3 znekf?{1||8m77FxN6JwYhftqcga<(_nwdtPKQ{JE6eEFa>5G;*<+VV%RHTu>O*Kf- zc#;!I2+J;x7;WwC&}cjzwPy+z!z5~uW`m!A9A|@EKrph@$yHD-)N%eb70iI`)W|va z1rpj96TbFR4>Ili) z8lh~Y1)(nsIW1-V`)40CF(WuzxSoia?wqTfzJ~&s z3BWGF&D|dxOCpt~Uz?OAKSZL0lD0;|k#=Eje2tGG%o^Re`onA{Zb7!gCfnre!%oNvZO_i# z(}TOQlbt*L)(nRp6?xwFRc&FN%>wt=cG*%tkK9I;wS1L`5?yTy>+s|&Wy=jZ8_Vq86s=e8M3WF7F{Q@KI6^W`+7R`ps~Wy+kdEHs&FEjKf6PWpX%c0Z5`WAuMP1$4MP^8ZEDB!EW$aLu!LpkM5AW*E8%7Y zuAI-2C}xM;v=eaPqV#pcoKu{cr{^4SC&^2=xvk47zAXfdxERbaZwOl@D3}Wrc8mx0 zs-b`Z?jp?*31oyk5U*i#9vcwy9p+ zhRg)UpyVfN9>i89WvTUgaaiP%IFkf8a`02q7STb=EZin9! zUTUj|;uCD}F#O<2W+4UR(DU+XWqz;%_2_PkU3BEV-fHlBd`8Nj>!ENgLU0xOQ=k6rxh#NL$O`EKDLDgFAKC8Jq<^kK zf9?@_gshgS%`BrAbd0=*HA6lBx=~E1FqiSA_k4E=$#f1>6jf;fGoAXgAqi6VU`0e~ z(ER&_Ci86r&h1`r9n7E-3`}Li(Hd9M`7*I3h@ce)MJ;k8zDVmqZbM=3<6$gW;t;M= zoZ`GG(oioAH?Hw79BBhZ-e~MCT0U`=b_YFXrQ@L{vkXaPrurY8`2n1E9O>KPnK@$1 ztwzx>tkm&hcHv$*GZDC|gM+8Ed4XGe;gL7fy?69-+=ma4umLx{x-aWQGOvth6E$>VEb{JD= z0$PK6&@jd3rNY($O(FPYwX8l67D@<4dE3kCehk6pzJMTS{{*Lb1{_*#j9h%w-39WM zwqwR~QhYLZ5<};f+{Xf7lAvVcITB9qnuaKvTYmyuzuN3Xe2+tRg=a#A>>)+623Q=F z(t=ml6UaDGW;w$ru`6Mcr#Iif7g!{WQY4eVY*hD<5WGm)v1GT?PuLHuyqC-i3I%Y zD{PklOm2zjHgFeGR!OO^pFu=fzC`E|P+5y>j5tP?~fz*eHXsE72&`Hn$D2i%W!+dVMT^_?V*u^t?}9nxZeUmL1gl1XL?bE=HBUwMi} zQ58D!ZGZS=&x_7ZKtP|A75xzFH~Vs0Z|#MVM|2{ZLv!^y&IAW}D$oK;J1HH?Ck(QV z=Jl^;Od8`G3al{BkU>k)QSc#j=Z~LiXE5dTH-CVfv zLbSYHe4Qv^uQfnN9e!8*b=A0@{8gs z4OUl_lDxR>ve|=RWp9?ow1T*How$(#T3E`6nYhcWjTZKUbt0g$E$4>g%~C`4l7~j& zwsrbvHSUZ>XD??J7jIkP5+Tvgb~JZ^i=VO_Nr;*jJ7Hf)7WZPt^q0?4^XOeUyj(fN zb!19Xb&>{$USch{pDOx}!}8C;4XMwnw#bxC03;zBcEP0%z-n%qY;IN~PymPMu zQW3^ReQwLtrnqG~KYn2?I&r!OFWMU{X>P7gjPzgEAKtWtx5L|EkslcEQ6P`P>cz#} zo$q)RVx68|y!`Zuo$x}L2t<@-#snphqehq~7JN5_!e6~Yzc!Wo3`B{xAJCcX4Y{9v zPF9#5V%CT!=PpZKt2Rx0AC$C)d7t&Ocw5bsgX2@R?d1u0BkXkNqa=BH)@}!_Dlgwn ziv&$?W>DOx;qOFja7&r{5qGZc@qv3)h$8jeZnlV^a)PR;En*`6^VvGJKE1^b_BGCo z9Y0MY-t?h4>jCXd$mYc`K8I_}Lg{0JAe%}i&e55O9*T`5SWCIQ)fUlzjw8#?j`GlB5y=^88G%%mJ!b+llWDsd$M*6p_2q&H$S;YK_J zXG$w>52~Xwt~5GsXw2{-9Ar$9U$G-j*wuW>|FcROJ{#Ag|7g%8yx*rVr^Ikf-$1k2 zQT#L-WF2VHC91QkVMw`I7~GWDXfk0s=abUdq;=^&Yq(KHkm?+Hv))ebh)-5}39@ME z7(Ig8qG8o7>1rf4 z$h#5M(YVKXVF4-Kb1|88t>5~-(3Y15d@aC*pvi!Esm)lD6Q}(MhNl+A9K)41>sNZ1 zVk4EjEUHV|InFK!dT)C96NhvIxN@R1_)}FJd3T-*4&WF9QVl7%_7&hy`JYW zHdsyW+Bjc)EDU7DN!$ZD@4>V~TI#ATEW4fG&QAsXxM|_n3+;^imilaUX0OrbwDsXf zRL3%vdF1rUvftn=pyf_gB8tt&y_K_yL(luPRq37HH~EH~*h4}g^(7e2_vmI0C+p#T zI@aumf7#HfpqDXSzs$%h+~0=+h(wJ1zxw%)rc@k2{>%6M_iB9m`}zMXqfr6C->2&T zrtnA62>w$FF2H}9!e0v7zsTW_@<{qmIW+tN_m43A8^QS(iTtsFf&P?;B`V-A&DCE7 j`{R#C|5Gps5#X;o;QvHJMf+U@sJ}MnFA9OAzrX$qc*z;a literal 0 HcmV?d00001 diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml index 9fa569e..1667b9b 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml @@ -7,14 +7,15 @@ https://ipt-obis.gbif.us/resource.do?r=atn_137491_spotted-seal_trajectory_20180418-20180526 + https://doi.org/10.25921/wp4e-ph20 Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77 - Mathew - Biddle + Megan + McKinzie Animal Tracking Network - Physical Scientist + Data Manager
U.S. Integrated Ocean Observing System Program Silver Spring @@ -23,7 +24,7 @@ US
- mathew.biddle@noaa.gov + mmckinzie@mbari.org https://atn.ioos.us/
@@ -86,7 +87,7 @@ author -2025-05-27T21:27:32Z +2025-05-27 eng Wildlife Computers SPOT tag (ptt id 137491) deployed on a spotted seal (Phoca largha) by Josh London in the Bering Sea from 2018-04-18 to 2018-05-26 @@ -128,9 +129,9 @@ satellite telemetry tag + arbitrary keywords
- Access Constraints: none Use Constraints: @@ -162,10 +163,10 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - 2018-04-18T04:45:00Z + 2018-04-18 - 2018-05-26T02:54:22Z + 2018-05-26 @@ -189,23 +190,13 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht NOAA Alaska Fisheries Science Center principalInvestigator - - josh.london@noaa.gov https://www.fisheries.noaa.gov/alaska/marine-mammal-protection/ice-seal-research-alaska - This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the OTN database and filtered and summarized according to international agreed-upon standards. + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. @@ -260,6 +251,20 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht + + U.S. Animal Telemetry Network (2023). Marine animal satellite telemetry location and profile data from the U.S. Animal Telemetry Network (ATN). [indicate subset used]. NOAA National Centers for Environmental Information. Dataset. + ASCII + + + HTM + + + + + https://doi.org/10.25921/wp4e-ph20 + + + diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml index af481a7..fac5e14 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml @@ -6,42 +6,40 @@ atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv - - - - - - - - - + + + + + + + + + atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv - - + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -51,14 +49,14 @@ atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv - - - - - - - - + + + + + + + + diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml index bda79b3..b2b1e5a 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml @@ -7,14 +7,15 @@ https://ipt-obis.gbif.us/resource.do?r=atn_137494_ribbon-seal_trajectory_20140426-20140426 + https://doi.org/10.25921/wp4e-ph20 Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135 - Mathew - Biddle + Megan + McKinzie Animal Tracking Network - Physical Scientist + Data Manager
U.S. Integrated Ocean Observing System Program Silver Spring @@ -23,7 +24,7 @@ US
- mathew.biddle@noaa.gov + mmckinzie@mbari.org https://atn.ioos.us/
@@ -86,7 +87,7 @@ author -2025-05-27T21:01:36Z +2025-05-27 eng Wildlife Computers SPOT tag (ptt id 137494) deployed on a ribbon seal (Histriophoca fasciata) by Josh London in the Bering Sea from 2014-04-26 to 2014-04-26 @@ -128,9 +129,9 @@ satellite telemetry tag + arbitrary keywords - Access Constraints: none Use Constraints: @@ -162,10 +163,10 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - 2014-04-26T00:51:11Z + 2014-04-26 - 2014-04-27T15:49:06Z + 2014-04-27 @@ -189,23 +190,13 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht NOAA Alaska Fisheries Science Center principalInvestigator - - josh.london@noaa.gov https://www.fisheries.noaa.gov/alaska/marine-mammal-protection/ice-seal-research-alaska - This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the OTN database and filtered and summarized according to international agreed-upon standards. + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. @@ -260,6 +251,20 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht + + U.S. Animal Telemetry Network (2023). Marine animal satellite telemetry location and profile data from the U.S. Animal Telemetry Network (ATN). [indicate subset used]. NOAA National Centers for Environmental Information. Dataset. + ASCII + + + HTM + + + + + https://doi.org/10.25921/wp4e-ph20 + + + diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/137494/meta.xml index 6675cab..589c13a 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137494/meta.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/137494/meta.xml @@ -7,27 +7,25 @@ atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv - - + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml index 1102fd5..2bd3723 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml @@ -7,14 +7,15 @@ https://ipt-obis.gbif.us/resource.do?r=atn_38553_bearded-seal_trajectory_20110618-20120314 + https://doi.org/10.25921/wp4e-ph20 Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f - Mathew - Biddle + Megan + McKinzie Animal Tracking Network - Physical Scientist + Data Manager
U.S. Integrated Ocean Observing System Program Silver Spring @@ -23,7 +24,7 @@ US
- mathew.biddle@noaa.gov + mmckinzie@mbari.org https://atn.ioos.us/
@@ -86,7 +87,7 @@ author -2024-08-28T00:07:07Z +2024-08-28 eng Wildlife Computers SPLASH10 tag (ptt id 38553) deployed on a bearded seal (Erignathus barbatus) by Peter Boveng in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14 @@ -128,9 +129,9 @@ satellite telemetry tag + arbitrary keywords - Access Constraints: none Use Constraints: @@ -162,10 +163,10 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - 2011-06-18T03:00:00Z + 2011-06-18 - 2012-03-14T02:53:09Z + 2012-03-14 @@ -189,23 +190,13 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht NOAA Alaska Fisheries Science Center principalInvestigator - - peter.boveng@noaa.gov https://www.fisheries.noaa.gov/alaska/marine-mammal-protection/ice-seal-research-alaska - This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the OTN database and filtered and summarized according to international agreed-upon standards. + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. @@ -260,6 +251,20 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht + + U.S. Animal Telemetry Network (2023). Marine animal satellite telemetry location and profile data from the U.S. Animal Telemetry Network (ATN). [indicate subset used]. NOAA National Centers for Environmental Information. Dataset. + ASCII + + + HTM + + + + + https://doi.org/10.25921/wp4e-ph20 + + + diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/38553/meta.xml index 792b0a8..1e2686b 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/38553/meta.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/38553/meta.xml @@ -6,42 +6,40 @@ atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv - - - - - - - - - + + + + + + + + + atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv - - + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/datasets/atn_satellite_telemetry/templates/eml.xml.j2 b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 index 1a1b928..1e9c49e 100644 --- a/datasets/atn_satellite_telemetry/templates/eml.xml.j2 +++ b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 @@ -7,6 +7,7 @@ https://ipt-obis.gbif.us/resource.do?r={{ dataset_short_name }} + https://doi.org/10.25921/wp4e-ph20 {{ title }} @@ -55,7 +56,7 @@ {{ party.contributor_role }} {% endfor %} -{{ date_created }} +{{ date_created.split("T")[0] }} eng {{ summary }} @@ -71,9 +72,9 @@ {% for keyword in arbitrary_keywords.split(", ")%} {{ keyword }} {% endfor %} + arbitrary keywords - Access Constraints: none Use Constraints: @@ -105,10 +106,10 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - {{ time_coverage_start }} + {{ time_coverage_start.split("T")[0] }} - {{ time_coverage_end }} + {{ time_coverage_end.split("T")[0] }} @@ -132,23 +133,13 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht {{ creator_institution }} {{ creator_role }} - - {{ creator_email }} {{ creator_institution_url }} - This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the OTN database and filtered and summarized according to international agreed-upon standards. + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. @@ -203,6 +194,20 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht + + U.S. Animal Telemetry Network (2023). Marine animal satellite telemetry location and profile data from the U.S. Animal Telemetry Network (ATN). [indicate subset used]. NOAA National Centers for Environmental Information. Dataset. + ASCII + + + HTM + + + + + https://doi.org/10.25921/wp4e-ph20 + + + diff --git a/datasets/atn_satellite_telemetry/templates/meta.xml.j2 b/datasets/atn_satellite_telemetry/templates/meta.xml.j2 index 1469bc1..ad2e8b5 100644 --- a/datasets/atn_satellite_telemetry/templates/meta.xml.j2 +++ b/datasets/atn_satellite_telemetry/templates/meta.xml.j2 @@ -6,14 +6,14 @@ {{ event_filename.split("\\")[-1] }} {% for event_colname in event_cols_list %} - {% endfor %} + {% endfor %} {{ occurrence_filename.split("\\")[-1] }} {% for colname in cols_list %} - {% endfor %} + {% endfor %} {% else %} @@ -23,7 +23,7 @@ {{ occurrence_filename.split("\\")[-1] }} {% for colname in cols_list %} - {% endfor %} + {% endfor %} {% endif %} @@ -32,8 +32,8 @@ {{ emof_filename.split("\\")[-1] }} - {% for emof_colname in emof_cols_list %} - {% endfor %} + {% for emof_colname in emof_cols_list %} + {% endfor %} {% endif %} From 51895950790f6b36797637eb76ee2a12eb385769 Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Fri, 1 Aug 2025 11:26:46 -0400 Subject: [PATCH 04/14] bug fixing with outputs --- .../convert_ATNnc2DwC.ipynb | 12 ++++++------ ...tted-seal_trajectory_20180418-20180526.zip | Bin 6334 -> 6356 bytes ...seal_trajectory_20180418-20180526_emof.csv | 6 +++--- .../data/dwc/137491/eml.xml | 5 +++++ .../data/dwc/137491/meta.xml | 15 +++++++-------- .../data/dwc/137494/eml.xml | 5 +++++ .../data/dwc/38553/eml.xml | 5 +++++ .../templates/eml.xml.j2 | 5 +++++ .../templates/meta.xml.j2 | 2 +- 9 files changed, 37 insertions(+), 18 deletions(-) diff --git a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb index 3477dc2..60ef49b 100644 --- a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb +++ b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb @@ -484,7 +484,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 29, "metadata": { "id": "c9G3a6N2bMh2" }, @@ -623,7 +623,7 @@ " row])\n", "\n", " emof_df = dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation',\n", - " ['organismID','occurrenceID','eventID']\n", + " ['occurrenceID','eventID']\n", " ].merge(\n", " new_rows,\n", " left_index=True,\n", @@ -643,7 +643,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 30, "metadata": {}, "outputs": [], "source": [ @@ -705,7 +705,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 31, "metadata": {}, "outputs": [], "source": [ @@ -766,7 +766,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 32, "metadata": { "id": "aD62GgzSS0zu" }, @@ -852,7 +852,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 35, "metadata": { "colab": { "base_uri": "https://localhost:8080/" diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip index b6f25b7421862f215c588c026e3ed0306437bf10..c045138d3a72d9648a581b76e105684acef92a73 100644 GIT binary patch delta 3638 zcmZu!c{CL6`kxubntcpn?6PI-k$qpXW|{2!z6=^mOd1-LLKs_#L^8+{BKtD7At{Z0 z&yqDuA&Gvu_uSw4cJ6(j^ZxNZ=ULzLJm-8qZPFy^3+6^-_LD*yxsT&xE2OGzgioI6Byaae01xKfr!Hu^X}Lv3 z?aZl06C0(yAEe|zgG8HW6vn3Z89#rku%-WmvTtyg(4JaH9L9}L5O01g?uH84p^j`| zNwdDS^J{+Yhx(4AqtO)ynC4OYz(@oBWeJu;Ke6FjXZ2BnYdLE#JfllE%tTzC+#?|r z7>@DD?t!DhF-wp4rcrY<6XD*W8!edS<7 zMyvN|(hNNizw(*Z+=!BDh5k*|7ytlR0s;X4`~n;r=s|Jb|IKOK3UC61x5KrAd?^C{ zrKyFJse{f{L12l0sRE{J3&A{K%!AV2SXIZEV+vW_wwG;^1~LXUg)lt9iZ35!sFmlR zDr7w`jS9KWpDHZIYhKY8ChuK&G<4YMK)B-~E@CmmG}f6zBQ%_Bic-8|rdNS1ncqmI z@NMG^w?ArFI(Z(o5rH0>{#D1lR!7l*jd-^3+61YzlgrbLeI8h>c!Uhbe1au?or{1( zCBK{oC2gCXdR0wd>|9%`B>Nz+i42awOmjt0MvrViQYLuOwhQP~oggQ;7!saQ-3BZN z2Q%Dtrt+r`(Xv)zWu%4MQLCCs1k) zzTznkTOMUX$QM20>Si5A=BM1nh^T9%A=id^Vsa*L3n#r=_%uxDUIZC$!Tjd;J{Qw! zV1Ku{=jJrM24Hbrq@$iv;zzkk7&ep=o4pW37uEW{dK7Hj@r~skwsIh&yOzzJefaT< zhdz9qJ9e$%P_WvXts!^0x0k$qQ-WH5FKJR#)gYMN$iVCbY^#qE@@I$K-C^pgEp{X} zg*_}IFL<%@?Wv%z++qx83{Ld81;7wGgdZ^22O zEIHY`tNAICs(Zx!Ym%r!3jiP;UrpemKafbwDT0)PfLY#5&n~-Vup(kusF-CA7S>SI zblQ3X+i|07^P-rH<|;cCM836pnrK`!TZsTgE^JRUE^%~Eob|GgwC<0v;7>43pAbc= zNKbCA7H~t}(ZM1==(}+~vg8o?-HQHLUx%Fn^T?KtEUqhi~t8!{|yuz}UPb$m-uHq=}lQ}bZc8dO0D`qi|V}7?($?lGF6`MZPDDQ*}9p~e{ zR0a*T<=V*0-=MO+REd3w9l~3EAnI4zTi862*KDc!s;Rom6`Z4G@np6o0=Ic?jl2-! zYXZgb*f?VfW;)+Dti0wp;99I9P#g~CAg|4d+KeDNmhq!yi~u#nb}e~#J*kaOcGymu zr@p*~LC(b7Wn?rwzP5vVeNiu4U=SP&d&kZ-yEi=f(KX9Cf&YOf+p*J_neP#y39rcZ z#XHl;-9j1b*HPNsJ6ad+T5ajARke{yAW6Ow+{6G7BbVh&jO3Lgo5G5qCzr%<#PyM0b?Y53drv^5pvC0}X;$y9!Kg*a zY%oUerUYtQS|Ucl-x!@b@YVO4l}p7Tc)5+ELw_(1x zxN2_EXwwr&5@sj+@|}sFBDYtpUMiq#IL?rQT^coOmH1KrlJbvGuska%t2&;BplPun zvPC?|OQf*V+JN8i579c7l;$bOopa|5H^5R_p9<^5HeE?Lg8wpT1$W0ggyh&)VuWdv z&Ax6__AV!@gu%eZxjU?sFl0h3DMc`CYHU-1`K?D#Am7n*-08&@z^i+fWtVDCeq+LSlnPc@P0lUG@pdLrfV|ZT|qg zAOPhj(^MlOj1H=cMi9{Bjx?>dtcsfteSQbfKw(BKWg|Y+qHeUf*`mXmu&1m-MtB}7 zv_&#sN73y%e$>qH088|3MW-K2tSln-9$;-cIjeF?v87*c8LJ~bp>Q|Sh8+p6RE z%u0tu;qB}Xq_<(~nS$_1kYmfK2J}fQxTpuO<=wH*FWKxDX}J3dfoYKh_(^9ueZl+R zPfvZ*R%o7v#(h7qCNOM4_AAgm+I|u)fyXxnYEpD1ORI1zXT1Vq9$h85mCW>=A_+^G z&7~aUW#exiZbof;zcG<{<}CjuwM+B1<7|ySqmS0Zz`*37pL2Eo8EeNn$B%9ZqSY7T z*2bxw(w49Mj1!C)ufp7K6IA8fP&;7lv~OfdcUXA5Oy#S7h4}2yQx^9t-DVzRykE%X zlTxjZcF4EHE8H^1tsyThL@vu2I$C+F+g7Nbo_wc>#YamZlvNsCnMa)qB2^uQLq!VT&cje2jzz2D%?JYPd6Mlx}l@fILgs&`z++9#q_4dB@g=RYQ*;0ANyU%#v^PZu0O-j4 zjgf%%e}L2fA1VMZE}jMU7jPWPo;RD8V(gng7Uyr@mAME44`l3D138(K5b343t z&J6^PQ}rhK&L0GyX0Dz=tIUVpPza>_oP?|0pa_`f(kkJnxP$6w3PJ11_p9c-T{-WF;K|Hm#KWqLp4IBOix)Yvi{?%lQK@^mE8o!5M7N{ zogWIBqk7-Ig38YZa+8{AMM!-gc9Zqy*e3FzcdpRD`wJ1e`KG_cyNK%Nv(FmxK)VqH z0Lasy&pr?YA^Q(W0^0wRJE#KK|Gf#gLZ}_{IdS;g8b{B@1#$)As@W89?rbp0|F!_y z+h7DhJb!X6Pyztj|B3e}YJF@mu8Pf0`kZ|H9TjN*&)uZ_%f}iFz{P+$u7Ux;|K<44 m#;E>sjAH=+0zE@racb=B7yn%+nBu%S@E;NXQy&g`{`x;US&nD` delta 3587 zcmZvf2{aVm9>-^4Y>BaqJ!GdWMU*WP?2NKxUrJ-&1~W{u4zh=_jEtR-HF~l{ z)-26fveZP2;?@8E-g*E3d++|vJ?Gxvx!>Qpzu&p{oX>Acp-bVEnIV{l13>@F@aE~K zTu^skrXYQP&1*d=$bO81Z?8OST!`p#U#bv~YsC$woOb#8*Qf2z$!O#!&Za%cvifn< zh85Pww*`iW@9h@sqK9+F(=|JiXBAxxxOqn*nhN)2t7S45s>vKi(K5`E?81L<@0+gLkDSbYPjM%$s$ zM_l~y(a`WyY4g0h-<6B)gll-aAkN#7v-7{z7gcEZv8$Dd~E2ko6??}xT5fwnR8J?*CZv*OD5FJqX+o^jI6 z{QJr+o2T_c_EZ@=^(MW61BVq48)v*z9RmYrfE(#S$}R2P-f8VI8k>iMc&Em=WoYqC zgtAu}U7slpN(11p(vpDTVv|P(<^Ie9HTy&@`_a)O!8!HsB?q;en=Tiy7GUX~J!DCC zq*}TY=E=yZ2sBL*_U2AX4FVnw4YK8l;7wIk7uzD&&+n}d7_cre(+Rfkq-FHA z16jxSg1)=ROUwdXoh#=)deaF-?gw%>&d0!hz;{tZt+tpR!~JGRC&FWP3nc#TTT-8= zMU(a_0{64s!E3DY4)V^`Ktt|1*uLedZCd!Eqx7YYr)yXDK^Vaz z$|_3hTpa^L(I<_TEH9U@MVo3g&YKD$1CQix10u7d_dHG~oW<#knkU1TxbK!Gn!*%D z7+=;igx<+%Gyh=4#v7j^9g>@JjMpCfR@LvqS$M#nqx~Vs?}~H%TWDc)9YUb{=9xU0 zMXUpz@*?zWNJ0$On%vW4SJ_XLm5PnI2L+0CR&9@HBg$@E@_rRvPmSQ^Ak^A6nrYZi}ha|O2B?Th4gJ++Yb57!WRA~+87_<4C zY&k*C2dfe?BWEAaH9L`QWXOHNa7I*QIRm4S?aSJGu-Qtr1*DQI15Z7e#H!M^Q_xt_ zcW#(Tmm@~@6LVSN1S~el+)wt^Kcuq;N`oO%trj7v)t)=Ojuo$B5!1ryl@7O__*?|Y zcuHrJ<8$$9i*0tvV@#Q^%A}P0^c+37I10TC>Wt=kUT|p zpjVd%2Lfw3X{d(cYk30M@#gB9$}(J;x!##q*VE-~qt`!7)ZpPl!snufL>R8}P(j&L z3u+ZYvypHiQjJXt)~_$^UX~X72v{TLz5}&EEVXY%htbP9TF&Y(;-}m|rBp9@Z(kW_ zg8Zd5t^4S@g^p|LuoguFMpU9AI3XspP_ox+N6Wi!Vj_;#Zc7n$^0?^0xztQBQ@@9F z$S|I^iKCBoIC~USB0sfrEu)8>p(|(8E>+6r!s=B7z-$*pdi08d zQ?gqhm%rE$!3jKQi|&Oms?BQ0tpJ*1SS#x#LXhITNQS5Fw+a0WN-ZxQMEZndyk~`( z&sZ`Pu+nbLaWA#+iyXjMx%@e8eOe37DQa*=X4ubg$^_RoCJ7vcLp{Rk^RcV}yHYo< zTq==@Db=-MlIFdpg!=kz9L${Lh#%hAD8>~8`OeWTKKXL`fEH^>WsJK8DJU|i5axKn zy(GM+UmZ^Kq!zd;QWOrJ5Fa(FY|g;yuZtkl991{NyFV|1?;b}e3$_XDXIcv`Pwc$y zpgx}(TM>5G#IWXnJ>~m=QBE_tU85V6S6&esW|L4^q#3&hL>XDgj&h)NIZ@bkVAAOR zQx;uj#G65*_rkDJ#Fo_@U>&Qk8gQ*{wsX+-?&-P)a_^YK%0{~RXfHF%2CNJa)=q1h zj>yG{W$L(vJ;gbf*3g5G`r}{sUhnDxJb0n)Dl{bV_RiBY!IpC)X9ZPm4$TnZKG2;) zb$V7mlN^+6oQo2SnSGh0CqC1QU!-T!dSVc9od8xV^{|5LOLi>3H&)z zewOrwn>V$VN2@z>#%*43^OvwvhqIkI0;m+^jwoYXRc#f?($R1$q3DH8mj$of0-Pe{ z{;hqHqIA&LG>j0!YFk~*d4}dW4p3BJhrG10F?C0YoY02QyLmC)y|eOuzvW02NLM@k z5Dgh4_B|ak!sne`XKl{3$HKZG4YBibvrb=R6wcQ~- z$Qao`Abd1l&I?XuQ!kV}`IzjQ^;tq^d9(ZMaOOV44Oy%MG{PcGd#a2q6K(AxA=;{Y zaTq%B&?`f8htEO$n^;5FN%p#~Zv(#*<`C7QR$*56I$QkpqS15ekmqAHzAq)>n@g#$ zi`svhd#H%-kXuUTuB$%nP+wukY_~mtn^At0y;-&=h$Rz8l-&9fW3PA;GEw^ zkKS6OW)=$FlMcEktq#{I&xEHB4&7#&^Z#TJ`f9A`K%+79O3gZ#5dy#&v+5aLaTj>Z z%^xlO_Q-R%)G%-{X@dsC&o9=-mA$D`o44&Au07VBHnbP2bJ&@2Ea1IFdb2tAea9Hj z04sYyDmy{--TlGx8-3;~KRl^t1^|W?{)>FD?6QBr;BWf*4TED@_NMdl9PxYKI3N4A z@Gwi!jy&>j0P?Y=BsI0?TJju;9_(LtQyu@bO)1?TEN^KcU=zbvZVj)wP&z0bV~I~h zj%ko*W<@w66KNq&qYiAB#}m%rY0^2~8$`a8zsyq{%cQwM43X9SNgA2n9vK5f)p z<<8FA>O5njaN&Eara)hAWa_iw_w14s7oFn~f7$1+298aT2K+Ny`6^0A7!y^G&GED* z>I(lYA?J-#-1AcFs(pV%83aS*7ox=PJ(GM7mdt%DkLP=;c{W?kP=R zQ80ite8ty}TCa2wv%-hBnHCcD*PvX-FY<(UBFWleMnEsn>dvgk+@}6OL-Y z*mJ+FX6q66aX*eBifC3@M`Qz^eYM?wBPl0@ZBPWKzvRh**}8f8;?J6El<8Dd@2#_g zi1_}H5`4Ms=q;O@WnSu^lIh$coV!)w%jUMcYbDXmSQ28~VI~AeYPR^|KW)2O3C;9L z{Jzq`?ZwJf@rBO0we#g(j|YT_xJt9Pm$+(G`_{!{&EU=GAe%7vRF z>vJ?EvlP8gF8U{HN$~&Z~U$EEgy?f)tQ+K?&dZ#*F-uVqcYZn5`+#v7# zK$TwGTxO1m@8p8C3Pl=SUvIhl9M+XYNHAl!>3p`wEMr<52+l6geWFma6Oo_4w_dc4 z?Mi){d1ZNOn-ub??c{S(=OUj|;^fj|*x)pv^@oXOl4OW~n@o+gb?~P)!$;O{^&9ai zyKI-t7RH$0C$~s@yA6L3l*m8%gY_pOZ=<_G0Kok}P#*~50ROxF0owhi4*&qv0o*tu z%u(+5`!_TE`#GZ3@O;a!egO;w05kyHzgB+^Qj{-Fiwn;7zZzU67eA;GgzJVW<9>3T z{l8KF`W5N^7S#o3!hJ^Jf1?8J{+bQ_-!w>e0PYDpuK+Co_@|H-^81pszf9&=`Vp|- GyMF?75SfJl diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv index a197e27..faaf95d 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv @@ -1,3 +1,3 @@ -organismID,occurrenceID,eventID,measurementValue,measurementType,measurementMethod,measurementUnit -255021_spotted_seal,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,137491_spotted_seal_2018-04-18T04:45:00Z,69.0,animal_weight: mass of the animal as measured or estimated at deployment,69.0 (kg),kg -255021_spotted_seal,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,137491_spotted_seal_2018-04-18T04:45:00Z,129.0,animal_length: length of the animal as measured or estimated at deployment,129.0 (cm) standard length,cm +occurrenceID,eventID,measurementValue,measurementType,measurementMethod,measurementUnit +ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,137491_spotted_seal_2018-04-18T04:45:00Z,69.0,animal_weight: mass of the animal as measured or estimated at deployment,69.0 (kg),kg +ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,137491_spotted_seal_2018-04-18T04:45:00Z,129.0,animal_length: length of the animal as measured or estimated at deployment,129.0 (cm) standard length,cm diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml index 1667b9b..fe21c19 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml @@ -93,6 +93,11 @@ Wildlife Computers SPOT tag (ptt id 137491) deployed on a spotted seal (Phoca largha) by Josh London in the Bering Sea from 2018-04-18 to 2018-05-26 Abstract:A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml index fac5e14..9aaf45c 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml @@ -49,14 +49,13 @@ atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv - - - - - - - - + + + + + + + diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml index b2b1e5a..e51b9f4 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/137494/eml.xml @@ -93,6 +93,11 @@ Wildlife Computers SPOT tag (ptt id 137494) deployed on a ribbon seal (Histriophoca fasciata) by Josh London in the Bering Sea from 2014-04-26 to 2014-04-26 Abstract:A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018
+ EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml index 2bd3723..8dbc27c 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml @@ -93,6 +93,11 @@ Wildlife Computers SPLASH10 tag (ptt id 38553) deployed on a bearded seal (Erignathus barbatus) by Peter Boveng in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14 Abstract:A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012 + EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR diff --git a/datasets/atn_satellite_telemetry/templates/eml.xml.j2 b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 index 1e9c49e..c6f8677 100644 --- a/datasets/atn_satellite_telemetry/templates/eml.xml.j2 +++ b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 @@ -62,6 +62,11 @@ {{ summary }} Abstract:{{ project }} + {% for keyword in keywords.split(", ")%} {{ keyword }} diff --git a/datasets/atn_satellite_telemetry/templates/meta.xml.j2 b/datasets/atn_satellite_telemetry/templates/meta.xml.j2 index ad2e8b5..7186209 100644 --- a/datasets/atn_satellite_telemetry/templates/meta.xml.j2 +++ b/datasets/atn_satellite_telemetry/templates/meta.xml.j2 @@ -32,7 +32,7 @@ {{ emof_filename.split("\\")[-1] }} - {% for emof_colname in emof_cols_list %} + {% for emof_colname in emof_cols_list %} {% endfor %} {% endif %} From 962bd3a96896e2ea1d1c949276ee929d342da748 Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Fri, 1 Aug 2025 11:49:08 -0400 Subject: [PATCH 05/14] add function to zip DwC-A --- .../convert_ATNnc2DwC.ipynb | 42 +++++++++++++++++- ...tted-seal_trajectory_20180418-20180526.zip | Bin 6356 -> 6006 bytes ...bbon-seal_trajectory_20140426-20140426.zip | Bin 0 -> 4968 bytes ...rded-seal_trajectory_20110618-20120314.zip | Bin 0 -> 30964 bytes 4 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip create mode 100644 datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314.zip diff --git a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb index 60ef49b..b404275 100644 --- a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb +++ b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb @@ -766,7 +766,34 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 38, + "metadata": {}, + "outputs": [], + "source": [ + "import zipfile\n", + "\n", + "def package_dwc_zip(output_dir=\"data/dwc\", zip_filename=\"data/dwc_package.zip\"):\n", + " \"\"\"\n", + " Packages all CSV and XML files in the specified output directory into a zip file.\n", + "\n", + " Args:\n", + " output_dir (str): The directory containing the files to package.\n", + " zip_filename (str): The path for the output zip file.\n", + " \"\"\"\n", + " print(f\"Packaging Darwin Core files from '{output_dir}' into '{zip_filename}'...\")\n", + " with zipfile.ZipFile(zip_filename, 'w', zipfile.ZIP_DEFLATED) as zipf:\n", + " for root, _, files in os.walk(output_dir):\n", + " for file in files:\n", + " if file.endswith(('.csv', '.xml')):\n", + " file_path = os.path.join(root, file)\n", + " arcname = os.path.relpath(file_path, output_dir)\n", + " zipf.write(file_path, arcname)\n", + " print(f\" ✅ Packaged files into '{zip_filename}'\")" + ] + }, + { + "cell_type": "code", + "execution_count": 39, "metadata": { "id": "aD62GgzSS0zu" }, @@ -832,6 +859,11 @@ " # --- Create meta.xml file ---\n", " create_meta_xml(dwc_df, emof_df, event_df, output_csv)\n", "\n", + " # --- Package into DwC-A ---\n", + " output_dir_zip = f\"data/dwc/{base_filename.split('_')[1]}/\"\n", + " zip_filename=f\"data/dwc/{base_filename.split('_')[1]}/{base_filename.replace('.nc','.zip')}\"\n", + " package_dwc_zip(output_dir=output_dir_zip, zip_filename=zip_filename)\n", + "\n", " processed_count += 1\n", "\n", " except Exception as e:\n", @@ -852,7 +884,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 40, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -880,6 +912,8 @@ " Created 2 emofs.\n", " Saved data to data\\dwc\\137491\\atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv\n", " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137491\\meta.xml'.\n", + "Packaging Darwin Core files from 'data/dwc/137491/' into 'data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip'...\n", + " ✅ Packaged files into 'data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip'\n", "Processing atn_137494_ribbon-seal_trajectory_20140426-20140426.nc...\n", "Found 23 records.\n", " Extracted 11 occurrences with valid locations.\n", @@ -889,6 +923,8 @@ "No HumanObservations found in the dataset.\n", " no emof data found\n", " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137494\\meta.xml'.\n", + "Packaging Darwin Core files from 'data/dwc/137494/' into 'data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip'...\n", + " ✅ Packaged files into 'data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip'\n", "Processing atn_38553_bearded-seal_trajectory_20110618-20120314.nc...\n", "Found 10197 records.\n", " Extracted 1871 occurrences with valid locations.\n", @@ -900,6 +936,8 @@ " Saved data to data\\dwc\\38553\\atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv\n", " no emof data found\n", " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38553\\meta.xml'.\n", + "Packaging Darwin Core files from 'data/dwc/38553/' into 'data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314.zip'...\n", + " ✅ Packaged files into 'data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314.zip'\n", "\n", "--- 3. Conversion Complete ---\n", "✅ Success! Processed 3 files.\n" diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip index c045138d3a72d9648a581b76e105684acef92a73..2194b6ec8927011bf69494157e74f07560ca50c6 100644 GIT binary patch delta 5435 zcmZ{oRZtwtwuT28UHg3?v%}Fu2QL2{O1lfj}56K#<_>9$W*#nLr>| zaEBl_r%vsA&)HSC`=P6=|Nmiit^Z+tvx1lWG`bKBOi};q^=eB_c z0LY|vlFKFgEl~ZZpw@7Bx#f=lidYeG^! zy=ZG-4hhL~S$Q`_Aey9VU;Gi_Ivb8_YC>=&(1(YbnrX!JubB;-GIvHcN@+z5Y%Pbn zKL7Y-iZSzKcUjNOSLx;P<+%?OHfe!P!qE(U^oA2V_A`bbGApDLpsZJ zl&va)pU6TVzr>l1(u`G;-QOKnoAjn<0r;SiR-}Q01~PgxVlZJ5AmIYe1Oa)ikC2Hc zy!j0gZsgGf8&WgFB>(*dFA*&0jOYNs8a4o+_@_dN)O!koRCWwrL>%)#*zEpr>&(q# z*YBJC`oj*@&nI`JD{wbD=sw0uiFvPeK={%P7-`1isF1~dLf|Y7CC*oH{_C4Rbh^Lu zmPD!z#WuIY9j8*f*BPFt)oSlh&{axq7OvB~i&u6)Z8?v7^l_##c$w6oGQ8w4yF>4i zoLZkSpfVMV3I+Ed>{FkWRaOri5TVsW0%)>ozw7T82#LuemvQ5EFbufMgzI;pmVreN z+4zI111;5h)0K9zPc>R$VL6)Wf<+tNNm zR?veB4^AAscPH?~IEC?4Q((Yc12`GAMk@QXa?&bU7%dhNKjZL~vkS$!(~+hnkmi&o zPOkVq$a3iG#!&wNdz^G^ zT;S*mBDkRLCn{Sjs}VmGi=M3PE&ku_f%tbsW?P6)mhk}qB_ROdPm2Joot^l7ot+M7 z?%_)kmsfXWt@~qILL|#_o%-*2fJ+`Uj2MMJtJzrz)j&H-W7*NLsjdf9>K$-_b>79* zPdFHY+>RXk*x#~WsxRxM6X?jS6!g5 z+*gK<39r`-{68eZyw-(IN$Y>T6pZz^KahK_o)cVU$OHE(BNuUKXuX(xI9PZkkV`F{ zB#2LIXu^LJZ&26Ni`J@i{KP@M7Row)^KNpsaNwi4+ZYau;0Ar&p3S(^TJ;UeIvAS9Uj&k!c#OWkGR~Pk8f=NPi7GF zQ#UyH3nt1mj^DkUQBTtL@N5FGFww_v;l9;u?}y>UM2<19lW4FqUP{voqvwv~E>Aoxw_hoRCO#7MNwx7|O| zqUfC*vGrJR!Z#Onv5QuV(P(pq8pS?|h;rHE*?y* ztpHsIvBUv8>$xZ$H#tsv1|qQx{AJeyAg*%Y=kc==Q7T$QkuxgM%$%lgF-~f~ZPBsv z+nlfi-#qRRL-;NGbdPw6tEyicSgQIFM!8mK;*PzA=4M<5@QqmX!qa?fUGp zH(-76V?-kKcAdt{GIErw-+8QqdYk(sBJ3HRRCSHqO9g3H?$OB{0;gwRJSU=Oq=QuI zZwL=t=yQXc!x;GG%^ADf)~ygw02Da;#4jds_rsm(5U_(H_Wc4EiaK z;QKoLEob039k-9#EtVaQRPImI*q2VAEt)a1n-90ajKhq>G2VFu`r*DkY#^^nc|(JM!LcvO z(Q-K@L2?cB^WTt}M_C7EiFHm$F3pYJss zxpG{wT!`#k7&m>fmzi=Vbd5ZE-eVcreh_FEu#d0WnD%3(t!EkK=6{v{dCF0wL(F{N zpSu3GqiUbuHNuw( ztYC=%sm-&Yv!UKprL;Ljd?I#&A9HQPDmtK3* zxq4*vV$D{DXV~(7rQ8+*-wAcn%+4MO#f+>8Ij=WM@-nE6kmtIlXOcEvf|idO8;}9W z0&=%m)eE?=R{%)O;ccLAo}&s>MXw6`!KE)*ilAQ$M-1(m7JdI|L=qqd@et}aEEYld z*MuUYAw7Isvt^wP5JeS6x8+vis@_jq^pXsxS~~XHld7P+8Xc*SlvIkXnhUX`6r#50 zC|7yZ$X^NgwpDXlej7c;xZfs0C%CX5HOZ)1o@iETEu9EeqQL69t+F z1bbjheNP|UnuUjr5@anrwQS{jQ*5rTik4d7-KGM#e%UbjglJjsx7awd<4^yE$`RQq z5&2+sqh+#*Cw_&I2pZD_UJ6Wa0ZTW}!7g*v$X9_>F`QVYq<*iS7p)Ths@*bqjhwHH zv)`aCL))Get+b7Ygl0?XzYPFOj_nquStf2V&6DfjZMYh zJcIhMl(8?ct0ZmUdujsa4%LgI?K9ZHE9P56!uO*oT6G1w5HO*@HjEjOJqik&gW9?3 z3UCzj6BV8$q*-SC8TIBzG9qPGG)~JG=x}$N*SR@4%Z6lf#L=Xq9;~8u-Z5bYXq!*! zE~Cmhk4(MR@iESNN~$B@MOVCupZYoZg8Po4})y&OD)=-Wo{=zd9 z+`_f6{@`{%-U^$QIFW?coxZk|^D`GBXk&64j7 z_zm4@E|0;QQ-`wO<~QtoCLU|7gnVwrGR() zA1Fo_L?+q2_kSrP$$G#F3S;5Lth)2WD-w#ZhDfJQPb+iCyfI$E zUd_Kk5L~RL8k~W{UjlRTG>VyKe^8>Bj?`$tI0~j1{i<>oScO^{nYylgOv#)oQ|LY3 zU)>P9X}FCvm!_>d+WkhTR)0u={aGteUpz80<6c_9?FYQwiMzvx%T?kY%jrYTkDu1# zr73fyogo5{76E-;a_F6W3O1`yU$HEy=yeW4Zp?rlCcjt2-;Xax5M5ssudg@ANTf-J3KI$xu1(&9Z;JqF;v~-!DMKwuVX{>EaWIz?+Mn7V z4NCUXogl!*!oZy()6Z6%uUmf|>W{_Dk4!r5MgE%VkYg+=w-MqR*M2m+Ee3^tE8k3A z9O~+!Q=nQN`0$r6P@1evrxnTT;)6ou%h&C@aSQ2hf9gxfPurVG3q!yph!@en8FkR`$ii2H7x*P=e{!E5wMk zC0>?kc=dwk<5P8=s8*c-!2OTQO&cpdTT_jwGW<-l;ekzBmB zjz&K#d#Rq_q0@Out8pZH+4(#9_Q=77vQ7EnO_>gnM4G-EcK}rBQyMgLaL5FA$>UV) zZO?e#g=}5gv+_+N&DQ|3&>!|O#g3o{O4<HmTRr?W+4b4G|+FZlge#rrkA)->4d#> zf6-Q0AOF$>kL<|{23nq*>qC$4ZH@!H48wkmBnYU3cpl5qU~Wo(YYqjW^5gpp5gu{Fdwn1irZ_c%W2x5@i|ZD{dtP zW)6aU8G(B)88HVfy&)difdL)GW1vCAh&49VEADUjOR?w{+8WSOOUmEVnVo z0VMCQ>Dc(XV@L0#tUx3Q{?zZ!bF|_*VYmEvF_2rmt%kzb<88=BEvkn#E(+qcg5ks1R8eMwxd-buO)Q<-ZGQD#ec@h}@Os z_*m{@)4u(6<`N4<{PY@FB?n&!3c)IpeL!u~Unf<2(s>=AR>K>JF9iq&T?iUFDd7Ks zg#bWmEx9JoKQ;fw3;!hI@6{MAm?}>p&-+jPf6=$U#edGmU={S#E^_gI!8pV}P5(qP sfBPDP2QmK_(EQW%&#eB3>B;{kR~G`r`qvBa&#wE!JS)fmfIk8MA8RT0S^xk5 literal 6356 zcmb`LbySqyx5tN}LAtwJh7JXW?nXe6?jAr&N`WDyTR>7k89+inx`u8PhwkoF8sWd(JxNd7gjH`aYkt_g-s%wN#N&hyfVCChQrK5#YBW0iXw1ctXth1VjWM z@tJwJxq5oqSaW;WSU8(`KDThRvGR0%?rX-+%O}b!$S2DEuNNVHVKW;SS6h&khqu=Y zYyc9<{fYnD^mK6m=q|G{_V-H`9%KJGj!(0b7eDM=P7Yx-=g;p9(A@Q z)bx)gPfqne|N6d*l;xSnxdBbgyhHWkmZQ~~qRIGpVA*NYxRHym65|>-(U~LXXtkN- zc&9}vNe?KcgUw5wO9;g}+!N@431O28j~tR6kb1}h8VmyFgo905BP*OLAB#A7L2ha0 z_iXnhx)o+9Ay*<-yYwH84Un-F;-@wJ2g24@u(edtG1hTES4{l+?^PrKKmrdkiT2V!zOF2 zr#`R)FvrH&7TFH}qF=N#9o?(@K|7`s)hRA=* zQ1+iPbhWbbdj8x7VrBCukj}p#{wK(mWNpn^Ui{w0#0%V?fJub6W!i-cA(1R)LCAp( zPpUhpOx{wlw$nWKr3N;Xu_qL<*WdW<@~-XrafIQI6#vj7q> zW|07_)+xq>r#V`q2@Uc@tARAX(dSHM+Q?o_;zxr9=Lcd_1jU*vOasr?Ho*S3bhjbQGH%D)LSFm(A?kQ3QVcEZr$N50x3P zL711H7%2?HM!MH(v0#*2;^7FKZ5d5Sffpkh^yjqX0i00qBm45ICwChN{PyBvc!&4=sroFk3ZSd!AKuxy`tcBLNRP ziIY;2TF}4CY^%RLViL`js}ucR70}hM3I>lzE)*;kX5qtP@!VH-l)=Zdk`z^KvbO6< zLoCZlZz7;KI>d51-0XDpWQOpK@9qqTzIW(--I5I7Ifm0>`reg6T~1oJD*GE=SgT3{&h68hieJo>MAwQ+FM~<-^$~C%-yg1^0-g+(_=>T?EHqLac@YSpJ+B}=J}+Th(Zn>{_mY`(p{9k?CX|0(0pq?5<@ zq(y3_ZZbmD+HiO`NMZQn+wo51q}wg8^6yt}w7m=;vB?sP@=SW8 z4A)eh(65wF9t1QPza4CRrd6t2GSTK=$7DAW;CLj}Bj{%EvSDpfXLtb%eTxvT3S;Tl zPZYEx0_!DHMu))pm}0t8{D(^3l2nIxZX|nph(#cL^8_Zmgq8`v9P zc`WI#IImnv?K?Ly+)4MmOJV>QRMJ5WleIfUs%%mJ7-=den_UzUfY7;D#(aa z4sZNOe-YV@PmGtL(7~3XB(>)&Zi@oW7+tZKw|vZ`XhBVMKsbEI=We(aNn*Z%6uB8Q zSNR%UfZr06b!`!rMLDiY7`?VV1k284<_gTCInLHTpR*_u61EwUFMDq24ypiUM`O?G z+^~;iz1B{E$QDm+1P{_RH07D*UVTj5p3gZ}B!zvV&HUP4JAsUuz)hBj<_11m!nUhT zjkBNACwNXJD2;q8kEx0yf_wlK?(C8ge2e-G;<2!6GpoOT^@#Mht)tV#0mD(E{>2~A3XAXlTz z(n$jv+6qdh12{EB7z{kCW95Xub0xk+_&^+uSpAD^fnos(c{+A@y;y@OW2{TQ| zF}2iD-u-Rdnmv9rK<%TuWJpW$VI-$;mwAK-K_!~GcCO!p2Z%@}0=FW?hDo)hK)O`m zK;WvTec?!=3kj5U2S=Q?^15#@j*i+h8JpoNYLHH~ub=`~wL(A$vdr;CP$k@X>Lt~% zA^V9DBu8=B{qBOx<@?JYz*%y&qB)DjVbjTHF5rR*%a))UZI~+|O#t-DyQZ$R68YLS z97$tiXl z)^Sy^M;;(Wkh!yBc3F31HCPm`3|20DwGX^9UD;HqWO)3EMs;9%44pyZn4M1F=uFpE zTV8maPB61@Tl-R~-w3p+#>XGh!a&8qz4So6U@BcD^&!dehOEkBrj(ZBNY|>V7a6Cq z9IlUE`^WZpq&A_|ogXW6qNQdNb!t-YUZaGPHoo2jZt3F{dqKEXGrbV2BU${eZAs6L z&@X;|)m?L%QCCbpC!xH8hP~<~p1qcPg=|N|v>4BFiH|A57FE0W!yFMiBi~}1Wjb-U z1wE$i*t&VNe=~Hvbz{(&;nbn7#Miv2E26iW|NNyxmdwwi*v3zt-6$)<8>XKHQeVi* zWXI7=8PGqZ&k;#kx6?!y&NhF%+2ueh#WZt4c5WQ6DQ(<=M@G+!zcg>&+{PJH0(6X& z=^f>%)h~A(bvcJy*LfgtF0FxdmC0=V zU;Wjr8ZbyApKxlwm0~VzU@pre>{ADM_kocZ6Faa-KLWPUur6pL5dc463`r4sl1KO>sGJd`R(}l56|Az&~DYB)j@r7mp-XO9v^1X zH9_CGyca!(xP7CEIau%^_KW>63yj&<{ApV;O9|iFDo6gpvvZ2#=-=3_;lC23^zll1^qOl_BK37?+3e2ZN&%L)+1qQ;xi3n^y`Y}x(6l929KV*4%5hY+ z_U}Xy(DH$lu4*zX^3jaKXnO{#!)Gntq^RI6LuJ}hJ6j>6#&B?74`P}_LdlI>RY~(2 z)liYeiJUm(kf5Xby-9zgS9A$VUg6>QEM^D6M^=GpKXiO+kt3z4;+eR9j-F&9M`$2f5ffS_%`r!4wjR!8r760#DwSX#p&_JZP^MG(l-`ijQ;&Ijt`lEfaXU z+DpX^dOgPJr}%NGGL94Qq`+&{z7M~X3iMz^_C~g|?ezjNKg#Ywv)Mn9B`8WH$gh=A zjhBQW8x}DI(7hNdefF|oKi1Wb)uaOrbAQ~I1I-0+t*;@CHMfa z{(dz|S1qCyM_}|BA6;!}6`r8FmigGYcUW~h?e?-l8q*+ZFwGD-_5AVZ^jC{FX5oxc z(qxyW6Pga^osBS2vQ4{GRVy7asAGF^Q_pyfw?*X>JDG}|giZv{N9J9C{@6o7byXoT z-$t(j(rZ@EWVPzRaEU&*k?e^HM2~f*GTX|#j_Q&3dHn3523F}9*~>L3Ssrl`$Hrt> z8)<4iB4WHa1%59f`XElBS}`XTU^7!XW+)RNl>^4ZW6^wnjDp zUuK<$QHi=kDm0iJ$OfuIGfY*@%|7F(-|XBN&q&@)oA z2Hyz3hi(oj2#~`G9y*t#cIfmBbSC`$du;4l1WC^=xAbne(mO$}#1NN#qCA>!Yy=o> za%a1=Hc5BM4|0@_hSkhqYW+zB=qJFS=VS@6LW6a? zm3ocLyZJ0~3VX@L z#dB6d3O+eSU1B0-M3x5k>#Lqt7L4hWUbZL7w7w~O9&LZ;j73VLN>nmtkI7+)ojhM~ zR^^pN!lDYJ!|>OMWoR!5sA2S&8yz4D3=lQFSS2A6U+XK3E0DQROT)T)4@eaudK^s- zwIa3zQ#^^Wgxpe>Wy`(O8t0yVgXOIJ^NVVee!o_;+tci#^!19=+(`u9oJh+#pqW_b@GRHHWC@JH)L}RDWAAM7Kf#Et{x<#P}l2Ub5jZq;ubLqctIZTy~ZRC zlYab^zIDT7a&EnyJ3k=p3!>g@JCzwU4K!)~DMk9W1+}0XCS%ur!pPI)=&OA6O~083 z;K=vJbQ9+EIw|3EYra;ZfAWu0y-vJ6;*&D}ZdpfebC=7f166VIJjE5s>$g2joYoyh zndOAIaQ5)k)TUyJ$&$&>(Yt>8cAwSxbIpV{6FQ^=Oy;W;@$F@zU0h;auNG>YQnoJT zF5{mv`%5l`ZcSpECawuzg);k0R=jRymSETcpOV0h8i z7GJ5Iv~+-F#ObCj$Z|O=(-R+_)wrT0V5KX zG2szbEQ63)R|$M-A$D0SbJQh0wa?K-+x0CK&a}MXfub19?;~6ZV*G1U{Xve1<_Fbh z+bkZlWg}(V!v}jk2-_mzGH9D?rgw6g<%;)g-DQKNe_$d-sekJU5sJopT#ffdQGGR4 zoG0WNPSQpi3kstR6g3NWwK@^0HzEDld6rt@>PMd3?Q~FCEf#-C?hMb!axsGJr9^0f z+&NHS-pgZNO%rxGNpMLM-`85V+*U9=JMq}Ws7P(K#eE6k8>nb zX{-iQBtIcKr;3=hmpF=Y&M?`h;ZOVeC-jq+c4p3`hTb(>-mNyI>ApE~o@ zF9_s2{_SK<=0us!(s@b0vmY6@WA(N^na*tah}XBcDbSXWi@V7&%oF1C8VZ$N=B37d zXBaaDv6!a549xZ0l!t{D2SOfRgcE?MX1FBX*MboS#eL2#2 z(eBrEvS<19)ahEfrupAmSCA05D(nS=EFU4nr6`?n?C=A<5*kl@)Q&9T5}hL6lTPeF z)cV~S-w1c{$8l>k^2h1LHFe1qti%Jf(SiTa~ zGZWA^jMj(yE6omVyY4or&+ZmquOk#zl({&K2u=qJ$c^#Iiq8FaLYqJkfB+QT&^@GA ztR(D-YQSE(asSLCbSKhk@0sPs(~mShHTudDA&?@QI@Yq6KT&U1rq9XK2iFY<*vPoYGV}bhe_2qLk?zlSoCGXRL#63#3;g@?N zgnOS3NI+ub|2Cz6cT*(*P53I2-&3#5N4;g2Tn zA2j@KFvpD=zeUFd%iqK69jqr3Ho!+yVbjK3TfN(A_G X?fWlAsA%^=fck54{i2XedjIur-eeA+ diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip b/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip new file mode 100644 index 0000000000000000000000000000000000000000..c81b3263caa3144775a1de41e7569c0a02fe55ff GIT binary patch literal 4968 zcmbuDWl$SlmxqHDmjcBp8nguhL5oXqNpUOg1PP>AaV<`8EfgtI3KW-6+^xkuxJ$9( z-M+iC`_BGn_S4?`;hcMC&YUmLm*1nMih)TE003|Rd!}f{RNha!AJ6~*TDrQt^supTHuHp8INDfwy25L!=gtrdPws)#xOSdh$li&d$m((;c$VDjjofX_{%PZ>vdGuBaDP=>k0a;mg$6g; z(1mv-Q%FHo8<&D&+l%H8T;9Y(eifWz<>_-M7aZb+*Q?f+S5C2}TGn0N;mtikV{(-t zVv3;}^%pF+jeXw(6=!Z$u(W^GjZhc@sm4oQWJj+@fHFM>ZyKY4Uto1_jkSGrUS1IS zUl69NxDKMG7YbV!IYS0K`i9NQ&62}HfC@vZ8E3G(>KjWmhARCXepLmuj|13>4XZ|# zY;k8BIe1U(tPjf4a$z-PCoDb}%Hlw3rpy8DA7Wz=Nib}Nc9i-ny|0U z`!-myDv*+;zV;Yks#=^y5?@}s+J&EU-hGD5XW^*Y6aR?G0B$Nb3Mu=68@`%Rd9|fu zp_|RBFE_GyJPPmRXT}j)r(w^&P#LBVimMJM*981>!<)JJUd`j`&8E#`=mVa?MzA<@11U=>A1kGsh$C#*bpjLRh+RW&6N&=Swf+}e z;I+%U>1&E#=@m+7>+dE+>RC$$IBT|@-S=4w8lTH9Y~)cx~Scx zzJ@h})8X~`dSyD5fmg?`$8v6_P{FYdsOo#zU{!Gzl8k5q7~)?F9Mnq!+mT7?Cey@( zbb?r7ds6&H%Cnx;Ms#o2dV0Kyobo9Wn1Ktfkxu;L6Y2?LSEBqGok1QmU{S*T*tgsW zCX&=Yp!}@=`6G*DW>iOFtnbH-sK>q>1Nn;adX>vMn9(cYpS+RsU#&;()x6AtKwru8QpS7`$yi8+rf3X}-wy_V!kY%&x>YC7 zrV#E_9hoyb{rd8H0?o{)V@|2C_n-uchS58%B;`ak*hTQL$U1XQXh9-pDiL-K9T{&8 zZO9wuNu}#BQe0Z^=Lyuon%lJ^MoAfC0}!hIuvYn)wTz}07d_F!4Oz6mOKfPq(6W*cDh!5JVv{l&^Dq;l?ngp-bLRELKDiq!3_vGv z2(KxDF9eqenutT_72QY^46PLb$q{yP(3E!xPu#+o7Z);qPE5f&@2%qn z(tSEq>RKX0>4l$ zchXUZmr5?av2r5WzZI80K#R{aAiJ2@{b7$4u^l3FtnpPJ-3)YT)MXQAv{h~d$thtG zrRiY?kU5FRnxAa?eTpUo&6&5MIRPjx%lbQ{b45teynIvqMln}@Lpbx7ydJ||?~Bjt zf$Tr6bZnscMYSDLb@>Q4laNZFaR_EBTGjD8^{|UDk|z-3(2hhPoeM?r6#|Aw&r3y* z83K!;lCf9Sah;w+^jFJ=@XG0JZpW81_yY{#w>&>Og-cx({aW!}RsXT1LKT^~6Y@a9 zIM{;iLe>hHoXW_!iltX^VWvjj?Gty|n`xZ@U_6fHeh(rFH$EAdu+y_eq=G+2fEG#V z&W0;*+m+L7QM5i>y)tRG|d3cF4}|K zC=I?$_b8#F?p#SsPNZ;)D1kVu6|1C0d!K`fPfQs(1nt)M6yTIxCh|mHx~MN5325I1 zH})^qmqaSeW*XI`3!*T?C|aU+(0BES%iu2D8` zgd2Q;jsGW)v%!q?fiMRi`(7$-Q;u~hhhrgNHWVW4NO_s%?rZp`khl*Ur|^8X?i|0r z@Z4(8_A9P1Q}1bj{<2P7%+O7-yRQ-Q{`KS$P>u=0~lrW8B zc@+9#prJZITgfth!M3Xto?Hk2^%=C}X5noqBzLwb%9SjO`|iw|Gb!;{HsXb4>^<%# z68)DwI2)sbXr5h~H5wUGJ_QcR{%v z=&Y5ey++JUQgAk7@Njev-A$)65BzKW`F5%q=JBGRd4<`4O5_JU3Mc8}r4k_(i+hb? zMKW0@k;^mP%hwjAdAG}N&v~ROvBfGomr)Pw-p61Y@#Vxy1k9hI+8UQ1}`3({=PqC+(kP-r}R82ct#*azW_}Xw>SB z#xE)Wm0PJQWyEVTq9!zvOhgs_sq}1oc}~$=%KPOA7B9M}k0hSxo>}5iTY^kzFZriQYL%D~p*x(sXwOVLLT@*ym09S)iX<#a}a2yCG zppL5}(<=-t*1BqU_+{Xu_aI+F@@Se9Pv!is=Q9bLUcakOb$&1T+H9w~7iK~48slcF zkDD95%d3-vZUxNUOmU`>NO5%JD~<2kN6G^fQ6(O0K0V4fvQyPwD|cicTL`)Y+=7Kd zfOctlbQn))HXKpLNf?t&D>4OV-ocfk6EXx-gfgB2194#5=f9I*0*}jXBN&-`EM%vw zSVy7nX{23jOTfkjfG)jl@hjv<6CU~mSSg3jz?ni1qia;KzE5@hPC2C7hDL~ggNY&N z{ea!M!S+kr*r%ikWWkzq30R~Ck#pFuAeOw0AAMP428X)0bzo)#(V%6ekq zNL9B>&xiWE4O9GoD_uGChJn*P$9zO zxUQi@h;30#>?!fHJU9>5Gg+n{nr``Bg3mxyj>lorP78$ZyET9Ne6R!6bc|{(%*Gga z?n54%R?x(Epr2@(4%l?Z%>UqnHsUk=<*lA3w1R*!K|WdmgoyTeTZPVK18{OTcHK+_kcEg9 z3$Vq*SRY(k7W(mQ&SA$r6h)11F6G)*`v<466fZHpu>)q+C0@e{?iww~gVlsBa%k`Y z#`eg<@P*=Z%`N6We8f#A;4|4aDkqgoP$u#To<2_32&+%bidw}FlAi*+JZ2%yRZPSQY)OPUh}JGACa$6 zyOo`vdj|F}E4jTP{coAk}{p&1$rA=ODr*wf-|!hO9T=-H~c-|Kf%;;s%0jx zELf!#WrM;k_oS7Ti3dGLB-FJAF-{3e2Vkmo1TEoClI>TrT9e)IWwFd@w4B_nd^aCo zE2gDdj=vt_&T!omgRUUWAGc3QwDZ}cAnzlDHN(^SdY3=12B}YKw;j%waqVia8RJf- z;0yFxLV6jjeWjTN-tWuVgjNytr~z3hHqG|amH?ZH>aRTHs^*ZI#!f_4liOXRX2889 z$VeBV<}Sq+nolcMLek1wh06z(%QtqtN`}BES25`*e1@A_^wX#KNx_UC9V&`_=OE48 zG4D}IOlHG+&5Ct_LRc~J#kj=|bz$N);nXJ(zj?7Su4Ewj(=dsOV-ggk-6%=)*iJB7 zQj%^Jz2lC}dmu@fUNQVE^DE^=HaeFNnSq z4W}?~6*Wc&pKndm?F!wt^Gv$dB^nx$44_~zbPC`kaRjBU{3>nzfS9OnZ`6AFKKbJEp_}-S z?#%yvubkscbLh?N=(j5cUe1Q(t;aqVF6*w(**s)Kog5JxsjcnQv*oj?`|yW*%6fJF zk7j~9i9<3urpq<#B=)i~P-vX%Evha&W%ow@CPA3h&jA&->qW4VxEXyL#!9*18r3c; z!L*OKBwYIKUPcK0*MvnrkSQ%l~ZU`P3^ zgH=o7A|c71C;j$w%a5f3bjj~LmLL+vxl=27ryu&^$o2)DqmTO!R@26x_$o}SgkqIS zSKFWp3%7C15BqBg8>AjOP%;9xqBrxUWFoT55<-fVE|k{a1Zt4v&`mu!D8^T0oU8V- zO*dN|M9&e5X|RkpT}2b?*O2PR`vs0?Z#)>734X-*-?@+e4^7(rU#Xz@H}v8B&3#ZCPm6yAzueSS*F{E> z{?&7R#<#cM!bC=It-hV}!KJw12Pws_$uH3De(MoDO*DHrh+Jl?C|Ubq_${pS{c-#q zEZu|q*d4=qmg5M|_vB%p-fAYUZE1$Z%89Kp#AnXuwK7JY>amYZ0i>`xeC!E^?1C_5 zA3EC0Sb0;*3zuK+-ZIMJ`9;P-P%RJQvxoM4R}M(&TEaZT?dfmqmnrVchqw|<1_wcp z1STO!hu_b@g*{nEmfu63CqOsmDoLE2LiI_+fop@@I;gz9HC5_P2^xuwx9RhHHy1D? zBNLvu=VGYxi?lzOYjMlz$?ih*n(TJn-T7d}Yo#XjvG{6s)x+>II-tx;3;hWY@X-D{ z{&la)!KIY!E%fp>`Wy8PHIByI(OT%_q?g=Bb|BaS&J445C03~=c5a!7 zRLGEB<;b6Kaeu?Cefq=oC~%p_PHacR(0D<}*M%N@^|TT%3)%2Jqkhv4!*R&nL;WMV zMKgBZJG6x-zj46^Ur%eecd@O<7TARSj=e)=#`0Qs4k@)%(a^~O|F?Mhi^+eUhTwmd z|G$R%=e~csi2vFK05k-fqW_PX_~+0+LH_rUF3G>K)>6g#YtH}xjK6pBZ}lSm*Xut3 DToW%g literal 0 HcmV?d00001 diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314.zip b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314.zip new file mode 100644 index 0000000000000000000000000000000000000000..9b47fc83e08dcf9670dfd265beec23d403c76d79 GIT binary patch literal 30964 zcmbSyXE2r1W}?!k2**Y1f#d$QARJ(OE5x^5E-3lGtrISJ4y83OVmU! zL3A_5c#rq}_5J;R%yr>1=iF!C=iYnmwbq8J6A{yZKp=9^wi$uxSlESWHSpUN@R0>R zmR_zFBG1LdL@caemL4`R8-7oirL%>XhovLT+RM$u-$MAAkkB)6q38U-55mtxghVZ1 zJ}_4=0c%emmoG!Ne?GhW;XrZu2idHeqv%INULEM&$>@~(>EB3?*!K)h_G0}0p(+NR zfvX2szI@kL^>Zp>uo*QfUo@y*{}C8;XOFDrBdK$GB8!YaQwccm6O%=81yRm!-)@hf z^UB?ZcV**Zr*q30lzVN_kJ7iQ;@%8yR<+6dlIHJ!Gn1uNila!Pi_VEvXC2Sj7Swah zwoRl{(9!^nJ5E`1)er0)B;C7rb7dp8;FI@z~u7xb*d(l=61jtBVUrTQH^vVF7%<9C`hE z8I$s0ed5{=dvSF+16z;CE_;ocM<9^xxC>zY190rg z>O}p4R(l}s@DLJ+J=&h{v4C8|H_w5EUcs-I<=|J?D+CxGh_U`<$_pPO|nu7;MW%TZHSCx-|j^F^%+KRbMyN6VEOuA0b&{72}xXT z5Aw%huZ{%~%W}b&xb=zi_N*v479WWBVkvlTp~(zZynF&Dd2&s6EmtrLk-Ng~Zi12c zxA@(HWx1=1GYAro5InKQ0ULrOzTUn(fMd5;1>3K&tJ}B{i0sud@N`%Bi%9sz`mS9z zKC(t;(`W63`uf0Pw*ZO9j`;hVWZ`j``ExM*0=o%GgaodNoLphtc;0{q&Ww(hp%;)K z90obkezKf%2!h3kIAkCZIRQn1W9!lQ&a@^eZ2bTp-V)3r6r2+A5 z*84#G&n18KLSpisLwF$LJ^@K}YSd8Z-05oz+<_ynK+*1et^i_z1y-FD5E3<6eEF^I zqQE_gIw~RgRJ*uzoJjAE_pX}T&7+EZMZ~xw92pWp+`Nn3NvYI=d4j><<3rM-vIppCzOs7C4O*irbh(%KEP(fwZ2{Fqff`8iZqm= z2DQ$MoXG2L)#+&X!}Ql+Z*!Vc?K@^t#IU^iG3vKIs(nv^2$+Lm5{3aGRpZ{NQGerY z3~&dzC(Ha^+3(nxH!T*S_Mr9V^4vdCm$No&h(7yKF6jO#&V7DIN?vKkdTS>>P8TP) zKX2L+)#(b~7DK}%CJvcj#ooE;a>iPIG%S3$yN4&TC$hyNP+Oi{x&_ zh)Q|#xtd+5iaNMF>w%0!y|eZYg-U)bb6qm#2T_&RvO}1Q2*8W zYX%uqdrndkfwSaF-Bkk*RV*Xsy2${$xj(Q+Y;iIn6QCC*ID$ZTD^f%61?UZm zBV&m$)@+UaSwmJP%MmEH-B)*;ivq^9R!jALoZ}lcSWs38J?dVEs-|r4QL~wgnDu9+ z2g*-Q6UrkrvLsq-{qa!`!yh$>@x&93kWe~>CTzpaX<-@*_-bDrC`|~J{9*VF zrKNiNXe9R}VCgo(hT$!!Fk?ID`9oJb>>Pr`rd%u3uWVFRg8y zps=pLk84dH@1XgwUlMXV{7w=nR6Ag@txWEg#2UhV#=wJKYqQ&Ant(^>cqc7G9{aet z!h>^amVy*|$l5)$G3gwFJN_`p3+c_OY&pEef|8P52xLi!h4U0Ki8-d%AqWeHZ48jH z44BoDu5IBg$lHNVju0NFO0cW%d>3Tup6znJ38^pW_AT)M>QndG*lT7cY5WY@b*%?V zT@3RhK)xS#s+ z30EvUxqG41kSERdJt#3;v-u#M>}X`%slHOzKXv{K0Z*N^i~udNlk=!OVYKmz*Vp15 z&FT}*kbY>CP+NCV*gZ@^Wv_5l<7@;N#M3svk)Eo8cWAl8a(__d$~lPz6)TY6!-)(5 z-rifUd~PQ=R_|?-LE{2iQe0hifCR+66T@?^v3v@mAq|1XuH>I|f$wAYXx?Q>gs+PR z5Yy@}A`XC>SD8zs@pYV6xj}P59C$1ThF#SxK!T%Rk(#Yey~QeP-Vj;Z#=c1P^x*Q z`U=eMWPD-iBbF&2hGKI%|2{p%p;2Xla%kv~CoH_=O0t^JolO1!!fnA1rrr^{A~ z_>O|{bSoDpbxHx75}0-OY~pA2>F_c`bFcsi0W3Yq5)TtYL!3!g^~gJ_>u-x|fr3n3@ct3u_sXEKX(q7Td$Gq_oB}0=xTn&zCO37D!l_mD7*- z7N3D&W~Pubm-AbrvGDkl(!eQY&y78nIWcb4R$pIB&nW&_xh-PDevh@Gx1QCcK_=&$ zoKGWkEfCmnCU{0!S6vJ=EWRx0e&<=>^TzsK2m>dZblg()PyY~J0=EJ*X&cu(J)y-?92&3}~rJ^HpmSrW#Fs&Z_=RheRJcx?sa z7!$o0n@d>scqFjTj2|3SRWo_#DWDZ{zNq4=SD;F_3-o zav9peabhCw-LzxBzlZUs*+|ZU<}do4$z=>7QKM#?Yn&%akTHE3SmJ@meu8wAK!nX$o}j;0VoRLRMhVAD#XrV1Vvt=W{$ zziH?M9k0y~4jtH8C1MAjG%2{o$LX0U_wJn8@4sW>fjNkTTGUG3{kBJRGqwT9`<4(qtq;CD z4N_(b6M9rYjeb`yIK;9`;EH3#?v_g{sBFoD842$5`on4V;U4{|6YE8@BAjn$)2R<0^ej^2%3G(eQ91g0u} z-cvB13Aj@*z+qf`(cz^r+3CUnYG?>iW4Tx93z&!M+O`J_q3WmM{aJf~RUpG&^ll`uu#1%QF8 zQ#}R$CH;SE)VGI(RTiTihU7x4%H}Hw<-A3sfURYjEOV$wtA+Iwt@Q@#r))BHfqmYL zSfq%^4JPjsgsAQNG_<5^@ep8gzVLE<6z?!oWz@T0YaM~=X)0&BmWg|ruaF@&ztKsc zC!2(MZq_T8G%8)HATIucuCO10c^WiEX8ikS%wi8F8ph2VBIm;8$Px_;OdFxOmZloR zHxIjQQ|I|aONw$+$l89tr1`=daBaE1Nv4NB{q~7E`KbtqLwjP$P`q4DgpUUP`5FpY zdwGj$z}SjhttvV5DspXOpAG&hxZeH6fUDFw6_AnUq6$sK!Mf2nZS+IOM2S;x0zEx5 zrKz-_JG@6KMRR_7<#{9^sDW5?;ZR>0ThM1S7f~C;^p*+d1A;{T($aysz@KJoNZZ!} zK~u`S9j~1rpu{}Q7dwA_LIv@6;ZEzCKf0!80r)*9cG}n;8yL^I-B~T7CT{2-Qq`~S zOOvK+a0g@OpSfnqc<|WEKoM-V)zRZCAB^~Y9-~N?_G0lf&__IiK3Y`G`QxXlXo0J? zVeqq66+Vj~(EG5|JSxX58wG#(EwBDvt;Qy(@I&wF%gdL&ufU045*OzS608~6i3*L@ z_Ul}No6K>?PbMX@I&__1$be{z>IG`k$LWGzEwpGWpR@$-i3d4C#VK?=vXD-P{`vBF z$%keGDy5=}y;Uld3dY-sFSqNk3tqio+xOe2<-exC5pi#)owvy^6sc<*_T&bO2kfZ# z)nKR*le`jO}{jQR&9m+El7t6=<+53w36s?g;JCNP^^2$kE+) z?wXMr^DgkJ`)K zgQiiDvUNfQ;w0D5CEXfHeZ$A?>LEuD>oLDmh%VV><=0=?Eq~(Z1;?+g5$I!{LE4G* zHXOb5C6Er=Q4sD^pMQ6vu5kRqQ>TRM8>M5QHVofGeVlvK!(e#jU@HND+MDae%U7|A z094rMQ*F`c(KH~28JGLp%DFK|K{RKS%~+FlCGRDAm(KVx(?uE{s=P5V-q6lGTQr&? z;8Fg)GwIPM!HrktVHc(@?Eh6m!k|z)8m->bvVtgV$)%q4U$3l06X`K-sHhi=Jf`e| zsM2IS!0@Vz1Q{wrA4+jp>_+1h>KR8e3hQK*$orcFa>AE-8uf9kzl5-%%AUJ?317(3 zu+y*Zg%@F8obp@l>08m)IX>p5K7w@HZ13n)q5&jQdU7i{UH7iu!zU-uK|A61+0+S1 zwwg8*SE}SZJ+;dwkqPfYZXO!@!FHAffhyTem3n)z)=7KK=W4jU$2z5B4@#mHTYUDY zPsJYS3%-Z5bv7a4&fd(ZlH$UqOBxK%S*%gXztu&@v;rk)UJ;^5>CCu)U@PZLMK#}Z z42X_-0OybGb;H9Eo!3FZll~LaHcS}=+`O6nZwFfbc2Zo6+BF@?EObr#fC?|#ud?QS zk;@dAw;|cN zky8UR-u=HG1DRji<+EnQ`W88wW%$d^(P;4nS5w#4Cs9-0p!fZ^SgfUk7D#dted`80 z)lS7OckZB$PAVD)0uIT3g)4JHxF()flk@mk(umt4pA%wMz0AOkXbf83X`>{K|CTY#Rn5aM?Kpng_0dLWu)@!w}L!pPFD~UwQ})|3=Q)7{+T0q zC8YyxaeVR$riLY@Om2zb zh-|w_+qJ=Vo{$5yKG9^ed>n;K7@QpthN0)uNI*$>;1_mC`#ala@fL3O%Q*<11vm@? zRAP^8mGHue>L*8$lbZt{Lr=B&_J~8&;=6sv(pHe1{=6@4NA2k{gs3eK{~HLLj^V`@ z9?uuP`0nAs8XAQ*WGzGJ%j1oCx*EPc+sl`R+|^rR>5h^{s<7lDyEPwyj}(uOiu066 zp{KZJ1MmnX##&~jYIGnt=k{x9vwM1KXVp$DI)^|E!QLX7t)EbV=JmT@d%A?V@v(+| zRiCB5Kim6=(jnZt49LIWa>(FY7*sWHs2n9a;jB>yzNqy?w0x}h|C-R;fIyS?wD6bu zUaAXkYQ8p6kn^C;_e0e|1s4Th-NPX6 zh)qcVjEL*s>r`(?N2qpF6K~L=7EIRQ2>zG!rvtQ)hBB}9L)&Ztw~=)FQ_oLFwy8xk zD7NF&2gZ-sellH)*0G<@%y*3g$Aw$AtYaru3b<#SRJ>cZBXLJ<6(dbgO2cQFmNBiv z-k#-`X6&bNeEgyzJO4)6w*yxZsA=9y@C)RVZt2h?w>O<$KQB)w?4Y@mJx_6ckx zT|T)_1a+a6iBMU*u)8J7BN1n0VB-iq?3YP6k-(=OoBG>&ia7rsMM)S3WjtG>PVmmj zhBo^KQv%s*cHL(c5ifRl=GYATz^JD&Z5)lLRl+}BuJdpkc6E6p2z^Ra(pFD@6v;eu z#N9R5U=9!q+}5XkF|0wU=%lvqWhuI0QRt2Ye)BqjflL1Q?a-V*&Bl&fG$hKc8Eay? zMqO36C;R4?k0-3hGhIdGDkeBB(SP;d+e*q|klsSL<DakKwVDMveA9 zLK*dW3Q99sbuKKFRT9A|>drwO9Cb$_hl>?b`e9MyFYF`d+L!>0Vubl)EoSH)QiV3; zt(vGNI?}2nKgZ?AAQhur-jj!@jht`go^P$U9QI@^$1Hw#G%_t!$fK3Sv?;T}Q%iX3 zpPQIFfq1F{G=&=vBOB_NIKE6+mF<9N^(D?b0uC>=*kh@m4>A*hXa}Ushh?QcxZ)Jh zoE{(-B2wUgWZyk?#Z}8}?aScWGG_|Eje^k3VQUG@D)>~U*WF__rf>@RQ_2k+S^#hV zy}-Y(w=|*v^5*Aw7KMvW>R!2?rL^N5Dysfsml5KS9ily<{;h7vzS zQMooj09)izP(PNC1E|N>J^E@p96&QPL^S$?S!6!Ps7(*F<>Fa}K)lBZ$#svtKss*& zIH)%uDY}9AcQoYn^p$%Wuahwu_uqP;AB8W^+HD_5KJTo_P%Khd$6Pt)9*twNsZ|dj zJ+dr|kVc9XKAbB0eGkKRIDVg+BFELVV~2})$|Zz_0(f%PI*G%I3Lko^zY{2rJhRQ2 zby?j*Ew5n1vLW%4pnG~B+8jOJ1d??@qL0;kx9ickXbO%TidLV?N7aH56- zNOH0+jU0663Wp=s+=Y*Kp9P63LTR74^>HwNyI{|f&{>%(jNCgUf&PL#ui9rJ(sRQJ z8N4qj&2uyvk4B-#mmMmiSAds%uO)k6+!zEc8sGMv%?fe`9chUOavlB-b)4^wLh0}Z zQSN%GLb&m%4>F1feSW#P34v&hRnX49eeyi`XU2vBqvEyopn!y_9*P%udSicAf~$V| zVRCus)Yp~c$^0$rsJsy^lxF7{cU_e^%EKhGOs;h|3bIp^A7i&?l>ZZ?H?UI~_z!4R zc)rCBC|39I5AlaM<^}28dUbH`7+-w3IP8YLau76TybYqwEU&c|kYW#d)jME1>5x;9 zR|rDO&UbKql*jvrlJ67BUb##pvWM_o|0ozX9P3%|Tu3uQZ%DDC*%DyF7KF_~ znlIM*uE;Gq~0?4e@X6Ma`oSk&|P8m(w_if@~1G(aeof zy;Sc2%2=h@yX>Gl0!J!+0plso4Z5$xcD70|lOF+G*!IW8ht=+=kzYdR@z$QuPp;}P z9P9gkniyEx63oAnpfKxbIxv2t7o4}FJm49>&J3jgor>FXOz&ynFJ&F#NxvSScU5T; z00fdpQtD-f{u(lGaO3w$x24qdBZbqDj1G;hXbAW7Re_jr9ZX#l6;$lM4*}2&uhyH! zGigrrwYnlmPcb5^=2wP*&>HojiwK>8Ky#5>2rA%S3!*3Qf;}+om}nTxqmN^-rN5^a zl^N;wdxeo3%dPG2mk5)3q~LvPb;n!J;=<1VZ0JpC)2!U)<3jErjShGJbA6mpUGgrE z{}Tj2AfpRXFTJo&@pr3Zf$FxOuPR79Rc<54Y##-AH6_yG8ePN`jas3*^Wd#t5%wn- zMra>uCz9eFvP4ykfGOd*jYY_2lTSs+(dq1&Z-~~APn_hJy_$HV9q4#Mmsng|yxO*` zzX-Z@4A${$k)tP;(r?PYgUtM(bTpt{+)#i4wePj^s#lP(Y098UY~j>dJ`vPkI0 z@S@{&moiZ(Yc#{k@Ht^cshCuxG^)ji6)8%i<;=C5OUzk&!YuF{Z}>Gj32Eb zBukUxvr1D30Oi4;=SNeN%zlZED!SB-0;L13Mp(Inmmgxd9DI6XTE5S{cA~qd=SJ)s z5GjwR&v`6ePBoF|Nsf+o3wo%}3&gSd^KfO-DWQI;WF!zG>|>|qBaSo;l}5J0!SOcX zMmeCUjoklOij#M2t{_u@MR)4gudRl%!e6mD=P@FaU#FlR1FdO%0Y${$>PJg4JMTx3 z)v!JO(5S%;iPAWQ6i=a+O-IBXO+fj0bldySp?%=A=KH5kX2S_8+gX7@i8plsN;{N!~#a@|Q~EliCnj{Dg~Vt`}K z&;A$1#Asn)J#U`hq>*gl0c8uW)R1fvqr# z!G19jffmFi*i1*)Ogz-3CR9i=o~=@6R5?^>Xy(v%T=sM058Wxclw&PlK{R$W^i|Kc z{a^=5Q|U|3Pi!>s#F9?~px3ejpec5K1Mmz8!~Q00wICdB83j8?B%LyIWNBKu*!(!W zmQ%GCVnvDeu-x5%s`;!^Kf7~8(pBeY5w??R>6>u6LY<)RNIaBbO3738CHBXU`qr_? zqNcI=$VDRx$^hvSs!#Jw?d@E=;EIHMj@_L9g`gQm=2v1bnhr;_+1S8c<+*)-|0sm* z5bBaGpDBZ3wA>r!r6UIML=#WU_) zPKXwM?r#wfz&^5AL#{p5X^VRJp5CX>0V+As@oqL~SoBCM;rmlutnX|@CkXA-DbroE zaAEx>N>P)NQb~jfRiuz~zDskTJ*Zd1@VO<@g-8rEwatX+-(+gPjxG=Ut}sNLZ_W_1 zw9^-~0Ni1vE2aI@MuBPDnLYHBN8!r{#Hb)nJ3m=D2ppl+#;7Nj^}IjeFmiUTe^^bd zgn0%fRn&|vjKT>;>UTRkM^JAwo){p1L#=&RsijIp?Kk~I2hPnwQ&SC^<*~gGEgMeL z%=ACXT9g6DKLYPJ1LUR6^phiTwAWiKRQ{Ee4`;c=mY8?%F)G6TkX zUup^RW{2Il|28VXzgC5RDFy&5dt+69#37UcypK+GPP3^GANysg7Dvbi0Z=x2S>~*F z;iACb#p0=OfyHBW;5Z}^RZ6y6vcW&=&o=lL%ciZb5{JZ>ykpd^7{MrE>Gl2bL}GW1 zBb-2J4{L#m7XWr6X_EeRSv7l8y<3S7G)bCzAp_~_!=6oOmj+VQ4y((#(VF)vbu|T< zZ1}7Ocmm~!9^Lo)#0u|K|8Qr_zAii$gyv!JL6|Qy!9O~^3w)j<&nV&GA4$O7@^5;x zYnz`LWBvO34|QI?9w|qtWXTJCWCj7i$*Ng1vrLUw5OTM~WmaKr=;Gx137ru(jYGO& zp=KP~LHC7vA<^~TC#*a9mHYtbT}!cdLIw0nGI<5z_s=%V6JZ?Wq5XvyG9~5F*LfE& zN(6%xzFB?mG6KZ1D)Bfm%t;0}0BV?|c_Ti(C8jlwF22&oSys8?9PKXTZ`8wSt>Sbv z9RTvB^MtDpEtyf-j&xH6$`)fPe*b;iw93VD*F~HX!nB)-l4ZnSFKyZR_iKzlvCx?K zP2R64*uhBy&H;*sGOKojM#3My5y6nCk`5lx6nlV)Sef-e1UlA55X!4=`J7xxU{121 z;wz5T+vPSbCJk;D=u`dMvw-zoZ)S2YL2is?@;+TiRKD!&5KHu3HvmuPE6R2!hm(`@ zB#ToM{f;ly$7z#3E|oDHd3Ngyuyi?_o0kFM-;<{`yY#22NnU9>?%6*he;^f95;PjV zfOQm*5GTcG2d(XGtaY-%J9pWFzH5#gCu;#6Yw>60#W#nQ1VDJHO#?pVI@}>eY0ZC{ z3*a|9a(HEkdvI%rgv-Y?_l9OozT`x1l6HZuxEfd!aJ1^X6acMm^dfyh6A;ln@(x$d zIMRo2y@cKu>+|#vE{mSg4*G-a;+&-R|8uJ)IZhxXepJjepHr5upyWAlgdNxLCC9$~ zRjmX7sVLxeHtXw?gSa(0EQoS>n&0{y=%)A03<`*WW-N8N`vn_+eYykGK>tnENsC_z zU(;dFqiN+fwV^sr5Kujbrv*kLwFJMcAag4?UBG@t)q5Bc=zXlw(~;4$O_$T6b9wyT z;)*z9E4O*QDT)&ZX$@zN;?cUzD$K?0UU2r#@B~(3{^AC4wM3&EFKEUd!#|fULZE7{ zBBk|8(DSg&R99_uz~PNb$=RlV}eAOnbNdLP`uSEu%}UDY#NV0-vKWOrr+rH zH&N_z(9IAhR3Ii8RFMv&qEk?v>D+r=DrbmPlj;J;9rm|)q4QLPWJ<~V(HnedaYRgu z1pY32EQ~=X;7P|1J%FVaDE(9-K+*4tOL$3kqVd(>@vO`21d7dTMzWFKR0(WD!)=kF zf%LhTsI>l7&6(znqCgi!oh?odE$1QP5&@Vc(kL8WIUtvUy1>@KjgI5bCBslpoE#Qw z&C(DUCAxvuVaTzL!5#;iJ*4> zddpjv8yaqR+@&im==C#zh6;FVZ(Xtrf(=xhmkjM!a$a?Vy=%vYKZ)3j{uNPz3N^@f zHC)IX@!%^~)rxt~RfGa%RG^xR;&HWDFG+6fb7Ki~X4U*;se)vCh3(ksKYu$YZsN1u z(ATBJEsaSXM-Z$C^R0ewq{}WObOj;Q@byh%fJ|E64-zOxv2JA~P}jWIy+gVSfabQu z`=CJVlAiRY+b`g>(me;suh)F(*je>r4H^|o-sT({64#&t&dQwkseh;*KtUP=SJuA< zg9;nSR$H*2b#!nOxzrwTH*v}ykRI>egLSr`#72#(_rEIY?Lgg`db-@r^)q&A(EZ|pz&li@UA8SH~c0?F~S?jw7dQ3 zvGzTQ>zO2|67 z#*2Z2KuX69yWcLXok0>fz4;&HH%bZY@1$2iof42c9ln0rR^%gIpOAXEUaIL&2*kQp zwrcM)3`nOv=UKc6L| z1YUXTlIWt4E5kHF_J;K;Yj+6OEiC&Be zhY_LpPG+Uo^kRX~YLkroDC`z`1_YuJVL#H<^Mw8S<)&}mWR(N@j=a)VW$m{M86`IO zN0lGZ4;&n8*3$tc7rmI%JH-_qh7%fNDpwthYy?EsfwZ8XfWM{-&P~CQ9PbiN7oMuW)Yu0RG5U251+b#&KHv|s*Fcnff*nqerlt(6I?qKm5$H)!3ww8d)!*2Et;fypEU$>f(?Tt$(>;l3^;HI;%gYqa$0Pr_ zTuSs&{>OI$*qkDbdk>Jx?Z=VE^I`chsWA?1@2g52n2RdT&s`31#~I6$uO%oKz7PHoxZW}tN#WI=$QXZjyy)n#k$^aP<7`{N3X*bYu8?_QfX}r8#-8!KaXR-xW znt#VK#ADR_ekU=fBNZoo{pdjn)=uD3B)7jE3P0N6E(4@#}W4hNA=!(+umy6P59*_0K z(|17qFfXfHe}Mp%{C(HT=>EG+WZ$!YYjo8vtrAd!rc=j=E ziCg-v%k#Ug5i8-4Zm8Z8DETk?%oVkg5_6|>gPr#%vd_fc_S3I_%}j-S>frJRRP!tQ zIM!|REaDfHjW>v;is6bLu`hSXcr@~$T)!-K#OEEx6~%X27*WzUB=82%3psh|hU}Ub z?IfW0nz+Vf3<{Sqi^Z&$WPe5F#+@g-DD{fd0&x~=)RpZq#Wm@R^hZov69F>d)kZ7t zfJe%BZhaMS zVd)aSbqlCiaI^VzEmu0s3)hNn#Kf<&uKPfp^?tNGq%jo@PwxEL&oTF_ZsnHzFa1|n z7vfxGfH*yP&>wT&9c}~aulmADIkoLTh&<^>Jr}gclKDHy3B~z z$8*^gRn?6WTq)FSR0fpNvQJz`HG7{2Ty7{2()JE)wKV*r-N3P5Np%ybADzFT?@cf4 zwTaxuW#QFp_l$@DvLCrziqZQGAes6B&o6uuXA1x{)VEp8+))Gw*TJ6(OeA!xKV?Ac z>0f4^=-h3=@{M$7^Tj(j_KuIwQ}8wG-c6*-`Am1w zWf|6!2~Qpn;19Z`Dbn)yZeo(_3x`P7R$shv{M{4nnu0%ZF(W5{MbQcV-RRN7pal&3 z!b;5voxHjoARbR)Z zuV38dp+(CKy6iz&8?@Ii70dHIpSYoPg2l0hEjH%N`LFQhVnecC5~fWaL`e<|vT9{i zVVeiIi8Xd%-zdf&Pe4=iOT87T(cuf!U;$5E4Pk)hQmg&NQ9Mu3c41f9CKDQw!FU6j z*-q@2UFFW`Fzjj?_YvuR|I6mOf)@f_wqPdp{+EyXCSOpN54%s^uZH;3+uWgcBz?^n zp~!hf)10Ru0eu)SdA;9^_$H4}jn?G6n$?tl2~Do04wv#lZr;g7=6WCF@T6!gTUX5-nQ@mN4sXI|Yl_o_FMst4UJ zJuE;Mr`Nv)L|(yhzm6~$l4qf6!x7b6yT>{~AC&P9ca&D?{;rSlO#njYc6e#}+R6hX zfbM}6$+*VY3YeG&gZkBGzSWEbb9O_j5J5^V-IpB6FJ0ZwdAO<8N)B3hXObapVHJ{{i3|+i)9f>5UUvVI@`Ya=Z z@pBxc_iFKZJAAfI4+QuX!2BMkw|D^@`Ub0PIz_j-sR5$B{>JqCuZSH0Eo2xE!1fv$ zhqa`Dg);7b=AOTUoIB}}mS^w?B74qoV$p@1N6k(fE7M^PIK_qD3y)CAz(4Wzyk_Gb zXgVkQD{4iyT_D-6V)36FHu)BStm?eK1qnz2ApNnQ&ws|w;8mdgDqZADoYI(y2J8`M zzsF{8i12B#y=*6Mo+M@bGf(xTusS6vpn|9=t@*#nH0O$i>^Hd9czhRiAVOgqq`K^S zA?l9; zI_=FN+1HRnzp_%xfO`r^O(Db__3r+JO3_6Ql@oeRMKI#U>wAD3(ERUy!l@2GPK=YQ zO=Oc02U&?-#;l8am;)44NaqB(&xEQGIkuCuR@$(O>#+2~nu=E|WgxQDfdrZ?cK(s~ z@?}*NKouSP=A~*KYjv7Ooj*x+jmhdCiWVf0vsE=w(%gQ3>r& zc@FFML#sx;WrQw1%NXLSTZGmI9~`*Uo3e60U35A%G}rm_P4uW|cI|aNp|`Jzxi?@C ztDA=L3n+<4$#wD%ObY2G)E3fle=5Z16`wL1ftu}l!(&&tkqn7H(#RXneky~FjX?nG}#SOW6}=i^B}9?o%){%P^F%q2cIz?Z6zaCJ%;>E-Q$ zjA1k|aR&3w>>+aQ%$|Fa6v1#RR4GAScX&hrf1Z7hm zB~L$;H=b+-Pwz}90n&utkm%)Pl?0;#CYJRK+((%L{lcbXM>Qrbl#x5L&i5`|j=AM{*BAn6QkHq;AN@ zL|h$T9T~Ljl}W(%%!g} zWjUFFhlkd2!D$yhIjI~o$B3IDkax`E17hA+_=j5pw5y1s>02j zhkphTJ_6Ku`)WDh?6ytRmAXn(sr&n!1nMBc#IZi4K0}9BwG|zgfH96b%<%(h#A|nm zivvUK-U~i@)p*R~XAM}qvv+!9FoQTKPJpxl7>3zj+s^H(6JwU2!j#JGiqpU+F+-1x z8H<7WhbfoA{I`yx3c=LJm))z)hpBM&YXbT83m;?yzuX2L#(F8xCm=?%&b0U*V7fWD zGL6=XBR?W*gvn3~?A39wg4C*MkI4T}fvZDKj&0ugy)|~JGrk3!gC6UDb2rf%$;ox=@5rl8)qS}b>U%GL1I3d{Q>p#~{D`%u&M$m+ z)Rge_Zhw9UUOP&M5CAYwinAUo)5r>>A*P`vQT|>c03c8qSI;}NUKI2xvb?FQnzLmk z(4+cSQKu>Uy%&6+7zzH)K2}_6_x621W>57I&zi3efUnna$>C=Iy1clEL!;`UJuf{{ zyuPj=Im`_Fb}WlGmluH2AkyD2_!WbLp8(@jsgp=X9MH&_m&fZ~qvY z%P-j3VAv25?9=?_Hw+~}t4G{dryectm83VjzBR8ZQ0ClY{m{`G^L{p+;#20!8{ z#mm>?hB#Iqw!`!@OOu2MU~_3#8(Z3+;^`&$4->;|OxnUw_eVJli$hK<(YDx7+f=;L zsA=loRi4M!d=E4zs7VBNbLi8<33${jG{0)4e#TjnU7WPLm$h_nV5xh0KkHZ0p)c^y)GOUPQZ1_~09S99Bo9!IjD7bR z!~)0Vp>d~20}FqDc0m%%o^KiUdc3|D>X?`LQ*7;=dS+aULPh-anM^yQ9>bkYz${49$4b+7sI@9&Bfu|p z2fQg(7+gCWn5c}Gy#M1!`;+qf*_dxLsO%FV0qIDY&KP*U2>*jUzEw()exs#e&S#v$ zzR5;by3K4(yJUy807*%0qPhI{a9KG7jV4d|-{pauckB*D=t9P2TV9S|4Qlj2H%Ey?&TPC6uMGwX(%Xt0Ip z4W+?m#R|Dwee-0y3zsj#T*b|GyqZ>g5GRa!cRHT`nBsDaz)ht7R;*liDE&K4>Hwfs zLBi)5<|46>Zelv~!&sIfgK3IHn^Nl+y?=x%@!jB~69eqYCtC(20bt3Y0ub<-6279t z1nlyTFWH?qWXUMmiCWD4=eN8Q>U+SFxCl{&m z(cKrOjgQZs@tpvo(zD~#USMLN`x@QxtL}9S0kCd=@N%@=&V>P^hr`U>T!lZh9|`|M zwh$hTj1BOEYsaeYHwP&&CdyU?wNSl#9oBf*(?HeI_nGraYAux`wDNYdn-$PW+qk@0 zSB99rFecCwZnoC_zOow6dM)bn-uFe)NntW8Nr;+%N5gc+{pY;^Lg#HyGr_`uvhs!K zFAa#jUFG#*a;NL+;c9d#0V(tz*2L@2GpW^XNDR?JzzaojgMg5oTPo&K7Js#U*l6qY zl3f`>cD|sx25@cvdU~72_0tVIK2ZS@njT+Q4;&EgOMdoG^!U#IbO6y_NZwG^TU;zM3%0qLSlIf&6olXO^zzd{H3IhwKqs}uk-=aE=uh!REWsI5`+kS;mE^0t3+QKE%AS$H40p14;% z%zEayjVCPhfoC>F0&m~-qJPq$l>p$8J754%I*_c&^zO~@9sdBKi+H%RuK|IqFJ@_B%LP)W%YiB<(0F*6dagQhZt>H0M1% z8}Ger!;@;7N-ma&`6w52LV3%{dr$XP6@i^F54HOMgStc3J3Nj<14UNK+(p9-;<7?_la9c7zM=cMnSqS`QK#J&gF;PG*X6( z?TE{091HcaoBtGd&`9mN9t$z-+l+Sl&O~C#1z=dr+kZCTFh$OjGN*sE`+$c1#vQ2N z@-PJ0Sg{h&4Md0laZ`l$vT@U26I#f__D}9G;<(*8tx+ zsbAlgyXe8q0e~q(yX29Iw}ACd))nUkTX+frXvxFVb$|!sgY7my)u3Pl>3v{PJ?rB7 z7J;jNJ{04++LB(^$;wS(R`%&aE`{|-YgP1E)LQMzIAR8bPFe~y--?B2&&RF=9Rn`D zKjOKkQm*xXy1)rNvF;Uh$Eo)cZH5d3dhNoRR?ZtPm#pIb8J#r{T~%qc0DB#Ddb$DJ z`r^Z8hd^`VP3yVT9j{qX4_!mPve*1+0?>!XTeVp8AV8LtsP~xYaCFTf1D2vv_RCJH z4!~b>e-v5{-ZF@{+!@&F^mS}f!W)0sP-tnE#K542X+i#rUq z2zV3^Uf3h$?_%uwSo@wVbpgOrzRN3-wPpnN5m)WUES&BuMi&s$4}1RM>?iwf4w zCif8)qPH}s)Tik1sZWFv^REZkO&>B6aSz{q9j!&hux)o3L@j*X)$ou?-mQ8uXkYXu zQYT_PzR(j5}Q&^ahA zT@KwyNK2=nNK1F4NH+*bOLv39fbd@2&syhM@4eRfat?f85yPIn_Z9#Dul56MXyj8Q zPjII3_HzmTxXBKZk8#85dI7_|JPYEji;z2&gmnF`i`|jZ9S>P3DOv^)VL8_zyqx;! zKKvQLmP%fTGmwRrY_{pZy*YHjSi+o8$}t^1V+}8G2CGf{C2XYUj{Qz~?-?Kd$I%A& zp~pIzv`X-QTUsB#UOhqH9(FI%P_@d~kO2jHtXYWUv_2@18}Eigi^iO58i-JIGV>!8 z{$QR0STlgqpNN~Tj?@R}8vGw=o0<@wMgdGmKOl@3{7hxlT595g^pFX3IBU(Po6q=ROFQx_sAkDW#LF_*pxtq3V8$CCzbIH$d$1P~<-8eH zH~h~?TpiT3FHIT;4S7Vhq!yo}lma-bnDu?@cy5HDI1X*L3O;)39dD3i&RK=;W$aag z)W(H1JS5fA~TCbq;obLDQoc=wjZrn=?;5qK+~64VFin*;PUnY#tQpS%J`}N zUqG82C;a4QI7|>(zVD!>ifd#WLU*jQKHZKcj%A-iga$V*UKm# z&q_mvC@Ch2S4}Zo3qCjymC_?6eZd6zz7}V<6HyZr2L4>9ZuJAn zWt7PXnpd@IeQayB9n`z#(>hmvIQlGF6w0wbC!u%BN9|U|vV@7XMD>#EB%MZO% z6yDZ(4YIrjjh^B8_g&nDDS!-qt%pAu&vp|6t+Q2mJ6@ODF*-2hJ+ZHHlEk;^2N!W| zh1>#$!Mbbo=O-NQ2Kyk@i*w>onECRr3_a`6Jfff;A<*?8?R`!usmV#B56<9x0wtvW z`U)AylrlXE7LBWE$f5vaWTd$F;JUxnWJzC69$olZ;{kfl8KxzYqQKuC@$DyLT4F-X z+)q`tk-*?`%UPN3(*Z8f>&+4Y;wFO*;0GJZY(-nnZV3fz+(!~xohgq6YTTfj@$OZ4 z=_^@;p((A<^5QRtRs+a|ZTXmz=TD&`YLUr^jQ58hvK%+L01~;+L!=%@3ADADg!Sa< zh2&t5qG_%gVRMbXWq7}k^H;+m-rUdz1>S=yY~+LT;)Ch1Xl#I2+ z$UgpCly(W(St~Jp+tc~Y0UgVYTIYB!*(d%n<(r0loEZQTP@c|yzT)Y& zf$#J7HwDWk&(cst-WPkyo~ZikWMHTK<+{Y$rk>hN0kGmeTe#1l41!?ncb?Csxrr=B z9@AdUrPx;|uBm=vK;^i&RIAtHT0VFQ^O0>YTdGX2@}EI;_bnIn-N4IL@$vRnlRRX= z{rjt=-ViGca7`|`nd$uwpH=)1_5G;%mUgHF7q*;ZHxn=IjbUe8V2f`Tm13~6!>l{# zlLHo9)ukpUNed$4z;{oi>BecrHM{htkyJ`6o}|P4dtq#MtWTuTpsl++B&bgfjfe8_ zCVGgVw~y~g{JXxn`{O>*2k6)ouQ^g$zwW7q7Hd+Vk(aFIP`I}fu8LOL9h0^=t)24) zlC?}no@VOzic#s%#8UknHB*|9IjX>S&h)ue+PJTT&T$1;cM*hM-U4ikSNU=K6i}9- zmp>>kY)8hF4z21&EQD_#gl@ea{lnY9xW3=iYvl2wWASQx=k-SX;O0bwQoTeM8L*Wf zm#tG>#Y$~KY`8Mi!=L;S1Vh|s>-CuA7U^}qWx?vR)TCNLaNm`;etVgUE5eqq{)M7n z2YvsR_fTf(i~!}CD$e!4b97)CML2%KVo{C9mNwKSgo|}P6OlK6jft z6TiQ93Uyz{PrAgZnpJA3Lk9PGup?&u`qv_;x#j<#Ro_;%Qq%b;$nbD*oLZ zaUqOAw=$e%0-k_rG@vEY&vQLHYZK<==Z3JC{^@SPdTbc(IoE6-yDnUw7kG9Hf-m`U1lQP-zaP0S6Bbbf?f-UpSX4Yh=bp`pp z_yb=Wzm&rl(J$3wgneCjj%+Xj2nYw3IM+OhmQLV>V4F`lC++P(4vM;@DYecu2ioo) z^^@DEd7S+uK~_xIe7}#Qqz70fO_pMDNDg1r;?P5MbY8-AS@g-S^L03XraB?s0)ZL3 z&0}hJQ-GQ#I*RLE#o&&x6M7?u~0R*Fmdpn4E1e22r5AE|zB;I9Ff z`=#3@y9iv7M*sdj3!@K#q+_qQzn=cba{r1v)ioeTYxRG0$=7xEEfWA5JYs2~l_XIH zzE)N|pQ7jGIY?kHpsCTzB|yFoU8eRp(pjP#(3{0hUKtpgfy4Z?K*tO>vBmsmCk#^u zXvxw%X;CE7?sj#<&sMwUMB~to7mz^xK;k{}T%o#pH)9bUoS;heEA( zP)r8Ix+Q!djRRqbPRGnl_F?KWiyCnmy4hjS8#>tdoj6T8ah>86peN|sUOKgRW zO)Vho&F^?ymizGK5Cq3Uu{7ZO=Jy$GBYp~AKw0mwivcN~tY>aK2PB|D@T70Vvs~K8I&SZ6 z)pRf3lRfN8mokAk96gVdb(g}6O*2goc&|gwf_)bq9va+Y|3xl=a8_NcEJ7mF1Z&jFY6@&&Rrf@m!O}EoSLlv+y9L_&0SiGpeUWZUS1CqHmK0Uk} zhyCNnI>|?&?EdClmbuE?!wc&;(Kf&xIpWLA?0wMIbgEH(59=s_j*d8ChNFieqY=(; zf0he~|9NH1*AR<6Sz~)H5Tdf(oj!5E4|#PumPon%&1mMh9Spg~fX^lRgUUOI(c|{} zaH5yZKJK5mp-u=YAs^3D3Xn3v+Wg_Uq5c#X95rk}rl@peNWJZ(uc<%QP2~cuHv+(h z*=0wJH$R0r5P7%jgB}CI_mA=x3%R(h`zTm$u5A11%u)0xo0UJsTWMhcl>Mi!qxvcJ zgXjKDR#8bAHqhec4s6vNANJB&80wGCzVwAy?9y6C8JeJ|=Js9#ZxAk|GzVFhw{3n9tp4PiNBCFp ze90|jvAK~hOHL}c$Ii2>gTed~(fjEv9Xw4rl4wUJ1tHLxOY(KQ>`dwesUOcy+KSGp zo)v{L6c^7|R_#qulwTE9V~de#Sx&L(Jt`eLUQPO}aQ8l05~a66yvAyPJjgA;73Z~4 z&hiAnggBFU@p|4uh(bEln5C?i@aV{pL12KOm>1639c$_xH>j{III{JliO+T>cDv9PS z*WM8!GsoR~_2WU3s@@_`@Gq}L+nxIUuEmRXP^FX^97)In1)(odt42EL9oTRO_|)?= zxxOettBEAOFZj=E5#K+PWl=xZpZdh`h<#c9IZ;;hY~jw6GolNm_q6w!W+k*CQN<&$ z>FAZGb^+ZxGKk_~G2__yW59w$tW58N^a4&Rt;c|R`Fce<900Ez~l1}-%JsDCisf2{|y z%*G0p%e@$0;0g?F65hy<_S1O=;rk4ghU5QzR63~sr>Acj1V}*oLPg#Y;Q`bV8@1yRYYnp#$YG^*)b20 z08E{0w$?jJUQR_x4bN}M&lYbA$f8=ov}fTXrj5U_foya!ra$X9E*uRMf1K;2=W{4u zujIt%6r~L86a=3AmV;{5pH}&wHD^9d0^Y`7gD8wbQ%mAN_o;Vem~TJ4y9C5^F%Zwu zLi2gN7*N>G%~q5paex|J@imP%mTE4jn5KP7_AF2nfZJrrq=MGL515 zwcLVK+k7aGbD>xQ0l1UA-7SbmvA4XQ5;|7~$vLUkChLIsfqTJ?#zeDx5>pbebj(^qXl zuCqS!nH)vC1b6dYatP}Xy9CR&8Qe!t9xS4^(3)mka!^YewS0{jBVs)3>mQ^tTrd-D zN0ymurKFgHpErY|M`dQJ$!6iu8i0|h@GqGDPR||`Lm@;92M@~9rG^U00sSxdgRR-Q zRTC@*f9{_=6r7Uw=Z5I{S90q1t7zX-j1~?o6#(N-75t?2OYMV_a`V%$RY@v_y z9MDwVt?B-E94v<1pkXaR-@BcgAM^CfGO0XxmN;;-ptYX zk{6Vo?neA`H_2nadw~sNux7@hAF*uKV}FNvTeF`pw5P;NnQ?=qgXcol(%#s3k|{aN z#YA~>Vc;++Tq%7`YTV!&?fsB8#o8);d0RG}`BOj7&nW&QP1$kB*B!x!(r`9gO_!8^L9Q<9MDAg%8f0jQw@;nP|Wt$ClvWNmK=DY4W`hP?`Nj| z4d4hIp>sE(!kCNJJ?`UxvZYhti<*8mJuv(1wqf(L@B%AYfhLogjwtA2O1Nfmqc;7J z#}{o-c2;w@+J^$Xt@QKOGxEl%XLHF+ZOFPcla>znh95w0qXyqr3_W`Vxc~Olj*gqw zZhHieF80%RFy0_bR8{jDK>K*LAj*s~ZXZ{FnZc2!C% zOfS=G`O{J)NN(w^)7E}?X(g?X^wod1YCkg3GRh^>1w z-JpdoeO+a$_^t0fP|X`oP5MG&TC!gSM}2i%G~*JIexL^sA@Y^kso#(Qk>Ge`EIB{{ zWasvU#y{V1{R0EB-jp^ingon*OY_nA!8*!ccELU1-bwE{B5qnW5CJ1}*3KG9ukfZK zlu%O$TZ9T#nsz}P$8P2|yTn(;(RSpNx^FuZF#l%&)FC(dxS}>RisNsHno@Ht+M?`l z`5=VHe!9Xbhl;9;s~)Z4526=exaH6#c(3d6`hm?w5B{Up>aw~VcuMS^{(YBO$vMUz zq_V9=Q;JB3Y~X7Na_YdHeDsiXMoU{C7TxgrO9{MG4H#H+|7;T1*$q6s`FvG`NzlYo zBRHky1B54iVlP#>H0q-QLk`ntm8{e|48w6CgS9MipDtSCbG=9CI_pjmg=Yq!Gmh~_ z(m|h$smSuAL%YqC>HuMMpb@p3V@ zNo`-Aa=jUwuA?TC>5<3J@&7LJ1>f~U0d;zB3S|^l-htT*ti(S}&5=BbfUY^;fpn7Sh&>|@6{gLR+kEi{Ts*onl&jq>* z2LM$Y&L?NQAx3cA<@JfoB~Geshtn7DWGeR6XH}4a6qbzHTZ4HJ{Z-4OGXDHIjQcL3 z$s&Iy_JCmwEncc~i$_W^r!#5Vn zbsDMCrx-bU%e&RTIs_O&@?5KX)y*)G9vCYEA6MkPv1>{EDy6MZr+$%apY!EE_??Zs zA0-z!gM7q&-j>3|*=zq*0Al13);staVX&%`EiHpQUwZ^WJclOh3yViMV$1|!0d4Ro zVvb5rzNQC z?jw-~SKykVyQY)~1d80H{>m2D--zc$p`!SlsJ38Dprg3*cQ#|%W+)PP>k3jklv_$- z0n)?x7ET6cc!8|-`qszkMJNu`U`txIl_Dw{P#4})H6<8Gz}7uQFkh64cWv|7r%3c8 ze~ofDZ2b{?eogCmtF|lQS;P+#v9vq7hGR84j2s}#&laOHTR2Byh!sTsO^afsm1(f!To-vyhgC8So0VogpXVCHY*=PQ=wpc$8v zD!bV&nE?8lt+~h$N~IZl#NHB@y1k|Kx%diYxa+#e-@t>iZG3o{PLQ>ZJ9)du0{uEx zYOU#vWt`x?r^-qvRHbob20ntPoCRV6T{m;43n(R%ZJ~4B{#Ug68@b&XDe*uuOF_C~ z4}C)>mQsQD=TGnP@$eu9bnUwdNboAvd*Ijzbgw_`-d4{a3jEBQl$)1(2S3#$xweSm z+}^RT6>I=lVBx3IP!`{O&>lS5{^4{Gj7~x{PBS;1PkGyWoST$_|7$>Sz}gTQ7ct50 z6SenrSAo_;E56U%P`*g!sSr7OSH9qVFWpm)@~e3qv0gz|FFi|0+rb`oU?kG7=5fpV z_OB2f#?b230Tv!Sc~@vR|4{SExvAYbscQ}klQ zqYMWM(XDicguiB`k)3>}TSfa4w%?O!_V@#O3R%df(!QX4s=$7;0`9!`g7H1$xIm-@ zZ$c_l4Jx==srUJPjA^x7_GT(;m0cf~{oE$P=64~;m>KH!G*aw-2b9A)^Hjbh+gsIE zyS-8h?je3t9^pKN1xgPjWVN6*><+V>Gn6$oBqXb!f;p0vX>ud3>qIvkj#kf62 z(@3T9mGSw7S8_Tp{ih2z_k}}L@R#>|#~AL3VFhO|7iA`%Ntgq76nDh;%@LDR-!_>x z%^fw17l&Bi1&am5;)r0dHOn3lvJl31^{|D?$|2b5G$JD|xMV}+RsP37Lf3RtL$*+&%YG*tu)$2kqMUwcdd9c<-JBhHq z2z478^&0;wSxFHkrJ^^_T~8%+X%GFCm6BVl9rA!WjtC$P{``ep+&@pn=zb|$&J8#k zPg)?R^TAO)f2_j{z1aSHkj$WXm)>n8?B0@2D#TEH;6)|WRm7tKB##s)(oTqHL!g$m z8rZUO@c;bacbnzB{n(!Q=Y+oa;FrU?yzj2xM1p*0LrpoUXI<&m*KP+h*!Sshw{u%F}LHRO^odf0z zAO#T96v<5+ept*d$gS6tZKZ)~zT#(+gHZ-@p1DXbF==iU%C3#;0{itrIXNEZOx|br zM(P2J=z&OW?+_^Dmr1r&+q=Zfi~aV%t6@;}&7rLMi5E!c4Qji*3YH1j^-B zNeoh48=%uZEaUUP&+pqoOpA^8g+uml)o^=nfnpHjX=XoXVuVQ&s1^`Ai?p#+heZWc zZ%$-UQ&VU_(i4^fOSj9~L;~V=IIK)#yKD_#x#k?gHuY^2OhcHD&V=}u?aEbtOqX&l zr~(C%$ylX2EB_ISNsTDakb!s%PbW;l077J_w*#HBay)PIb1<3oE5sYb%OCQ6SY|;( zUkKmE4erY~KFdyQ+Lx)AijWky4;&|Fr_Bjctg^r7(6_liSYeBY3?^C4)^kbDg8gvU zsN~h6TOtwA(nu(>(k=)BuHXpCb9J`Ig{~BxgoEdxd`vL>!Yo2?!X31-Xn9(KGtn|p zeOseo{qUuCyvo|WFhfl-FN6!%ntIM)-!qM2Wr&@ZsQ()O1!(OYU(OQMGiY_6LD+D6 zeckh(s&zt{%`4NHnawNqyGV{_szcl6qH)ABm)Id1sj8_>`3v7HSpI=@X3_ECa-$;dH$EUGNZ#DGE~N?6|J3(go3r>tY|TX~ ztmI))QIyK{YXVNS-7nhqf>IrT&RSBu$;eUwHY19gRF3i{6OXCgg-7gWC(wBtzsR+C z%x9FiIudeOcIg8O(COkm3;z!iDnF-g3g%;r_5zm$aeMFnPxIqdU)Alu$X^k&{QQgtIS=V@UeDQ&!F>ItoexBCLt3bzMU$6}w!t#Bv z54$=_x`MG`V(!~0n~I`OpcB(ojP{p;z7j~pmP(WsYWy)}Qike9uK~8|W^s6dFcfkJ zdpq^a-QKv~^97$%C4o(AQ+)Y?;_#mON9+=@-p}MNyx|}zhp1~mc$B-!WIQZS3ro^N zO(?fWX#<}Z3Bx9!L8%6(1)`&cs$Y_(v4sZwX=P_qj40mmN5V`Zr-@RH<=A6gJ8V4S>)^DoHpCmd3jv++V~bL zVR6C*5TMc`GwM9w|M;2BFZ0yI>AdIKtDpHNBZM1kCb^6|X6&G@PQKq1&v?6{R-~M} z=%n-0qRf`1LrdYi(Mr$z0h4N!uR+f;j;J#QS%m49`)*}y2ztZjAAuq`jp+}YE_raz zb`#^h*goPO<^O)53)?*m1p^NP+2w;kFu(&{tQ;MqAAB2~&9+TM-XSAS!eP+z30a5c8p??>Tg?(Xi+Uf2_7 z`5tjxJ=OTQuXJ@d!i#4}YNK_aG@g zOc>fB569LgGDER(jSv0b(uN9}#r3f%>y4HW^?_p6*hiXjSDI@6z0pHYPT93;8xxUW zlTz=D5}imCxBS?x?X)a3d4#P|KV@U48N+L>g70Q^_0wF=0m7Wnw`R`jb}kti}y9F5VToA#9EZl=zd!Abfu}us}Tp)_cEC8 z!m>lOG6#7aR>jsdg)!k6Ki5YVjSiZfW zm}+NRKS86kTnkkeI_|6TL`dlNgp(h)5-P7> zn~e*s;Wp?=WYCkR*_=2}h+f5A#)a=sc}C{mC@V%2im@9^mS529I%jC5@TO!;z5ZqQ zAyqXWLuEPY%{LN!3ua+U?k~7%pLCNKGz$WxP?ieIUffKiC1<){H|Y-)*rhTM#YI&J zUh)2JG|PSkGoebWk1pfv;UNC>E{KugEf$?dm19ZpFjwRB$;kXJc0=CcQe~ddEoNXK z<(a@C^VEiaSSmY-bduNUzp(oxlVmFh+Q7a1zsUO|)O(5@At{c@J1<%1=3Cp&@jyfA zi!S-~{ep@b+%uUbE_o(Kn++R^z}2ZQeA&8#h`?31QHFu`79K9snSg(as|zxGVFuCH zTI=77Wj0TdzdMS0SXyuA+BtqtYIIf(WU$MhH;6f!v8F`D#|@K?$1qGA4G__ev@ zXn)&bx{&ox?o@i<;#$k1h0&9GJdr9gnSi^~a~cvN-GD{ipjGjz{)N))JIe0Zgm8{+ zcgtq&*JYbbPHHvmSVC{}v6h3+n06*jvW0vqE6+4OfNH39Nuy1Kp#XWGhm0)d62^5reA#g=nXdK= z-w#bUlE3$i+&$-_dCoDG`FNmdX&-MMHpx`(nQwY?=iw%$r4ee{2{+E3L0S59;&FBK zMBJnQ|#D^oo$uPTYCR*-Xozg%b9RFv7>ecWax_wkKUPxqc@Z7nl;y=%9vv%oc9{U*aXsELReKfW>j~jZ|0cVS5F9T z56wDPXzG1~Fuei@U21e`5*26NaFWpC-w-lup2J#K2A-Ub`3Nz_U#ixAfC&}`BDp97YRD?$VWZ#H!0e0^xtpUeN2OtT3B`9 zjBwxI$3o)IEeI?b_^x*Z!swJLADwE<>OIknmbh};b;CfG=#6I5LXyG~CW3Y) zCh!*+Y+hI2Vf6@nyOpi)DkLEJ{7m4}*i(T=^pHq+7eXw|=MUWY$6)Oq3m?&~J<6ey+q%Bp5&6iE+VC#JxBY{+Dm3 zEvq6Ukn?_@FqQCKvDxwGzbv$H;UCVwksVR(2gD;p&~OBLr@I;%F$!HJUX^@#y^X6)Q@@7 zuvp1;`p+!;8EPYgXLsJvbm?Ne9ujb{>{XD2T)!A5bJeL!$5ebFu8t~cCWSXwEl2<7 zn|ksuOePpU6Xp{9#^~}5{Y%Tq^B|U&rG%fK$XsP1BYNshj&^@na=!MUo zs((w2LuO_<^oWI=lQYogYxrSL4wcGTapWh5C46oh_EJz1ON7 zBceem&#Xq=3`W#HI4!;J>5Wtot6j{sNa8hkG_#yJpMG!>8O8|p5=#6LOI@A7NXjS2 z%Bphu^>2ns4o3Y`FO;u`-k&JY&Q)o9o{RCk%n$H)5~`?lEJMzV44uNFCQI8IvX5jZ zfhbT*^0cr9H&iDXPvW*gQWX?r8BXe8K4np&@9q@a1cM^wq&grOG!TU=6x z9ZSQ$N7Rls;LWtGxvzRQ{9+&G-*a2}WM+hEwF${?Ta%}-w#Nski5}PDGGC?0A7@N< zZY8WR(=cKO`&`Ijx}@?eACj6^o@`Ud!5b$`$lD{ADT6W3M9dO|A<0S72$T=H7%w)b zYa7O@e^)X z-JWEU!zl?1uzR=4rs8?B6V*hlI>@H)ITov0$J;!selG|Be&hQuc^2&io4}fkRQwU%6vboo(}#%V;M%zs-L` zjc?JObDQ$?Sul19>^??LPTwzt58$eKQ*lU3j+B^hRhgPA_hG*>OSf`Jryz}HM`xfx zrEFf+#2=*d8>8Q1x2UF9*4E!cr^oQM#+Ix6)&A0WACG&Abdt@KY4?Nca44?+PI3W~ z!Vp^82iR3vYSbVGzjKeWZZkS*jQ-a92tR+Ms|1YxpjT>r(^?Y4Iw3=H_`+KKvo*SR zk2N5IP6pvSu6ys!#d-sb_e}V9irJD=8N3qx*GOL7@at$}=yjJ>&z4)~=1+V9Q z?Ve;$n^*U3TVcS>))EpS>n10etgQ;dW~aOGdkJZ`42ujo8S72_JXr%(3lZ^t@(IzhU^J@o%3Wz$L}kN>lpK?SC4Zj zP|0;pY3kc%Cp0+D-!?a%MzW_z%@yvWiqZACgkX`$CK(;-9#Y=@({@Z6CDZ3bWr7np z>o?v$W=fwlH#T0+>JZ+4UJxZQrM@XR;f$aC*l+B&pmJsD*bATPf0;WRI@zzTDwTa2 zBPQ21m_=l2G+v(B__~iU-K*eUtT2o0IA#+aVC3rAJl%uSPcgN)V|me{jS#t@I3!;j zF~2!)|JEdynV@bzsasx}ts)Xb1`_6fRkWQS{c=JajrS+w7`|cO0)1O+)-HbcS zzHlE0%5@siTV%;r@uZMNz;c!03v-l>z7hoAM}Pd$68PL$>TERg*hkB@X1_wzFWgp+ zgsE$9tBmpZ-xp`&uV!nf*{n5J zl`gAL3}|eyj9%KVVvv*9+kZ+(cf|iNhc9N@1Ng-fw_Yi2+sJP&dB@eOgR zvkyN{@MJaHs(Jnbd;R{8oh7D?d6sYX=1&%+e@%^Hawz1yTvAC257{sn*j`V%m+E7i zc3_wZ+AB?F?#8xHJI0(Sw7)LgVTTcPnEjA-#8f0P7%VBE2roTo(LcG`KxObOP_vb$ z&sdWsrRd1<-;3cHL`z;Ame!Zm!oKYm>UQQ~4|~T_E49%*MV6Q{SXWzgMf_e?^nxsp z`a<{IG@K}=Zhp8yRhY1<0;ky^w2n)0BfyqRg{QT;m4hT-k5!~lZxkbc)rF@MrBvi3 z4#{Y=yih9Gu%PigfLqyTd!Tq7{ogXZNS0jpAz!Wfz{gtSchp}ex8z-zm?A{GC1Uy| zi5n+EubJm<8Ya2CMZTHJ6UL`Ey}M!f$NC6^ncc{=`Q-u$ejYlvESn*CcBc-!t#nW^n<+4Wbki}Q|tTCUaC!4FT z3R85|QpEIBC~Y8-8%I`EI4Q5#nEhFBp;k`Dh4! z`11ejIlcdVsQ-TK?f)DI0%-`wL;C-AsQ>#Rxc_~;|3+p0_joJT{|`p<-!J;_>G{7e b!iN9vWQD4tp+Ecv6?`g!H=pkL@ZJ9bS^Lx< literal 0 HcmV?d00001 From 850d05d4c96b7518a20db0863474bd9b77485a15 Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Tue, 5 Aug 2025 16:03:19 -0400 Subject: [PATCH 06/14] cleaning abstract and adding coordinate uncertainty to occur --- .gitignore | 3 +- .../convert_ATNnc2DwC.ipynb | 879 +++++- ...tted-seal_trajectory_20180418-20180526.zip | Bin 6006 -> 6474 bytes ...seal_trajectory_20180418-20180526_emof.csv | 4 +- ...eal_trajectory_20180418-20180526_event.csv | 4 +- ...rajectory_20180418-20180526_occurrence.csv | 12 +- .../data/dwc/137491/eml.xml | 87 +- .../data/dwc/137491/meta.xml | 30 +- ...bbon-seal_trajectory_20140426-20140426.zip | Bin 4968 -> 5920 bytes ...eal_trajectory_20140426-20140426_event.csv | 2 + ...rajectory_20140426-20140426_occurrence.csv | 10 +- .../data/dwc/137494/eml.xml | 87 +- .../data/dwc/137494/meta.xml | 32 +- ...rded-seal_trajectory_20110618-20120314.zip | Bin 30964 -> 34840 bytes ...eal_trajectory_20110618-20120314_event.csv | 4 +- ...rajectory_20110618-20120314_occurrence.csv | 2438 ++++++++--------- .../data/dwc/38553/eml.xml | 87 +- .../data/dwc/38553/meta.xml | 29 +- .../templates/eml.xml.j2 | 60 +- .../templates/meta.xml.j2 | 25 +- 20 files changed, 2402 insertions(+), 1391 deletions(-) create mode 100644 datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv diff --git a/.gitignore b/.gitignore index 0d8c027..e9485a7 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,5 @@ datasets/atn_satellite_telemetry/data/src/ datasets/atn_satellite_telemetry/data/dwc/* !datasets/atn_satellite_telemetry/data/dwc/137491/ !datasets/atn_satellite_telemetry/data/dwc/137494/ -!datasets/atn_satellite_telemetry/data/dwc/38553/ \ No newline at end of file +!datasets/atn_satellite_telemetry/data/dwc/38553/ +datasets/atn_satellite_telemetry/.env diff --git a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb index b404275..9652512 100644 --- a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb +++ b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb @@ -13,7 +13,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 1, "metadata": { "id": "0JvPXasXc432" }, @@ -31,7 +31,9 @@ "import re\n", "from jinja2 import Template\n", "import codecs\n", - "#import pyobistools" + "#import pyobistools\n", + "from shapely.geometry import LineString\n", + "import shapely.wkt" ] }, { @@ -484,7 +486,7 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": null, "metadata": { "id": "c9G3a6N2bMh2" }, @@ -494,7 +496,8 @@ "\n", " dwc_df = pd.DataFrame()\n", " dwc_df['occurrenceID'] = \"ioos_atn_\"+ds.ptt_id+\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')+\"_\"+ds['z'].astype(str)+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", - " dwc_df['eventID'] = ds.ptt_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\") +\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')\n", + " dwc_df['eventID'] = \"ioos_atn_\"+ds.ptt_id\n", + " #dwc_df['eventID'] = ds.ptt_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\") +\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')\n", " dwc_df['organismID'] = ds.platform_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", " dwc_df['occurrenceStatus'] = 'present'\n", " dwc_df['basisOfRecord'] = ds['type']\n", @@ -512,10 +515,12 @@ " dwc_df['associatedReferences'] = \"https://doi.org/10.25921/wp4e-ph20\"\n", " dwc_df['minimumDepthInMeters'] = ds['z'].values.tolist()\n", " dwc_df['maximumDepthInMeters'] = ds['z'].values.tolist()\n", + " #dwc_df['bibliographicCitation'] = ds.citation # barking about this.\n", "\n", " # set basisOfRecord\n", " dwc_df.loc[dwc_df['basisOfRecord'] == 'User','basisOfRecord'] = 'HumanObservation'\n", " dwc_df.loc[dwc_df['basisOfRecord'] == 'Argos','basisOfRecord'] = 'MachineObservation'\n", + " dwc_df.loc[dwc_df['basisOfRecord'] == 'FastGPS','basisOfRecord'] = 'MachineObservation'\n", "\n", " # filter to respectable locations\n", " dwc_df['location_class'] = ds['location_class'].to_series()\n", @@ -544,10 +549,12 @@ " dwc_df['event_hour'] = pd.to_datetime(dwc_df['eventDate']).dt.strftime('%Y-%m-%dT%H')\n", " dwc_df.sort_values('event_hour', inplace=True)\n", " duplicate_counts = dwc_df.groupby(by='event_hour').transform('size')\n", - " dwc_df['dataGeneralizations'] = f'first of ' + duplicate_counts.astype(str) + ' records.'\n", - " dwc_df.loc[dwc_df['dataGeneralizations']=='first of 1 records.','dataGeneralizations'] = ''\n", + " dwc_df['dataGeneralizations'] = f'first of ' + duplicate_counts.astype(str) + ' records for this hour.'\n", + " dwc_df.loc[dwc_df['dataGeneralizations']=='first of 1 records for this hour.','dataGeneralizations'] = ''\n", " dwc_df = dwc_df.drop_duplicates(subset=['event_hour'], keep='first').copy()\n", "\n", + " dwc_df['occurrenceRemarks'] = 'This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20.'\n", + "\n", " print(f\" Extracted {len(dwc_df)} occurrences to first row in hour.\")\n", "\n", " # --- Rename a and drop few columns --\n", @@ -564,22 +571,42 @@ " 'scientificName', 'scientificNameID', 'eventID',\n", " 'samplingProtocol', 'kingdom', 'taxonRank', 'lifeStage',\n", " 'sex', 'associatedReferences',\n", - " 'coordinateUncertaintyInMeters', 'dataGeneralizations']\n", + " 'coordinateUncertaintyInMeters', \n", + " 'minimumDepthInMeters', 'maximumDepthInMeters',\n", + " 'dataGeneralizations', #'bibliographicCitation',\n", + " 'occurrenceRemarks']\n", " \n", " # Save the individual CSV\n", " dwc_df.to_csv(output_csv, columns=cols, index=False)\n", " print(f\" Saved data to '{output_csv}'\")\n", "\n", - " return dwc_df\n", + " return dwc_df, cols\n", "\n", "\n", "def create_dwc_event(dwc_df, output_csv):\n", "\n", " # --- Processing for Event ---\n", - " event_df = dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation',\n", - " ['eventID','eventDate','decimalLatitude','decimalLongitude','geodeticDatum',\n", - " 'minimumDepthInMeters','maximumDepthInMeters']]\n", + " # event_df = dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation',\n", + " # ['eventID','eventDate','decimalLatitude','decimalLongitude','geodeticDatum',\n", + " # 'minimumDepthInMeters','maximumDepthInMeters']]\n", + " #event_df['parentEventID'] = dwc_df['occurrenceID'].str.split('_',expand=True).iloc[:,:3].apply(lambda x: '_'.join(x), axis=1).unique()\n", " \n", + " # create parent event that is a summary of dwc_df\n", + " event_df = pd.DataFrame()\n", + " event_df['eventID'] = dwc_df['eventID'].unique()\n", + "\n", + " #event_df['eventID'] = dwc_df['occurrenceID'].str.split('_',expand=True).iloc[:,:3].apply(lambda x: '_'.join(x), axis=1).unique()\n", + " event_df['eventDate'] = dwc_df['eventDate'].min() + '/' + dwc_df['eventDate'].max()\n", + " event_df['footprintWKT'] = LineString(list(zip(dwc_df['decimalLongitude'], dwc_df['decimalLatitude'])))\n", + " event_df['footprintWKT'] = event_df['footprintWKT'][0].wkt\n", + " event_df['footprintWKT'] = event_df['footprintWKT'].str.replace('LINESTRING', 'MULTIPOINT')\n", + " event_df['minimumDepthInMeters'] = dwc_df['minimumDepthInMeters'].min()\n", + " event_df['maximumDepthInMeters'] = dwc_df['maximumDepthInMeters'].max()\n", + " #event_df['basisOfRecord'] = 'Event' # barking about this\n", + " event_df['eventType'] = 'deployment'\n", + "\n", + " #event_df = pd.concat([event_parent_df, event_df])\n", + "\n", " if event_df.empty:\n", " print(\"No HumanObservations found in the dataset.\")\n", " return pd.DataFrame() # Return an empty DataFrame if no observations are found\n", @@ -606,7 +633,9 @@ "\n", "\n", "def create_dwc_emof(ds, dwc_df, output_csv):\n", - " \n", + " ## Add more details about the sensor following https://www.gbif.org/occurrence/5068380514\n", + " # See https://vocab.nerc.ac.uk/search_nvs/MVB/\n", + " # add serial number and all the other details here.\n", " # --- Processing for emof ---\n", " vars = list(ds.keys())\n", " animal_vars = [x for x in vars if re.match(r'animal_(?!life_stage\\b|sex\\b).*',x)]\n", @@ -630,7 +659,7 @@ " right_index=True)\n", "\n", " emof_df.dropna(axis=0, subset=['measurementValue'], inplace=True)\n", - "\n", + " # barking about eventID in emof.\n", " if emof_df.empty:\n", " print(f' no emof data found')\n", " return pd.DataFrame() # Return an empty DataFrame if no observations are found\n", @@ -643,7 +672,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -705,11 +734,11 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ - "def create_meta_xml(dwc_df, emof_df, event_df, output_csv):\n", + "def create_meta_xml(dwc_df, emof_df, event_df, output_csv, cols):\n", " \"\"\"\n", " Create meta.xml file for the Darwin Core dataset.\n", " \n", @@ -731,13 +760,7 @@ " meta_xml_vars = {}\n", "\n", " # when writing dwc occurrence file, we only save some columns\n", - " dwc_df = dwc_df[['occurrenceID', 'occurrenceStatus', 'basisOfRecord',\n", - " 'organismID', 'eventDate', 'decimalLatitude',\n", - " 'decimalLongitude', 'geodeticDatum',\n", - " 'scientificName', 'scientificNameID', 'eventID',\n", - " 'samplingProtocol', 'kingdom', 'taxonRank', 'lifeStage',\n", - " 'sex', 'associatedReferences',\n", - " 'coordinateUncertaintyInMeters', 'dataGeneralizations']].copy()\n", + " dwc_df = dwc_df[cols].copy()\n", " \n", " meta_xml_vars['cols_list'] = dwc_df.columns.tolist()\n", " meta_xml_vars['occurrence_filename'] = output_csv\n", @@ -766,7 +789,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -793,7 +816,7 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 6, "metadata": { "id": "aD62GgzSS0zu" }, @@ -847,7 +870,7 @@ " continue\n", "\n", " # --- Map to Darwin Core Occurrence Terms ---\n", - " dwc_df = create_dwc_occurrence(ds, output_csv)\n", + " dwc_df, cols = create_dwc_occurrence(ds, output_csv)\n", "\n", " # Create and save eml\n", " create_eml(ds)\n", @@ -857,7 +880,7 @@ " emof_df = create_dwc_emof(ds, dwc_df, output_csv)\n", "\n", " # --- Create meta.xml file ---\n", - " create_meta_xml(dwc_df, emof_df, event_df, output_csv)\n", + " create_meta_xml(dwc_df, emof_df, event_df, output_csv, cols)\n", "\n", " # --- Package into DwC-A ---\n", " output_dir_zip = f\"data/dwc/{base_filename.split('_')[1]}/\"\n", @@ -884,7 +907,7 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 11, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -920,7 +943,9 @@ " Extracted 4 occurrences to first row in hour.\n", " Saved data to 'data\\dwc\\137494\\atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv'\n", " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137494\\eml.xml'.\n", - "No HumanObservations found in the dataset.\n", + " found 1 HumanObservations.\n", + " Created 1 events.\n", + " Saved data to data\\dwc\\137494\\atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv\n", " no emof data found\n", " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137494\\meta.xml'.\n", "Packaging Darwin Core files from 'data/dwc/137494/' into 'data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip'...\n", @@ -972,7 +997,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 15, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -980,20 +1005,481 @@ "id": "ZLbEYyfXeF_U", "outputId": "e442e372-c592-4957-8b9e-2f9b28fba37d" }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Extracted 1040 occurrences with valid locations.\n", + " Extracted 789 occurrences to first row in hour.\n", + " Saved data to 'data//dwc//137491//atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv'\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
occurrenceIDeventIDorganismIDoccurrenceStatusbasisOfRecordeventDatedecimalLatitudedecimalLongitudegeodeticDatumscientificName...taxonRanklifeStagesexassociatedReferencesminimumDepthInMetersmaximumDepthInMetersbibliographicCitationcoordinateUncertaintyInMetersdataGeneralizationsoccurrenceRemarks
0ioos_atn_74626_2009-06-25T03:30:00Z_0.0_bearde...74626_bearded_seal_2009-06-25T03:30:00Z137079_bearded_sealpresentHumanObservation2009-06-25T03:30:00Z66.5000-162.7000EPSG:4326Erignathus barbatus...Speciesadultmalehttps://doi.org/10.25921/wp4e-ph200.00.0Boveng, Peter; London, Josh; Cameron, Michael;...0first of 3 records for this hour.This is a representative occurrence from a ful...
3ioos_atn_74626_2009-06-25T04:03:31Z_0.0_bearde...74626_bearded_seal_2009-06-25T04:03:31Z137079_bearded_sealpresentMachineObservation2009-06-25T04:03:31Z66.5454-162.6788EPSG:4326Erignathus barbatus...Speciesadultmalehttps://doi.org/10.25921/wp4e-ph200.00.0Boveng, Peter; London, Josh; Cameron, Michael;...1500This is a representative occurrence from a ful...
4ioos_atn_74626_2009-06-25T05:05:54Z_0.0_bearde...74626_bearded_seal_2009-06-25T05:05:54Z137079_bearded_sealpresentMachineObservation2009-06-25T05:05:54Z66.5607-162.6883EPSG:4326Erignathus barbatus...Speciesadultmalehttps://doi.org/10.25921/wp4e-ph200.00.0Boveng, Peter; London, Josh; Cameron, Michael;...10000first of 4 records for this hour.This is a representative occurrence from a ful...
8ioos_atn_74626_2009-06-25T06:54:23Z_0.0_bearde...74626_bearded_seal_2009-06-25T06:54:23Z137079_bearded_sealpresentMachineObservation2009-06-25T06:54:23Z66.5434-162.7785EPSG:4326Erignathus barbatus...Speciesadultmalehttps://doi.org/10.25921/wp4e-ph200.00.0Boveng, Peter; London, Josh; Cameron, Michael;...10000This is a representative occurrence from a ful...
9ioos_atn_74626_2009-06-25T07:19:22Z_0.0_bearde...74626_bearded_seal_2009-06-25T07:19:22Z137079_bearded_sealpresentMachineObservation2009-06-25T07:19:22Z66.5516-162.7268EPSG:4326Erignathus barbatus...Speciesadultmalehttps://doi.org/10.25921/wp4e-ph200.00.0Boveng, Peter; London, Josh; Cameron, Michael;...10000This is a representative occurrence from a ful...
..................................................................
5651ioos_atn_74626_2010-03-08T18:16:54Z_0.0_bearde...74626_bearded_seal_2010-03-08T18:16:54Z137079_bearded_sealpresentMachineObservation2010-03-08T18:16:54Z64.3625-161.7444EPSG:4326Erignathus barbatus...Speciesadultmalehttps://doi.org/10.25921/wp4e-ph200.00.0Boveng, Peter; London, Josh; Cameron, Michael;...10000This is a representative occurrence from a ful...
5652ioos_atn_74626_2010-03-08T19:03:21Z_0.0_bearde...74626_bearded_seal_2010-03-08T19:03:21Z137079_bearded_sealpresentMachineObservation2010-03-08T19:03:21Z64.3717-161.8104EPSG:4326Erignathus barbatus...Speciesadultmalehttps://doi.org/10.25921/wp4e-ph200.00.0Boveng, Peter; London, Josh; Cameron, Michael;...10000first of 2 records for this hour.This is a representative occurrence from a ful...
5654ioos_atn_74626_2010-03-09T05:05:32Z_0.0_bearde...74626_bearded_seal_2010-03-09T05:05:32Z137079_bearded_sealpresentFastGPS2010-03-09T05:05:32Z64.3360-161.8394EPSG:4326Erignathus barbatus...Speciesadultmalehttps://doi.org/10.25921/wp4e-ph200.00.0Boveng, Peter; London, Josh; Cameron, Michael;...200first of 3 records for this hour.This is a representative occurrence from a ful...
5658ioos_atn_74626_2010-03-09T07:31:34Z_0.0_bearde...74626_bearded_seal_2010-03-09T07:31:34Z137079_bearded_sealpresentMachineObservation2010-03-09T07:31:34Z64.3370-161.8410EPSG:4326Erignathus barbatus...Speciesadultmalehttps://doi.org/10.25921/wp4e-ph200.00.0Boveng, Peter; London, Josh; Cameron, Michael;...10000This is a representative occurrence from a ful...
5659ioos_atn_74626_2010-03-09T08:17:48Z_0.0_bearde...74626_bearded_seal_2010-03-09T08:17:48Z137079_bearded_sealpresentMachineObservation2010-03-09T08:17:48Z64.3230-161.8560EPSG:4326Erignathus barbatus...Speciesadultmalehttps://doi.org/10.25921/wp4e-ph200.00.0Boveng, Peter; London, Josh; Cameron, Michael;...1500This is a representative occurrence from a ful...
\n", + "

789 rows × 23 columns

\n", + "
" + ], + "text/plain": [ + " occurrenceID \\\n", + "0 ioos_atn_74626_2009-06-25T03:30:00Z_0.0_bearde... \n", + "3 ioos_atn_74626_2009-06-25T04:03:31Z_0.0_bearde... \n", + "4 ioos_atn_74626_2009-06-25T05:05:54Z_0.0_bearde... \n", + "8 ioos_atn_74626_2009-06-25T06:54:23Z_0.0_bearde... \n", + "9 ioos_atn_74626_2009-06-25T07:19:22Z_0.0_bearde... \n", + "... ... \n", + "5651 ioos_atn_74626_2010-03-08T18:16:54Z_0.0_bearde... \n", + "5652 ioos_atn_74626_2010-03-08T19:03:21Z_0.0_bearde... \n", + "5654 ioos_atn_74626_2010-03-09T05:05:32Z_0.0_bearde... \n", + "5658 ioos_atn_74626_2010-03-09T07:31:34Z_0.0_bearde... \n", + "5659 ioos_atn_74626_2010-03-09T08:17:48Z_0.0_bearde... \n", + "\n", + " eventID organismID \\\n", + "0 74626_bearded_seal_2009-06-25T03:30:00Z 137079_bearded_seal \n", + "3 74626_bearded_seal_2009-06-25T04:03:31Z 137079_bearded_seal \n", + "4 74626_bearded_seal_2009-06-25T05:05:54Z 137079_bearded_seal \n", + "8 74626_bearded_seal_2009-06-25T06:54:23Z 137079_bearded_seal \n", + "9 74626_bearded_seal_2009-06-25T07:19:22Z 137079_bearded_seal \n", + "... ... ... \n", + "5651 74626_bearded_seal_2010-03-08T18:16:54Z 137079_bearded_seal \n", + "5652 74626_bearded_seal_2010-03-08T19:03:21Z 137079_bearded_seal \n", + "5654 74626_bearded_seal_2010-03-09T05:05:32Z 137079_bearded_seal \n", + "5658 74626_bearded_seal_2010-03-09T07:31:34Z 137079_bearded_seal \n", + "5659 74626_bearded_seal_2010-03-09T08:17:48Z 137079_bearded_seal \n", + "\n", + " occurrenceStatus basisOfRecord eventDate \\\n", + "0 present HumanObservation 2009-06-25T03:30:00Z \n", + "3 present MachineObservation 2009-06-25T04:03:31Z \n", + "4 present MachineObservation 2009-06-25T05:05:54Z \n", + "8 present MachineObservation 2009-06-25T06:54:23Z \n", + "9 present MachineObservation 2009-06-25T07:19:22Z \n", + "... ... ... ... \n", + "5651 present MachineObservation 2010-03-08T18:16:54Z \n", + "5652 present MachineObservation 2010-03-08T19:03:21Z \n", + "5654 present FastGPS 2010-03-09T05:05:32Z \n", + "5658 present MachineObservation 2010-03-09T07:31:34Z \n", + "5659 present MachineObservation 2010-03-09T08:17:48Z \n", + "\n", + " decimalLatitude decimalLongitude geodeticDatum scientificName \\\n", + "0 66.5000 -162.7000 EPSG:4326 Erignathus barbatus \n", + "3 66.5454 -162.6788 EPSG:4326 Erignathus barbatus \n", + "4 66.5607 -162.6883 EPSG:4326 Erignathus barbatus \n", + "8 66.5434 -162.7785 EPSG:4326 Erignathus barbatus \n", + "9 66.5516 -162.7268 EPSG:4326 Erignathus barbatus \n", + "... ... ... ... ... \n", + "5651 64.3625 -161.7444 EPSG:4326 Erignathus barbatus \n", + "5652 64.3717 -161.8104 EPSG:4326 Erignathus barbatus \n", + "5654 64.3360 -161.8394 EPSG:4326 Erignathus barbatus \n", + "5658 64.3370 -161.8410 EPSG:4326 Erignathus barbatus \n", + "5659 64.3230 -161.8560 EPSG:4326 Erignathus barbatus \n", + "\n", + " ... taxonRank lifeStage sex associatedReferences \\\n", + "0 ... Species adult male https://doi.org/10.25921/wp4e-ph20 \n", + "3 ... Species adult male https://doi.org/10.25921/wp4e-ph20 \n", + "4 ... Species adult male https://doi.org/10.25921/wp4e-ph20 \n", + "8 ... Species adult male https://doi.org/10.25921/wp4e-ph20 \n", + "9 ... Species adult male https://doi.org/10.25921/wp4e-ph20 \n", + "... ... ... ... ... ... \n", + "5651 ... Species adult male https://doi.org/10.25921/wp4e-ph20 \n", + "5652 ... Species adult male https://doi.org/10.25921/wp4e-ph20 \n", + "5654 ... Species adult male https://doi.org/10.25921/wp4e-ph20 \n", + "5658 ... Species adult male https://doi.org/10.25921/wp4e-ph20 \n", + "5659 ... Species adult male https://doi.org/10.25921/wp4e-ph20 \n", + "\n", + " minimumDepthInMeters maximumDepthInMeters \\\n", + "0 0.0 0.0 \n", + "3 0.0 0.0 \n", + "4 0.0 0.0 \n", + "8 0.0 0.0 \n", + "9 0.0 0.0 \n", + "... ... ... \n", + "5651 0.0 0.0 \n", + "5652 0.0 0.0 \n", + "5654 0.0 0.0 \n", + "5658 0.0 0.0 \n", + "5659 0.0 0.0 \n", + "\n", + " bibliographicCitation \\\n", + "0 Boveng, Peter; London, Josh; Cameron, Michael;... \n", + "3 Boveng, Peter; London, Josh; Cameron, Michael;... \n", + "4 Boveng, Peter; London, Josh; Cameron, Michael;... \n", + "8 Boveng, Peter; London, Josh; Cameron, Michael;... \n", + "9 Boveng, Peter; London, Josh; Cameron, Michael;... \n", + "... ... \n", + "5651 Boveng, Peter; London, Josh; Cameron, Michael;... \n", + "5652 Boveng, Peter; London, Josh; Cameron, Michael;... \n", + "5654 Boveng, Peter; London, Josh; Cameron, Michael;... \n", + "5658 Boveng, Peter; London, Josh; Cameron, Michael;... \n", + "5659 Boveng, Peter; London, Josh; Cameron, Michael;... \n", + "\n", + " coordinateUncertaintyInMeters dataGeneralizations \\\n", + "0 0 first of 3 records for this hour. \n", + "3 1500 \n", + "4 10000 first of 4 records for this hour. \n", + "8 10000 \n", + "9 10000 \n", + "... ... ... \n", + "5651 10000 \n", + "5652 10000 first of 2 records for this hour. \n", + "5654 200 first of 3 records for this hour. \n", + "5658 10000 \n", + "5659 1500 \n", + "\n", + " occurrenceRemarks \n", + "0 This is a representative occurrence from a ful... \n", + "3 This is a representative occurrence from a ful... \n", + "4 This is a representative occurrence from a ful... \n", + "8 This is a representative occurrence from a ful... \n", + "9 This is a representative occurrence from a ful... \n", + "... ... \n", + "5651 This is a representative occurrence from a ful... \n", + "5652 This is a representative occurrence from a ful... \n", + "5654 This is a representative occurrence from a ful... \n", + "5658 This is a representative occurrence from a ful... \n", + "5659 This is a representative occurrence from a ful... \n", + "\n", + "[789 rows x 23 columns]" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# import xarray as xr\n", - "# import pandas as pd\n", + "import xarray as xr\n", + "import pandas as pd\n", "\n", "\n", - "# ds = xr.open_dataset('data/src/atn_74626_bearded-seal_trajectory_20090625-20100128.nc', engine='netcdf4')\n", + "ds = xr.open_dataset('data/src/atn_74626_bearded-seal_trajectory_20090625-20100128.nc', engine='netcdf4')\n", "# #ds = xr.open_dataset('data/src/atn_174787_spotted-seal_trajectory_20180410-20180610.nc', engine='netcdf4')\n", + "output_csv = 'data//dwc//137491//atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv'\n", + "\n", + "cols = ['occurrenceID', 'occurrenceStatus', 'basisOfRecord',\n", + " 'organismID', 'eventDate', 'decimalLatitude',\n", + " 'decimalLongitude', 'geodeticDatum',\n", + " 'scientificName', 'scientificNameID', 'eventID',\n", + " 'samplingProtocol', 'kingdom', 'taxonRank', 'lifeStage',\n", + " 'sex', 'associatedReferences',\n", + " 'coordinateUncertaintyInMeters', 'dataGeneralizations', 'bibliographicCitation',\n", + " 'occurrenceRemarks']\n", "\n", - "# dwc_df = create_dwc_occurrence(ds)\n", + "dwc_df, cols = create_dwc_occurrence(ds, output_csv)\n", "\n", "# event_df = create_dwc_event(dwc_df)\n", "\n", - "# emof_df = create_dwc_emof(ds, dwc_df)" + "# emof_df = create_dwc_emof(ds, dwc_df)\n", + "\n", + "dwc_df" ] }, { @@ -1005,6 +1491,327 @@ "# convert_to_dwc_individual(['data/src/atn_137491_spotted-seal_trajectory_20180418-20180526.nc'])" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Dimensions: (obs: 5660)\n", + "Coordinates:\n", + " time (obs) datetime64[ns] ...\n", + " z (obs) float64 ...\n", + " lat (obs) float64 ...\n", + " lon (obs) float64 ...\n", + "Dimensions without coordinates: obs\n", + "Data variables: (12/32)\n", + " deploy_id object ...\n", + " ptt (obs) float64 ...\n", + " instrument (obs) object ...\n", + " type (obs) object ...\n", + " location_class (obs) object ...\n", + " error_radius (obs) float64 ...\n", + " ... ...\n", + " animal object ...\n", + " instrument_tag object ...\n", + " instrument_location object ...\n", + " taxon_name object ...\n", + " taxon_lsid object ...\n", + " comment (obs) object ...\n", + "Attributes: (12/89)\n", + " date_created: 2024-08-28T00:18:16Z\n", + " featureType: trajectory\n", + " cdm_data_type: Trajectory\n", + " Conventions: CF-1.10, ACDD-1.3, IOOS-1.2, ATN Satellite ...\n", + " argos_program_number: Not Provided\n", + " creator_email: peter.boveng@noaa.gov\n", + " ... ...\n", + " creator_role: principalInvestigator\n", + " creator_sector: government\n", + " creator_country: USA\n", + " creator_institution: NOAA Alaska Fisheries Science Center\n", + " creator_institution_url: https://www.fisheries.noaa.gov/alaska/marin...\n", + " citation: Boveng, Peter; London, Josh; Cameron, Micha...\n" + ] + } + ], + "source": [ + "ds" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Push to IPT following\n", + "\n", + "https://github.com/cioos-siooc/pyobistools/blob/ipt_publishing/pyobistools/publish_to_ipt.py" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "import requests\n", + "import os\n", + "from requests_toolbelt.multipart.encoder import MultipartEncoder\n", + "from bs4 import BeautifulSoup\n", + "\n", + "# TODO: extend this to allow checking for different versions of the IPT as the forms may change?\n", + "# Functional for IPT 2.6.3\n", + "\n", + "def open_ipt_session(ipt_auth, ipt_url):\n", + " \"\"\"\n", + " Begin a session with the target IPT\n", + " Author: Jon Pye\n", + " :param ipt_auth: Authentication details for the ipt, of the form {'email': 'email@mailserver.com', 'password':'cleartextPassword'}\n", + " :param ipt_url: URL of the IPT we are authenticating with.\n", + " :return: None\n", + " \"\"\"\n", + " \n", + " # relative path to IPT login form\n", + " login_url = ipt_url + 'login.do'\n", + " \n", + " s = requests.Session() # open a session\n", + " \n", + " # retrieve the login form\n", + " resp = s.get(login_url)\n", + " \n", + " # login forms generate a CSRF token that we have to persist in our response \n", + " soup = BeautifulSoup(resp.text, 'lxml')\n", + " \n", + " # Add it to our credentials dictionary\n", + " ipt_auth['csrfToken'] = soup.find(\"input\", {\"name\": \"csrfToken\"})['value']\n", + " login = s.post(login_url, data=ipt_auth)\n", + " \n", + " if login.status_code != 200:\n", + " print(\"Login failed, status code {}\".format(login.status_code))\n", + " print(login.text)\n", + " return None\n", + " else:\n", + " return s\n", + "\n", + "\n", + "def create_new_ipt_project(projname: str, filepath: str, ipt_url: str, ipt_session):\n", + " \n", + " \"\"\"\n", + " Create a new project on the given IPT using an existing DwC archive zip\n", + " Author: Jon Pye\n", + " :param projname: the project name as given by get_obis_shortname()\n", + " :param filepath: payload resource filepath\n", + " :param ipt_url: URL of the IPT to publish to\n", + " :param ipt_session: authenticated requests session for the IPT\n", + " :return: URL of the resource\n", + " \"\"\"\n", + " \n", + " path, filename = os.path.split(filepath)\n", + " \n", + " if not filename: # if the filepath has no name in it\n", + " print('no file specified in filepath, aborting')\n", + " return None\n", + " else:\n", + " print(path, filename)\n", + " print(filepath)\n", + " \n", + " # if there IS a file and it is not a valid DwC Archive, do we want to do anything here? The IPT runs its own checks...\n", + " \n", + " values = MultipartEncoder(fields={'create': 'Create', # hidden form fields with values\n", + " 'shortname': projname,\n", + " 'resourceType': 'samplingevent',\n", + " '__checkbox_importDwca': 'true',\n", + " 'importDwca': 'true',\n", + " 'file': (filename, \n", + " open(filepath, 'rb'),\n", + " 'application/x-zip-compressed'),\n", + " }\n", + " )\n", + " create_dataset = ipt_session.post(ipt_url + 'manage/create.do',\n", + " data=values,\n", + " headers={'Content-Type': values.content_type}\n", + " )\n", + " return create_dataset\n", + "\n", + "def refresh_ipt_project_files(projname: str, filepath: str, ipt_url: str, ipt_session):\n", + " \"\"\"\n", + " Update data for a project on the given IPT using an existing DwC archive zip\n", + " Author: Jon Pye\n", + " :param projname: the project name as given by get_obis_shortname()\n", + " :param filepath: payload resource filepath\n", + " :param ipt_url: URL of the IPT to publish to\n", + " :param ipt_session: authenticated requests session for the IPT\n", + " :return: URL of the resource\n", + " \"\"\"\n", + " \n", + " path, filename = os.path.split(filepath)\n", + " \n", + " if not filename: # if the filepath has no name in it\n", + " print('no file specified in filepath, aborting')\n", + " return None\n", + " \n", + " values = MultipartEncoder(fields={ 'add': 'Add',\n", + " 'r': projname,\n", + " 'sourceType': 'source-file',\n", + " 'validate': 'false', \n", + " 'file': (filename,\n", + " open(filepath, 'rb'),\n", + " 'application/x-zip-compressed'),\n", + " })\n", + " \n", + " update_dataset = ipt_session.post(ipt_url + 'manage/addsource.do',\n", + " data=values, \n", + " headers = {'Content-Type': values.content_type}\n", + " )\n", + " if update_dataset.status_code == 200:\n", + " # Handle the Are you Sure popup. \n", + " print(\"Publication successful\")\n", + " return update_dataset\n", + " else:\n", + " print(\"publication error, check landing page output\")\n", + " return update_dataset\n", + "\n", + "\n", + "def refresh_ipt_project_metadata(projname: str, filepath: str, ipt_url: str, ipt_session):\n", + " \"\"\"\n", + " Update metadata for a project on the given IPT using an existing eml.xml file\n", + " Author: Jon Pye\n", + " :param projname: the project name as given by get_obis_shortname()\n", + " :param filepath: payload resource filepath\n", + " :param ipt_url: URL of the IPT to publish to\n", + " :param ipt_session: authenticated requests session for the IPT\n", + " :return: URL of the resource\n", + " \"\"\"\n", + " \n", + " path, filename = os.path.split(filepath)\n", + " \n", + " if not filename: # if the filepath has no name in it\n", + " print('no file specified in filepath, aborting')\n", + " return None\n", + " \n", + " values = MultipartEncoder(fields={ 'emlReplace': 'Replace',\n", + " 'r': projname,\n", + " 'sourceType': 'source-file',\n", + " 'validateEml': 'true',\n", + " '__checkbox_validateEml': 'true',\n", + " 'emlFile': (filename,\n", + " open(filepath, 'rb'),\n", + " 'application/xml'),\n", + " })\n", + "\n", + " update_metadata = ipt_session.post(ipt_url + 'manage/replace-eml.do',\n", + " data=values, \n", + " headers = {'Content-Type':values.content_type}\n", + " )\n", + " return update_metadata\n", + "\n", + "\n", + "def make_public_ipt_project(projname: str, ipt_url: str, ipt_session):\n", + " \"\"\"\n", + " Update metadata for a project on the given IPT\n", + " Author: Jon Pye\n", + " :param projname: the project name as given by get_obis_shortname()\n", + " :param ipt_url: URL of the IPT to publish to\n", + " :param ipt_session: authenticated requests session for the IPT\n", + " :return: URL of the resource\n", + " \"\"\"\n", + " pub_params = {'r' : projname, # resource = dataset name\n", + " 'makePrivate': 'Public'\n", + " }\n", + " \n", + " contents = ipt_session.post(ipt_url + 'manage/resource-makePublic.do', data = pub_params)\n", + " return contents\n", + "\n", + "\n", + "def publish_ipt_project(projname: str, ipt_url: str, ipt_session, publishing_notes: str = \"\"):\n", + " \"\"\"\n", + " Update metadata for a project on the given IPT\n", + " Author: Jon Pye\n", + " :param projname: the project name as given by get_obis_shortname()\n", + " :param ipt_url: URL of the IPT to publish to\n", + " :param ipt_session: authenticated requests session for the IPT\n", + " :param publishing_notes: optional message to publish this version with\n", + " :return: URL of the resource\n", + " \"\"\"\n", + " \n", + " pub_params = {'r' : projname, # resource = dataset name\n", + " 'autopublish': '',\n", + " 'currPubMode' : 'AUTO_PUBLISH_OFF',\n", + " 'pubMode': '',\n", + " 'currPubFreq': '',\n", + " 'pubFreq': '',\n", + " 'publish': 'Publish',\n", + " 'summary': publishing_notes\n", + " }\n", + " contents = ipt_session.post(ipt_url + 'manage/publish.do', data = pub_params)\n", + " return contents\n", + "\n", + "\n", + "def check_if_project_exists(projname: str, ipt_url: str, ipt_session):\n", + " \"\"\"\n", + " Test if a project exists on the IPT already\n", + " Author: Jon Pye\n", + " :param projname: the project name as given by get_obis_shortname()\n", + " :param ipt_url: URL of the IPT to check for this publication\n", + " :param ipt_session: authenticated requests session for the IPT\n", + " :return: True if the project already exists on the IPT in question\n", + " \"\"\"\n", + "\n", + " checkUrl = '{ipt_url}ipt/resource?r={projname}'.format(ipt_url=ipt_url, projname=projname)\n", + "\n", + " contents = ipt_session.post(checkUrl)\n", + "\n", + " # if it's not found, the IPT returns a 404\n", + " if contents.status_code == 404:\n", + " print(\"No existing repository by this name: '{}'\".format(projname))\n", + " return False\n", + " elif contents.status_code == 200:\n", + " print(\"Found existing project by name: '{}'\".format(projname))\n", + " return True" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "data/dwc/137494 atn_137494_ribbon-seal_trajectory_20140426-20140426.zip\n", + "data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip\n", + "\n" + ] + } + ], + "source": [ + "from dotenv import dotenv_values\n", + "\n", + "config = dotenv_values(\".env\")\n", + "\n", + "ipt_auth = {\n", + " 'email': config['IPT_ADMIN_EMAIL'],\n", + " 'password': config['IPT_PASSWORD'],\n", + "}\n", + "\n", + "ipt_url = 'https://ipt-obis.gbif.us/'\n", + "\n", + "ipt_session = open_ipt_session(ipt_auth, ipt_url)\n", + "\n", + "filepath = 'data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip'\n", + "\n", + "projname = filepath.split(\"/\")[-1].replace(\".zip\",\"\")\n", + "\n", + "create_dataset = create_new_ipt_project(projname, filepath, ipt_url, ipt_session)\n", + "\n", + "print(create_dataset)" + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip index 2194b6ec8927011bf69494157e74f07560ca50c6..ecd4478e10df2b24a05a7fa88230f179fdddc8f6 100644 GIT binary patch literal 6474 zcmbuDWl&tpx`uI^;5q~!EWzD^1h)ha&Ol&rXYc^Q3GM-cySon%B)G%ilHg%*2*KfI zpIi5y+PmuhId`oe-CwQhdaIuPR#)|-u7Zk2f`o*Gh1BeiZkT&U$uj+?szXLX68|%r zK^?(7d_w#pJYY9xCnywR!Qlomvj;<6&1@m&P$yS!FfTWcFgHJsFvq_p0=$A?h=Y?Q zr@5O)RV>W0SBgN+m+{d|Ii9RhB@@l4Brg~AVy03a7VJ=mZ)cSm@ih*W~rQ*5R~-_;6_#dnXEv47@>=rvh5V<-?LuJA{SAfvaUyVx_lNwa0*C z<5D%WiFc)-8iA;rzgVIQJ0UiJz{b3~ihn2*C%*q4e2>lBdWO7`&Pl^QnhhN?aLAz#Jw5R{9g`ME* z3iJ}Jwd5%icRD`e#Im#&&x}?#7m-t!R_D{_e)hIOEtM+~+n|s|{Q1Ev7MaY;d1K=k zzkAzzJP;nplQykP!4*%JHhiDQC_cLCK z$}XK-vj81i*~^bxeL*kxO!f3#jIsR~zpQO6@!u`%_FH(0%ti*iW1kJOoe&u&(=5tR zO5RaTR5l?=$G}M}lSDDyoG0=jlqU^mOtdxrd55cXbi=vmY36D}Dbi6SKnR6HJI9ABCL*O#xObG%7!+Yr`{a5(cL%|EJ;La%2y>pZ%U_k>0eQ(8s~LI z!Uc5V#6t{bzqHR?TFq@GotmW0=ic^M!$ht)+n0f@`MECQvhG`lnoDfl?OC_0@i^-r zaeC%5L~T2>m{q7_P-V@Zi<0u*{9049m;82a$F1 z-eSH%*n64I6Z!7c^sWdkx7EIzu9j;bQm#uiq8j%SBvxR{*3ma{d2|>j?!pU>g71sw z@^X7USq@{KVv@8nHlM~eHkT{%$t2g?a`qJTOwa0f zW2|5INut-^G5;*i4{Pe@CSZSt9auG_tAbU&R(xtfvPn2iL7gxiDJ~xXI60IxU~666 z|7a^uoW~^gOqzU)p!}x8#b?=+(~IFkGxFw&zHezt2@lEy!+e*87wy>pY8@!eYy?_a z88bNXd1K*Zt68sp>z+e?#o=OX@A z<;O$t0D3R3cBZt{9qOKrG5nC+p&Od_6@C$8P3%k&v$UXEkEpO#5654_2gU58q+sn= zHL^FZ$+VHuuglYiSVr^{hx<2kUsz!(isXEPGIp?|FZCo(Z-4bYUEGC{l zH)KvSg0XKK$aD-ksCL5hrJSSQYpABlC93$RrGYW~bN=4TuqNCadVC}#?N>-hn16a1 z;$Y9|+my-VU z!{r0g4;B0o<%!RQeB-PA%rsH`$M3Hi0N>tc`$jztvrJxsZdULIFNE>(4QIcF_t^J5 zlwpZex{2}13MY-Hv}*{J4=OM|6j+HhXGgd7FhJ+52L;W^d=lCOZneHOY>e*A=n29@ ze3}gSp4Pw8F1hVa<6IS_-3qe3jk|Uz^f?K|?FtDHo@At^kRPz`Eh*O})(W;TWWwrC zhK*GMapg|6wnz?eYT-^P&?gVgT zsrX8Wco2`2;lI9*#mcqbHkniz>rUD&kY0|;J)Eb>R!QVO{#|B3NoK!t2ytX<8 z{w`WI>7zd~b%MM*4c>C?){P2!O3Zv98fFpk&g_$qQ0ZIB%q9}zp6z82{F%e?H zIOBjlYP)s9MhR&XLrMgLA!4#8PszgU&iy#aZEBk$AW!z~$LMH1X{F<@n&LI^Y9;o> znkeOmbN2N8Ku@KUAkoi)Vl@pf8fp-82jzZ#ZVq5${o>`g<#cLZoPEI*e~x3Z`%p0e zLP9-GfUn4q@3Hs8+`JVZ!q9R({#kv#Tq)+Fq|1}g1UsL@bmO@3HxBEd+j}7<_PN#b zHcanW8NIKom#9&n89p?RRV8Fd(J^ETxED6w!3XQGIozsL;)-KY3!-qu+|r_|LMjw8 zcUo^OqMyxNmFqHsVFu*tR#r+XywMDoCPbFS+dwIyC@ZgkKdP zt6kVHX4Fl->t0Aa0%`fOeLl>RnmoKCw5J0KGDlVj@gK++`OlT=PSiXHk5@{*|MlVP z=~GY9QUF(ej$Ih8m(3Nf9JsWgdT<@+jx{6k>K)Ni&wzv!` zQ}ZdI&sIdlCwmqZn#oUn4lg*QxP#0~Cg@$odJnye4>J)UTsLk{EPGCLR!pg6UeEJ+ zyq%c9k>^sR@rxd8W$unIw>%F@sd_ph&AQqmyRe222YJD|*ARj|f%uDYrl%YAJ>2ez zg}FB(7|U@%U2TpMw17@z%G;5*D#y+@BRw0jTaIKF5(*+}5})%(UbBa3-YP!$$se~m zTb!Y?nx{xn8DEU3KdV)La#WAC5Ud;9`atUPe8aFzd{?6b&`+g4P$pnYUZ_&gdM-rP zzYWS6{|vp{-N~4sH7Z>~G21x?>j&~^L_SidR@dr@`ZY)t?6T+XWurEdAnNT+GAGoA zUHGod_7;S6QqD z?J2>F{U{~EsVL3_aBa*&w8;Z8Q{b~V6oEt~0NvMHs$Txeq!z$w0l&mmoJ^a>7?~iy z5n$R;Vijb91e1$fQ`7~R$K!47>D#g$U*0*x$~$f}&8sF{Ukqp!3Ml?nJ@-hbIHOqq z<+;6y6UH+%Q4Knka{tdZ;mblZJOWtryRKFKAh3|30#nDNJ-V4N$eW(wB5fPC4bS3z%CmejbMDMv4SC!)%oChi9zv6UW zcpgn7=|SrKrg#CPe}W6Y%D+Zj`rv0>)HLYA<@6f*o$?9;zwnCt7|+n*21Ye~;z!Xu z5WK;KCdut8?A05G3Z!U+RfWr7ww%;`cOicU?PgA;B5j_st7&10W;qO8kPHH`XOC3+ zeW#4^IblN8R4nt5-<@3BX!R|zxPTY{A9yJ}@08(HW+!=u)@=0G!c_OG2hbEMiD%v2 zGGFhw!$i!GhYItnxz{~;P@+q!C{}=tXDvbcZ+58ha=+93x?3}YVJa_Pu;6{quht{d zYyN`rK}wc`B_l;CM#Tf?Bv8Kn7qAvxFj+s>CUy6Yh_aWk)s?oycd%!b+D%i3A&sf2c*sBqs#Z} zf$k37n_IpOS3QSyD)(wl%ze}*jjQT zZR(m7R=39I?L<6_w`U4Hv9WwZR1pO6>#XZ`k0Kn#8M-=mi1U0O<8(Mz{KyJ!i7Q_f zSZA?KJWnXb_A=iE!d!}KIE;g^oWQJ4MfqOdpDL$@?l=pLAHMr(I&t({e!;*hT+U+% zRgOg=dx+XIcIbs_h`g{vpxeaGU4%3u^pPpC5?00Y2Kz1sq0{7;&IF2-rQo1B57c^Ik-+_y<9)Uuff4AwbZlv`SrS?-0;d=g7d z{xoim@h&ba(*>LwicHfAz`YM#joitKQ-p24^>`6*4rq zyKF1Rb$LIghq8}v*IeAQqv=r*Lz5Kb;7QLHi|y8*IHk@h@ntw{&c~m@{6}UN-TPXb z%J+aId|u05I#eJJK$kutT0)~fNI`eV-29moGfSUy#^MWv(txERDuu7yvEQfgGC}SMiMr5*QTtdQu~-a1~6otz`&j4 zT^A1PA1hOcn4k^bbkmc7AmSViouFkGn|4^(Zzua%=Q)$E>r~?|`K)5t(5R#K5k8$- zsy-XdWjuVSC10uP8`>|;I1n2h9-YG^o6o>+w{j!5^G!d_%=g3EEz$4ED!rww$kAAr zIbO-#I%|cjk+6M*7q@@g9`<_(JEI3|W85t!F~$=an@D&mF{-)3b0-0IueQuCIKjzjqZZ`Q%e z+1Gw8Nubl3KBYfI5vxIWW}ylpaf{qz^&}DtEw64B(l(WY16CVtQ~3J zN;uG&uJYLhmgz!5YLxX{YNb3J1(Jr}LNgq%oL1e9BvRV!5XbUy!Do-W?1Fe-R<({o z*ObEL8y9X@>yLIP>Uz$rwzKp{pZcg7VjM;@4O-Dfnab75Gua(I*HwZomo~KRiznWM zQ}ZN1mKvSHuMOflIn39~L`GLF`2`%ae3-hKzT_sgoD4}fkWU*#zl7davYyw&T4jQA znm7HB)uZZub*ZgICx=wt&&$dkyU$;&#GNd@AW^xp#V>2>UXFZfrmN8Vm2@wfeq80J z9IAQ^UDMelh<;C1)4Ma>Y67bQuL&Za)JGW~`t{xLu)?p~+pV|=tb3y%j*T^U>y5U_ zKW|iT;yf9BSKZ`)8RmL2dMmriCx)|}MEGww%frnhJY`MFauT+GuhFq2UTJN8z492L zds3}D0b_W>!d)?@`&Hw;H~9M|Qc5(Ue$fohWc%V596PIuR=Mcv#5Kov2y764K4|>V zR6YG-_}U8h7Oy53`-$?r?b#2b!k zQmcjbc|em5<^AA0n}wF9FKtH%hdQU0P8y2=L`Ka$T2C4O5ADPfQKk1yqvjUXa?7sg z_(T9ld4m%+6&vz_}OFl2m$NUPR zd=g^-pG6${zCXiU?ttuCa|HbA^j1g#NsOvKzHqsa{QE6hY`5(-{ErbD!~082A|W|I zpk{wvqsKoRtF3U8gq>WmF?@ICqwKXx*W?s5l?mo?hrrUcfp?6TrwS0UspEx7Y&)&I zRw^mQRgrfW*Hn8QdmZCt5Mmd=u&UA#hQ;Q?FPRL3g^T;@L!e>teQXhpr3BL_6g81c zsFc*OiB~99r%GZb5P)rM**dlJ(J1Dv&>iCoG{s|i)08PV>XR^S{1sz@bYJk=cb~HZ z;_*V4@nei7McFdcTYx&=?+$+_Dc(dqH=ztQvp2Qx+J0@5H9Bnq2+5>_VBl~T8;Z-` zpCH7g@QTQy_}GA>?FTHYS>zORr+r$}^~D=6U$z6MBg=6v*J&Q>5x0o2!veZ7?d6plmOfA#D#?I`0ItuA zuZCN=eCOFIB~3pvbmEz;$zPt151%B~jVu$8c7$P!CqA|k9E{rbr#0Dr$fj8-c&@>m z#hS@!2*+3R+sPNsl&&cwKCY*b9!gWt7fuOdDG$}MbNx2#)^r7RbFSa+4#_`%^}!N+ zCX8D$i9Y_*RUEHmmMCbd)0BQvSx(BkB2p^R=Kx z&Z~9gD>l31rclmCeIy76cWWkF^S7vpQTpaE-VZsC z`=0B7be1@JXJfS{q5Gtfmz(?v)g6%jPOh2wmQuRLPa9k=TWqy#9QVCQHAD1jPfwxZ zx0vcG$S5R8|F?qw)BgW@ngjnD{$E1=pHcrb*#8}bgw!0!{>N$mXHoy-v;Ud(Ps#i5 zEcZV@`hS%5cjf!fz<-*!e+Rxs|6ecn&qe<{c>cX8{Lc>k&oQK~f{yXm7xX`G!yi(C I&-jhuPL8gw=4L!_b5lEGR~J(obC|26%Nt_>K7LU?L4Hx5e@%o0gpJMZ z9W8iaaQFIHevMu}!jLPKI|7l01cOBusr1y4fO5VneYPKIaxn*k9w--Uuq9k+s0{S& z+arX8&rmbJWn^qtHi?hs`@Deo0oB|l5u{=o*1*VdZ)ben&_v?=!jQ{UVILXGU+^n^ zn&?&Q+O=I9*rlS;?5t1uMeD4A{Tn65Egs@a8_tPZ;}^5Nrk_ardEfW2xv6mpp__%e zqFMtT*rY-uMrDVkxLJ5d{86()C5<{FDs8Kti`cq3+|#TgEszqQ6_zL+Zbfdt)0Y|Q zqv0sTEoyiThkW~rqxm;rHM&E~&A&jQ{Q@TWkAbfs}lzY2U<$5I6+ ze0imw+JF*)6U?p-|-JZWN|(IBQ4+P}RV zLx&DbA2gB)s^zIo{Uaf7To zY*+kr@{?o*?nDDYqOBC0^qBjEEZu-IjJa%O(m7A??ZqKPxia>D&3Z$o`Z{ij#aa<8 zbGw|;3Pt-JAvtO-);9T_C1l1S8a;csr3aL-d7PuX>57155}k^W;={~#txGaWZ33T) zL=Ykf)NP&kytJaK|9}vs4(vmfUbCi+%oh-r%vi>W-bK^lEPYzH3xW9--e=+sDE2p3 zX-!pFNj_0&fd*%(D)Sezfwcw$!7{#ON(#EUaQ^0U)KbjnaSTHE#<#kQBkBJ44qVvL z@Sa`Y6N3c$Q&qlx6BUe!@O2W&ClwQB@1CMW#Z23LVedq+@3tqY@g>dJkGpBf->Bx6#Tn>@P#lJnjLkwX}(Ql{fRx!HpMgE#!csZnh+Ovw&+EY z@tzp9{)9o@P-2M9_XnHorN>~IVL~&r;g?gVc;m=GrBaMLZbai z`;%wFXYEwiEE*l;N`=)VhYeH!(W3 zjXfwWa>tKslxrZ&V>j<7W(xZAOq@osnfNzpYxgb2?AEJpm{)to8Qf@hGcF9(n$TUv zqw)B^0lyU1F|vLZa7o#V>~y{oiV2#ym>#M9erx$SQq-b?;qis!0MT8{v+D4xPw)~xp?DNb^Ouj%%0)ZQUH1yh2U18+>v*1O!TRav6a0WfU> zSHejOc1!6|%MAH3a(+S|(z^yo!v;LKDUhphM*4DRKBlD}G?7BYOIdH@%^xSxF!ob_ zS~*_b#kCQ@#6TOfjq_Hutq+PF88*teL9D_|e<@D;6g7L)(z%Y6KQl3(FBa$#vHg(J z#C_gJ$#>@8hogX~3CDs9SO8hK)`~M9UvNE&+S*&OGR$D+^2wn&$<)5;F}1`KhK-x& zyF=g=6_pty;AO3!?Bf~XFXJ7wOBS{RM(CPb3lRRdWvP3sS!ar5#nqDO(_Iax0qBFt zBT8tZFV5C+EE|$ytyXj&yHE*Aqut8`!FY|Rhe6_OL>VYsZ@a!Gh11&EVrem9hiols zVim3yp-^WHHVA(d6m&DH5_`2iYEE1AsQhSMX<*C?ZkO ztbM8YRwaPHqe1#7co}}&{22e0No=&NPPTnXHFa={Bta88S{#Zz&iN#A+6oVIJCNZ} zeVZ$wGUcuPMvXF`t&q!k*Rb{@W91nca|g6 zW=ob+blT3? zs0HVxy((?h*;uw_59-)oF)}tY6jfQ3}*6dv~qp)xh8tOj%N{XRIXez(azf zNMZA|&NRa)^L`3z6D@e^GkobLWOM4K+O>8vI6WTf+4;#~zu)}e>#%6h?FN+_ENq0M z&wjL>a)9io-b3gS^dY!IK9MY&k|NS zG)2Bnb9i^DXE7_%@x^>&)L|Ykma|5E7r&iQ7pOun(!9X%13g?0WLqqw#(UOmO*Kk-lXe?GKSVzi>7IkH9pc%|0(7g8*46PD82v0CA(d6^FI7)FKbw(ylztG@ z9D3I^r&-VhD+}T$RmnP%<7aD$NqYjv zu%j2Uf077n=H|YZ`{z_N)9kGtpbQbu@a#UaxCU29#d+Mj=lQrype3nXUo;`0+r4 zSRC&2rSwhU2Jns4_p2OiVGZ-S4*Qsab`K>0h+}qq;dX&Wt;I3Pu0x$`Q)5%Pu~Kf8 z@&a?UM<1i7b?O*aISp~~e1VRNd3R`nx{XfduZjz4==hF`PM8&oYG=6++BvK(qUSbh;g5r9ww;O{ zmHVg*^+~a-#G|fVALo}n4ieA$gxQ^Jy)YOZ<_$O{%6yK;Et-6tPyydov}wV8a&n7SFfK9SFrO zQII=o?w52hdI{aqM7!QtH&)sZ~7>Bn%>1O|ms z84(Ed{M`_~q>-!|Mm>vNZjVzui73d+#m6!)KsUZ+1j4J%{=l-0<~r?V*BfhfoKyM` z%&s}#e~bvBD`^aF(qzZS8M!bkIVl0WN2ZaFEC^1px+A~KXOMP-WMoD|ikSBnqCes$ zkeTxoTj9>G@5mAeG6#w$PEE^R#!I2=XqFzwQ^zJ4I~tYK@EfsCzncb(J(RxPpL+34E7}+&&czR*Fq{f z$se9`D3nI>RT(28JU(0Bak><_tp(U81ZW>@dk_z{I6r ztS~sBREewkCrP@TJEYLj+Dib#kAY$iLGw zs&8Yyw&p^R1L`TbD&aFia`J=2mFzlO2xf^+o9lo~nQFI6Po;8rWdfFt^z+f}I zL*#&x<*nq)`%Tgz1c4~Sty`cTb90O&!_evlSKbq4jqnx?ANgb5!(e7|Pu6ELOL1za zem`nbm3`I9j*MB~OyLMBF62v8jC0ITiGNgf6(K$rcS&QJ=)Y@{f9pXkxQj4Zp;1#R z651=hoKoj>)VP`1Y~eL_EIrq#zvs6p*L)8t=b%zxp0P$WpxWQn#QT0a9&ir8C~W{@ zPQT=^ox!8dtspnpbg#q`SWI1b9VvXOF2p(VR#1a8=%URnY>e-xo-}INq5FO#HmlDv zr}zgUo7bVQew;@(AL#BhkcqU^Qfa4WF4f`Rci1nfH4H~A+pm%B3?E#`Ta+E%lxh%) zCTTly`atA9CP7jM1`TnRTuz1Gc8}#;NY*AjFWb^neGMQD`f43nWDC5fpbq3*#IhbL z0K2Y6>|(}IQ?s;?r|f+jb9*Y0yPd7L<>x7P*^c)>V~=P!b>;DMcKwmSsc~b+bu<5N z+Yj*f{~xJyq-@tO0U?C{TWkRU_U5jpzdwLuAJ+bD5w7&~eK*VngR{+5-Yodz0sH$* zG!i*s##(U;6?RxlcNeV%bus#exTKF>(ou8WTpzluwc7S`(+zpi6GLo7a+r<=vJ?7R zvd9VKCl(lq2*gkLPJk>RapKWh6b#7aG3nd$4K#-9k)~=XDL7LBFXs97t!u4@GH))) zA!S)Y+8e^`BDC9g30gLuH9rg{vL&b51S=L-bExFVD5uu^fmJ&fUTA4r(6QbNS6nXK zhG7=As~m|XrQ>0jSApr}Cl!JjZ>-OW&fcaRQX^?U%8CfnjxD-&4d*r@37i~}u1)Pp zmyPbz_ZGDa%LqCdyhCS?Y!;kJh(*6}Q#4J5kznxl{Z+&lR1eFmvV1nlTV5!ICMo zQw(D4^7>VjZnuHbGWYJp_g3(7rS{e7jKbFfV$z~hmi;0{{w8`}^`pj7Wsg*26pK*o zny=__9;)CX-D`@XOLvy<+kFvt570TasKmF565snjbKF@gf47hy&ICuNjIun8>nv3D z>UHU|Ai)L(0OAkVG%P$_Q6oRa%z(tP-jpBCv(%zHptroZk>Fdc?fQbK;~ns34WgSl zIvnh_ov~5Fd!`pJt8L#C!Wwg6r*E2ua1Ijvo;u^ZWRr^GnE}|ZzTmQ|Dtqsj9w@13 zF_bqu_Hl6_;xbcE%G#mOHlu|6th=E>&A$n-&4~lLfLm)k_DeU_OZ{0`>(DY+_M?ER zLgYA<&{ - https://ipt-obis.gbif.us/resource.do?r=atn_137491_spotted-seal_trajectory_20180418-20180526 + https://ipt-obis.gbif.us/resource?r=atn_137491_spotted-seal_trajectory_20180418-20180526 https://doi.org/10.25921/wp4e-ph20 Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77 @@ -27,14 +27,58 @@ mmckinzie@mbari.org https://atn.ioos.us/ + + + Stacie + Koslovsky + + NOAA Alaska Fisheries Science Center + stacie.koslovsky@noaa.gov + https://orcid.org/0000-0002-9476-5383 + + - + - US - (ATN) + Michael + Cameron - US Integrated Ocean Observing System Office - Data Manager + NOAA Alaska Fisheries Science Center + michael.cameron@noaa.gov + + + + + + + Peter + Boveng + + NOAA Alaska Fisheries Science Center + peter.boveng@noaa.gov + https://orcid.org/0000-0003-2732-4833 + + + + + + Heather + Ziel + + NOAA Alaska Fisheries Science Center + heather.ziel@noaa.gov + https://orcid.org/0000-0001-7068-4418 + + + + + + + US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + Animal Telemetry Network
USA
@@ -87,11 +131,30 @@ author + + + Mathew + Biddle + + United States Marine Biodiversity Observation Network (US MBON) + Physical Scientist +
+ 1315 East-West Highway + Silver Spring + MD + 20910 + US +
+ mathew.biddle@noaa.gov + https://ioos.noaa.gov/ + 0000-0003-4897-1669 + distributor +
+ 2025-05-27 eng - Wildlife Computers SPOT tag (ptt id 137491) deployed on a spotted seal (Phoca largha) by Josh London in the Bering Sea from 2018-04-18 to 2018-05-26 - Abstract:A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + This is the OBIS extraction of Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77 from the IOOS Animal Telemetry Network. This extraction is a subset of detections intended to be useful for the OBIS network. The source dataset, containing the full set of detections, is available at NCEI: https://doi.org/10.25921/wp4e-ph20 + - + - US - (ATN) + Michael + Cameron - US Integrated Ocean Observing System Office - Data Manager + NOAA Alaska Fisheries Science Center + michael.cameron@noaa.gov + + + + + + + Peter + Boveng + + NOAA Alaska Fisheries Science Center + peter.boveng@noaa.gov + https://orcid.org/0000-0003-2732-4833 + + + + + + Heather + Ziel + + NOAA Alaska Fisheries Science Center + heather.ziel@noaa.gov + https://orcid.org/0000-0001-7068-4418 + + + + + + + US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + Animal Telemetry Network
USA
@@ -87,11 +131,30 @@ author + + + Mathew + Biddle + + United States Marine Biodiversity Observation Network (US MBON) + Physical Scientist +
+ 1315 East-West Highway + Silver Spring + MD + 20910 + US +
+ mathew.biddle@noaa.gov + https://ioos.noaa.gov/ + 0000-0003-4897-1669 + distributor +
+ 2025-05-27 eng - Wildlife Computers SPOT tag (ptt id 137494) deployed on a ribbon seal (Histriophoca fasciata) by Josh London in the Bering Sea from 2014-04-26 to 2014-04-26 - Abstract:A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 + This is the OBIS extraction of Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135 from the IOOS Animal Telemetry Network. This extraction is a subset of detections intended to be useful for the OBIS network. The source dataset, containing the full set of detections, is available at NCEI: https://doi.org/10.25921/wp4e-ph20 + - + - US - (ATN) + Michael + Cameron - US Integrated Ocean Observing System Office - Data Manager + NOAA Alaska Fisheries Science Center + michael.cameron@noaa.gov + + + + + + + John + Jansen + + NOAA Alaska Fisheries Science Center + john.jansen@noaa.gov + + + + + + + Alex + Whiting + + Native Village of Kotzebue + https://orcid.org/0000-0003-0664-490X + + + + + + + US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN) + Animal Telemetry Network
USA
@@ -82,16 +125,34 @@ Whiting Native Village of Kotzebue - https://orcid.org/0000-0003-0664-490X author + + + Mathew + Biddle + + United States Marine Biodiversity Observation Network (US MBON) + Physical Scientist +
+ 1315 East-West Highway + Silver Spring + MD + 20910 + US +
+ mathew.biddle@noaa.gov + https://ioos.noaa.gov/ + 0000-0003-4897-1669 + distributor +
+ 2024-08-28 eng - Wildlife Computers SPLASH10 tag (ptt id 38553) deployed on a bearded seal (Erignathus barbatus) by Peter Boveng in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14 - Abstract:A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012 + This is the OBIS extraction of Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f from the IOOS Animal Telemetry Network. This extraction is a subset of detections intended to be useful for the OBIS network. The source dataset, containing the full set of detections, is available at NCEI: https://doi.org/10.25921/wp4e-ph20 + +{% endfor %} + + + + {{ publisher_name }} + Animal Telemetry Network
{{ publisher_country }}
@@ -50,17 +63,36 @@ {{ party.contributor_name.split(" ")[0] }} {{ party.contributor_name.split(" ")[-1] }} - {{ party.contributor_institution }} - {{ party.contributor_email }} + {{ party.contributor_institution }}{% if party.contributor_email %} + {{ party.contributor_email }}{% endif %} {{ party.contributor_url }} {{ party.contributor_role }} {% endfor %} + + + Mathew + Biddle + + United States Marine Biodiversity Observation Network (US MBON) + Physical Scientist +
+ 1315 East-West Highway + Silver Spring + MD + 20910 + US +
+ mathew.biddle@noaa.gov + https://ioos.noaa.gov/ + 0000-0003-4897-1669 + distributor +
+ {{ date_created.split("T")[0] }} eng - {{ summary }} - Abstract:{{ project }} + This is the OBIS extraction of {{ title }} from the IOOS Animal Telemetry Network. This extraction is a subset of detections intended to be useful for the OBIS network. The source dataset, containing the full set of detections, is available at NCEI: https://doi.org/10.25921/wp4e-ph20 \u001b[39m\u001b[32m4\u001b[39m \u001b[38;5;28;01mdel\u001b[39;00m \u001b[43mnamespaces\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m]\u001b[49m\n", + "\u001b[31mKeyError\u001b[39m: None" + ] + } + ], "source": [ - "from owslib.iso import namespaces\n", - "\n", "# Append gmi namespace to namespaces dictionary.\n", "namespaces.update({\"gmi\": \"http://www.isotc211.org/2005/gmi\"})\n", "namespaces.update({\"gml\": \"http://www.opengis.net/gml/3.2\"})\n", @@ -64,14 +76,10 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 16, "metadata": {}, "outputs": [], "source": [ - "import stamina\n", - "import os\n", - "import requests\n", - "\n", "@stamina.retry(on=urllib.error.HTTPError, attempts=3)\n", "def openurl(url):\n", " \"\"\"Thin wrapper around urlopen adding stamina.\"\"\"\n", @@ -87,7 +95,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 17, "metadata": {}, "outputs": [ { @@ -316,14 +324,12 @@ "[289 rows x 9 columns]" ] }, - "execution_count": 5, + "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "import re\n", - "\n", "url = 'https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.nodc:IOOS-ATN-STP;view=xml;responseType=text/xml'\n", "iso = openurl(url)\n", "iso_tree = ET.parse(iso)\n", @@ -358,16 +364,22 @@ " 'start_date': [root.find('.//gml:TimePeriod/gml:beginPosition',namespaces).text],\n", " 'end_date': [root.find('.//gml:TimePeriod/gml:endPosition',namespaces).text],\n", " })\n", + " \n", " for CI_OnlineResource in root.iterfind('.//gmd:onlineResource/gmd:CI_OnlineResource',namespaces):\n", + "\n", " if CI_OnlineResource.find('.//gmd:CI_OnLineFunctionCode',namespaces).text == 'download':\n", + "\n", " data_url = CI_OnlineResource.find('.//gmd:URL',namespaces).text+\"/data/0-data/\"\n", "\n", " title['download_url'] = data_url\n", "\n", " for CI_OnlineResource in root.iterfind('.//gmd:onLine/gmd:CI_OnlineResource',namespaces):\n", + "\n", " if CI_OnlineResource.find('.//gmd:protocol/gco:CharacterString',namespaces).text == 'FTP':\n", + "\n", " string = CI_OnlineResource.find('.//gmd:linkage/gmd:URL',namespaces).text\n", " arc = re.search(\"(arc[0-9]{1,4})\",string)\n", + "\n", " if arc:\n", " title['arc'] = [arc.group()]\n", " xml_manifest = f'https://www.ncei.noaa.gov/data/oceans/archive/{arc.group()}/{acc}/{acc}.1.1.xml'\n", @@ -377,9 +389,11 @@ " iso_mani = openurl(xml_manifest)\n", " iso_mani_tree = ET.parse(iso_mani)\n", " root_mani = iso_mani_tree.getroot()\n", + "\n", " for path in root_mani.iterfind('.//path'):\n", " fpath = path.text\n", " fname = re.search(\"(data/0-data/atn_.*)\",fpath)\n", + " \n", " if fname:\n", " title['file_name'] = fname.group().split(\"/\")[-1]\n", "\n", @@ -403,7 +417,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 8, "metadata": { "id": "puONkrPNceM5" }, @@ -842,7 +856,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "metadata": { "id": "c9G3a6N2bMh2" }, @@ -850,9 +864,11 @@ "source": [ "def create_dwc_occurrence(ds, output_csv):\n", "\n", + " filename = ds.encoding.get('source').split(\"\\\\\")[-1].split(\".\")[0] # \"ioos_atn_{ds.ptt_id}_{start_date}_{end_date}\"\"\n", + "\n", " dwc_df = pd.DataFrame()\n", " dwc_df['occurrenceID'] = \"ioos_atn_\"+ds.ptt_id+\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')+\"_\"+ds['z'].astype(str)+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", - " dwc_df['eventID'] = \"ioos_atn_\"+ds.ptt_id\n", + " dwc_df['eventID'] = filename #\"ioos_atn_\"+ds.ptt_id\n", " #dwc_df['eventID'] = ds.ptt_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\") +\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')\n", " dwc_df['organismID'] = ds.platform_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", " dwc_df['occurrenceStatus'] = 'present'\n", @@ -941,28 +957,17 @@ "\n", "def create_dwc_event(dwc_df, output_csv):\n", "\n", - " # --- Processing for Event ---\n", - " # event_df = dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation',\n", - " # ['eventID','eventDate','decimalLatitude','decimalLongitude','geodeticDatum',\n", - " # 'minimumDepthInMeters','maximumDepthInMeters']]\n", - " #event_df['parentEventID'] = dwc_df['occurrenceID'].str.split('_',expand=True).iloc[:,:3].apply(lambda x: '_'.join(x), axis=1).unique()\n", - " \n", " # create parent event that is a summary of dwc_df\n", " event_df = pd.DataFrame()\n", " event_df['eventID'] = dwc_df['eventID'].unique()\n", - "\n", - " #event_df['eventID'] = dwc_df['occurrenceID'].str.split('_',expand=True).iloc[:,:3].apply(lambda x: '_'.join(x), axis=1).unique()\n", " event_df['eventDate'] = dwc_df['eventDate'].min() + '/' + dwc_df['eventDate'].max()\n", " event_df['footprintWKT'] = LineString(list(zip(dwc_df['decimalLongitude'], dwc_df['decimalLatitude'])))\n", " event_df['footprintWKT'] = event_df['footprintWKT'][0].wkt\n", " event_df['footprintWKT'] = event_df['footprintWKT'].str.replace('LINESTRING', 'MULTIPOINT')\n", " event_df['minimumDepthInMeters'] = dwc_df['minimumDepthInMeters'].min()\n", " event_df['maximumDepthInMeters'] = dwc_df['maximumDepthInMeters'].max()\n", - " #event_df['basisOfRecord'] = 'Event' # barking about this\n", " event_df['eventType'] = 'deployment'\n", "\n", - " #event_df = pd.concat([event_parent_df, event_df])\n", - "\n", " if event_df.empty:\n", " print(\"No HumanObservations found in the dataset.\")\n", " return pd.DataFrame() # Return an empty DataFrame if no observations are found\n", @@ -973,14 +978,13 @@ " \n", " # # initialize Nominatim API - not trusted enough yet\n", " # # see https://nominatim.org/release-docs/develop/api/Reverse/\n", + " # from geopy.geocoders import Nominatim\n", " # geolocator = Nominatim(user_agent=\"my_geopy_app\")\n", - "\n", " # lat = event_df['decimalLatitude'][0].astype(str)\n", " # lon = event_df['decimalLongitude'][0].astype(str)\n", - "\n", " # location = geolocator.reverse(lat+\",\"+lon)\n", - "\n", " # event_df['countryCode'] = location.raw['address'].get('country_code').upper()\n", + "\n", " event_df.to_csv(output_csv.replace(\"occurrence\",\"event\"), index=False)\n", " print(f\" Created {len(event_df)} events.\")\n", " print(f\" Saved data to {output_csv.replace('occurrence','event')}\")\n", @@ -1015,7 +1019,7 @@ " right_index=True)\n", "\n", " emof_df.dropna(axis=0, subset=['measurementValue'], inplace=True)\n", - " # barking about eventID in emof.\n", + "\n", " if emof_df.empty:\n", " print(f' no emof data found')\n", " return pd.DataFrame() # Return an empty DataFrame if no observations are found\n", @@ -1028,7 +1032,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ @@ -1036,8 +1040,6 @@ "\n", "# borrowed from https://gitlab.oceantrack.org/otn-partner-nodes/ipython-utilities/-/blob/main/dbtools/publish_to_obis.py?ref_type=heads\n", "\n", - "\n", - "\n", "def save_eml_file(eml_metadata:dict) -> str:\n", " \"\"\"\n", " Save EML dictionary in a file\n", @@ -1050,7 +1052,7 @@ " template_file = codecs.open('templates/eml.xml.j2', 'r', 'UTF-8').read()\n", " template = Template(template_file)\n", " result_string = template.render(eml_metadata)\n", - " eml_file = 'data/dwc/{ptt_id}/eml.xml'.format(**eml_metadata)\n", + " eml_file = 'data/dwc/{filename}/eml.xml'.format(**eml_metadata)\n", " fh = codecs.open(eml_file, 'wb+', 'UTF-8')\n", " fh.write(result_string)\n", " fh.close()\n", @@ -1081,6 +1083,7 @@ " 'contributors': contributors_list,\n", " 'ncei_accession_number': df_map.loc[df_map['file_name'] == ds.encoding.get('source').split(\"\\\\\")[-1], 'accession'].values[0],\n", " 'ncei_title': df_map.loc[df_map['file_name'] == ds.encoding.get('source').split(\"\\\\\")[-1], 'title'].values[0],\n", + " 'filename': ds.encoding.get('source').split(\"\\\\\")[-1].split(\".\")[0],\n", " }\n", "\n", " eml_metadata.update(other_meta)\n", @@ -1092,7 +1095,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 20, "metadata": {}, "outputs": [], "source": [ @@ -1147,12 +1150,10 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 21, "metadata": {}, "outputs": [], "source": [ - "import zipfile\n", - "\n", "def package_dwc_zip(output_dir=\"data/dwc\", zip_filename=\"data/dwc_package.zip\"):\n", " \"\"\"\n", " Packages all CSV and XML files in the specified output directory into a zip file.\n", @@ -1161,7 +1162,7 @@ " output_dir (str): The directory containing the files to package.\n", " zip_filename (str): The path for the output zip file.\n", " \"\"\"\n", - " print(f\"Packaging Darwin Core files from '{output_dir}' into '{zip_filename}'...\")\n", + " print(f\" Packaging Darwin Core files from '{output_dir}' into '{zip_filename}'...\")\n", " with zipfile.ZipFile(zip_filename, 'w', zipfile.ZIP_DEFLATED) as zipf:\n", " for root, _, files in os.walk(output_dir):\n", " for file in files:\n", @@ -1174,7 +1175,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 22, "metadata": { "id": "aD62GgzSS0zu" }, @@ -1201,12 +1202,13 @@ " for nc_file in file_paths:\n", "\n", " base_filename = os.path.basename(nc_file)\n", + " sub_dir = base_filename.split('.')[0]\n", "\n", - " if not os.path.exists(f\"{output_dir}/{base_filename.split('_')[1]}\"):\n", - " os.makedirs(f\"{output_dir}/{base_filename.split('_')[1]}\")\n", - " print(f\"Created output directory: {output_dir}/{base_filename.split('_')[1]}\")\n", + " if not os.path.exists(f\"{output_dir}/{sub_dir}\"):\n", + " os.makedirs(f\"{output_dir}/{sub_dir}\")\n", + " print(f\"Created output directory: {output_dir}/{sub_dir}\")\n", "\n", - " output_csv = os.path.join(output_dir, f\"{base_filename.split('_')[1]}/{os.path.splitext(base_filename)[0]}_occurrence.csv\")\n", + " output_csv = os.path.join(output_dir, f\"{sub_dir}/{os.path.splitext(base_filename)[0]}_occurrence.csv\")\n", " output_csv = os.path.normpath(output_csv)\n", " #output_dir = os.path.join(*output_csv.split(\"\\\\\")[:-1])\n", " print(f\"Processing {base_filename}...\")\n", @@ -1241,8 +1243,8 @@ " create_meta_xml(dwc_df, emof_df, event_df, output_csv, cols)\n", "\n", " # --- Package into DwC-A ---\n", - " output_dir_zip = f\"data/dwc/{base_filename.split('_')[1]}/\"\n", - " zip_filename=f\"data/dwc/{base_filename.split('_')[1]}/{base_filename.replace('.nc','.zip')}\"\n", + " output_dir_zip = f\"data/dwc/{sub_dir}/\"\n", + " zip_filename=f\"data/dwc/{sub_dir}/{base_filename.replace('.nc','.zip')}\"\n", " package_dwc_zip(output_dir=output_dir_zip, zip_filename=zip_filename)\n", "\n", " processed_count += 1\n", @@ -1265,7 +1267,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 23, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -1285,42 +1287,42 @@ "Found 107 records.\n", " Extracted 12 occurrences with valid locations.\n", " Extracted 5 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137491\\atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137491\\eml.xml'.\n", + " Saved data to 'data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data\\dwc\\137491\\atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv\n", + " Saved data to data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv\n", " Created 2 emofs.\n", - " Saved data to data\\dwc\\137491\\atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137491\\meta.xml'.\n", - "Packaging Darwin Core files from 'data/dwc/137491/' into 'data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip'...\n", - " ✅ Packaged files into 'data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip'\n", + " Saved data to data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\meta.xml'.\n", + " Packaging Darwin Core files from 'data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/' into 'data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip'...\n", + " ✅ Packaged files into 'data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip'\n", "Processing atn_137494_ribbon-seal_trajectory_20140426-20140426.nc...\n", "Found 23 records.\n", " Extracted 11 occurrences with valid locations.\n", " Extracted 4 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\137494\\atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137494\\eml.xml'.\n", + " Saved data to 'data\\dwc\\atn_137494_ribbon-seal_trajectory_20140426-20140426\\atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_137494_ribbon-seal_trajectory_20140426-20140426\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data\\dwc\\137494\\atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv\n", + " Saved data to data\\dwc\\atn_137494_ribbon-seal_trajectory_20140426-20140426\\atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv\n", " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\137494\\meta.xml'.\n", - "Packaging Darwin Core files from 'data/dwc/137494/' into 'data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip'...\n", - " ✅ Packaged files into 'data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip'\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_137494_ribbon-seal_trajectory_20140426-20140426\\meta.xml'.\n", + " Packaging Darwin Core files from 'data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/' into 'data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip'...\n", + " ✅ Packaged files into 'data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip'\n", "Processing atn_38553_bearded-seal_trajectory_20110618-20120314.nc...\n", "Found 10197 records.\n", " Extracted 1871 occurrences with valid locations.\n", " Extracted 1218 occurrences to first row in hour.\n", - " Saved data to 'data\\dwc\\38553\\atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv'\n", - " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38553\\eml.xml'.\n", + " Saved data to 'data\\dwc\\atn_38553_bearded-seal_trajectory_20110618-20120314\\atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv'\n", + " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_38553_bearded-seal_trajectory_20110618-20120314\\eml.xml'.\n", " found 1 HumanObservations.\n", " Created 1 events.\n", - " Saved data to data\\dwc\\38553\\atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv\n", + " Saved data to data\\dwc\\atn_38553_bearded-seal_trajectory_20110618-20120314\\atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv\n", " no emof data found\n", - " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\38553\\meta.xml'.\n", - "Packaging Darwin Core files from 'data/dwc/38553/' into 'data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314.zip'...\n", - " ✅ Packaged files into 'data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314.zip'\n", + " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_38553_bearded-seal_trajectory_20110618-20120314\\meta.xml'.\n", + " Packaging Darwin Core files from 'data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/' into 'data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314.zip'...\n", + " ✅ Packaged files into 'data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314.zip'\n", "\n", "--- 3. Conversion Complete ---\n", "✅ Success! Processed 3 files.\n" @@ -1328,8 +1330,6 @@ } ], "source": [ - "import glob\n", - "\n", "# Step 1: Download all .nc files from the URL\n", "#local_files = glob.glob('data\\\\src\\\\*.nc')#[:10]\n", "\n", @@ -1355,15 +1355,10 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ - "import requests\n", - "import os\n", - "from requests_toolbelt.multipart.encoder import MultipartEncoder\n", - "from bs4 import BeautifulSoup\n", - "\n", "# TODO: extend this to allow checking for different versions of the IPT as the forms may change?\n", "# Functional for IPT 2.6.3\n", "\n", @@ -1440,6 +1435,8 @@ "\n", "def refresh_ipt_project_files(projname: str, filepath: str, ipt_url: str, ipt_session):\n", " \"\"\"\n", + " TODO: This should only push the .csv files, not the eml and meta\n", + " \n", " Update data for a project on the given IPT using an existing DwC archive zip\n", " Author: Jon Pye\n", " :param projname: the project name as given by get_obis_shortname()\n", @@ -1522,7 +1519,7 @@ " :return: URL of the resource\n", " \"\"\"\n", " pub_orgs = {'NOAA Integrated Ocean Observing System': \"1d38bb22-cbea-4845-8b0c-f62551076080\",\n", - " 'No organisation': \"625a5522-1886-4998-be46-52c66dd566c9\",\n", + " 'No organization': \"625a5522-1886-4998-be46-52c66dd566c9\",\n", " 'SCAR - AntOBIS': \"104e9c96-791b-4f14-978c-f581cb214912\",\n", " 'The Marine Genome Project': \"aa0b26e8-779c-4645-a569-5f39fa85d528\",\n", " 'USFWS-AK': \"530fda11-7af7-4447-9649-0f9fc22e6156\",\n", @@ -1531,7 +1528,7 @@ " }\n", "\n", " if new_publishing_org_name not in pub_orgs:\n", - " print(f\"Publishing organisation '{new_publishing_org_name}' not recognised as one of {pub_orgs.keys()}. Please check the name and try again.\")\n", + " print(f\"Publishing organization '{new_publishing_org_name}' not recognised as one of {pub_orgs.keys()}. Please check the name and try again.\")\n", " return None\n", "\n", " pub_params = {'r' : projname, # resource = dataset name\n", @@ -1630,24 +1627,23 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": null, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "No existing repository by this name: 'atn_137491_spotted-seal_trajectory_20180418-20180526'\n", - "Creating new IPT project: atn_137491_spotted-seal_trajectory_20180418-20180526\n", - "data/dwc/137491 atn_137491_spotted-seal_trajectory_20180418-20180526.zip\n", - "data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip\n", - "Changing publishing organisation to: NOAA Integrated Ocean Observing System\n" + "Found existing project by name: 'atn_38553_bearded-seal_trajectory_20110618-20120314'\n", + "Changing publishing organization to: NOAA Integrated Ocean Observing System\n", + "Found existing project by name: 'atn_137491_spotted-seal_trajectory_20180418-20180526'\n", + "Changing publishing organization to: NOAA Integrated Ocean Observing System\n", + "Found existing project by name: 'atn_137494_ribbon-seal_trajectory_20140426-20140426'\n", + "Changing publishing organization to: NOAA Integrated Ocean Observing System\n" ] } ], "source": [ - "from dotenv import dotenv_values\n", - "\n", "config = dotenv_values(\".env\")\n", "\n", "ipt_auth = {\n", @@ -1659,42 +1655,56 @@ "\n", "ipt_session = open_ipt_session(ipt_auth, ipt_url)\n", "\n", - "packages = ['data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314.zip',\n", - " 'data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip',\n", - " 'data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip']\n", + "packages = ['data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314.zip',\n", + " 'data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip',\n", + " 'data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip']\n", "\n", - "for filepath in [packages[1]]:\n", + "for filepath in packages:\n", "\n", " projname = filepath.split(\"/\")[-1].replace(\".zip\",\"\")\n", "\n", " # Create/refresh IPT project\n", " if check_if_project_exists(projname, ipt_url, ipt_session):\n", - " refresh_ipt_project_files(projname, filepath, ipt_url, ipt_session)\n", - " eml_file = \"/\".join(filepath.split(\"/\")[:-1])+\"/eml.xml\"\n", - " refresh_ipt_project_metadata(projname, eml_file, ipt_url, ipt_session)\n", + " ans = input(f\"Project {projname} already exists. Do you want to refresh it? (y/n): \")\n", + " if ans.lower() in ['y', 'yes']:\n", + " refresh_ipt_project_files(projname, filepath, ipt_url, ipt_session)\n", + " eml_file = \"/\".join(filepath.split(\"/\")[:-1])+\"/eml.xml\"\n", + " refresh_ipt_project_metadata(projname, eml_file, ipt_url, ipt_session)\n", " else:\n", - " print(f\"Creating new IPT project: {projname}\")\n", - " create_new_ipt_project(projname, filepath, ipt_url, ipt_session)\n", - " new_publishing_org_name = \"NOAA Integrated Ocean Observing System\"\n", - " \n", - " print(f\"Changing publishing organisation to: {new_publishing_org_name}\")\n", + " ans = input(f\"Project {projname} already exists. Do you want to create it? (y/n): \")\n", + " if ans.lower() in ['y', 'yes']:\n", + " print(f\"Creating new IPT project: {projname}\")\n", + " create_new_ipt_project(projname, filepath, ipt_url, ipt_session)\n", + " \n", + " \n", + " new_publishing_org_name = \"NOAA Integrated Ocean Observing System\"\n", + " ans = input(f\"Do you want to change the publishing org to {new_publishing_org_name}? (y/n): \")\n", + " if ans.lower() in ['y', 'yes']:\n", + " print(f\"Changing publishing organization to: {new_publishing_org_name}\")\n", " change_publishing_org_ipt_project(projname, ipt_url, ipt_session, new_publishing_org_name)\n", - " \n", - " # print(f\"Making public IPT project: {projname}\")\n", - " # make_public_ipt_project(projname, ipt_url, ipt_session)\n", "\n", - " # publishing_notes = \"Published using the IOOS ATN IPT publishing script.\"\n", "\n", - " # print(f\"Publishing IPT project: {projname}\")\n", - " # publish_ipt_project(projname, ipt_url, ipt_session, publishing_notes)\n", + " ans = input(f\"Do you want to make the IPT project files public? (y/n): \")\n", + " if ans.lower() in ['y', 'yes']:\n", + " print(f\"Making public IPT project: {projname}\")\n", + " make_public_ipt_project(projname, ipt_url, ipt_session)\n", + "\n", + " ans = input(f\"Do you want to publish the IPT project files? (y/n): \")\n", + " if ans.lower() in ['y', 'yes']:\n", + " publishing_notes = \"Published using the IOOS ATN IPT publishing script.\"\n", + " print(f\"Publishing IPT project: {projname}\")\n", + " publish_ipt_project(projname, ipt_url, ipt_session, publishing_notes)\n", "\n", - " # # print(f\"Registering IPT project: {projname}\")\n", - " # # register_ipt_project(projname, ipt_url, ipt_session)\n", + " ans = input(f\"Do you want to register the IPT project with GBIF? (y/n): \")\n", + " if ans.lower() in ['y', 'yes']:\n", + " print(f\"Registering IPT project: {projname}\")\n", + " register_ipt_project(projname, ipt_url, ipt_session)\n", "\n", - " # # publishing_notes = \"Registering with GBIF\"\n", + " # TODO Check with Steve if we need to republish after registering\n", + " # publishing_notes = \"Registering with GBIF\"\n", "\n", - " # # print(f\"Publishing IPT project: {projname} again...\")\n", - " # # publish_ipt_project(projname, ipt_url, ipt_session, publishing_notes)" + " # print(f\"Publishing IPT project: {projname} again...\")\n", + " # publish_ipt_project(projname, ipt_url, ipt_session, publishing_notes)" ] }, { diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv deleted file mode 100644 index 67504d2..0000000 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv +++ /dev/null @@ -1,3 +0,0 @@ -eventID,occurrenceID,measurementValue,measurementType,measurementMethod,measurementUnit -ioos_atn_137491,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,69.0,animal_weight: mass of the animal as measured or estimated at deployment,69.0 (kg),kg -ioos_atn_137491,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,129.0,animal_length: length of the animal as measured or estimated at deployment,129.0 (cm) standard length,cm diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv deleted file mode 100644 index 41adbf4..0000000 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv +++ /dev/null @@ -1,2 +0,0 @@ -eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol -ioos_atn_137491,2018-04-18T04:45:00Z/2018-05-20T19:26:36Z,"MULTIPOINT (-165.0651 63.6222, -165.0595 63.6399, -164.4277 60.0415, -164.0013 63.365, -161.5203 64.6676)",0.0,0.0,deployment,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv deleted file mode 100644 index bd575b4..0000000 --- a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv +++ /dev/null @@ -1,6 +0,0 @@ -eventID,occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,minimumDepthInMeters,maximumDepthInMeters,dataGeneralizations,bibliographicCitation,occurrenceRemarks -ioos_atn_137491,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,present,HumanObservation,255021_spotted_seal,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,0,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_137491,ioos_atn_137491_2018-04-18T06:09:20Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-18T06:09:20Z,63.6399,-165.0595,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_137491,ioos_atn_137491_2018-04-29T07:05:19Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-29T07:05:19Z,60.0415,-164.4277,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_137491,ioos_atn_137491_2018-05-13T20:07:00Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-13T20:07:00Z,63.365,-164.0013,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_137491,ioos_atn_137491_2018-05-20T19:26:36Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-20T19:26:36Z,64.6676,-161.5203,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv b/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv deleted file mode 100644 index c5bc5da..0000000 --- a/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv +++ /dev/null @@ -1,2 +0,0 @@ -eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol -ioos_atn_137494,2014-04-26T00:51:11Z/2014-04-27T15:30:50Z,"MULTIPOINT (-178.0899 60.6317, -177.8437 61.0606, -177.471 61.1814, -177.4029 61.1712)",0.0,0.0,deployment,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv deleted file mode 100644 index d0cf556..0000000 --- a/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv +++ /dev/null @@ -1,5 +0,0 @@ -eventID,occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,minimumDepthInMeters,maximumDepthInMeters,dataGeneralizations,bibliographicCitation,occurrenceRemarks -ioos_atn_137494,ioos_atn_137494_2014-04-26T00:51:11Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T00:51:11Z,60.6317,-178.0899,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_137494,ioos_atn_137494_2014-04-26T19:21:24Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T19:21:24Z,61.0606,-177.8437,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 5 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_137494,ioos_atn_137494_2014-04-27T14:31:07Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T14:31:07Z,61.1814,-177.471,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_137494,ioos_atn_137494_2014-04-27T15:30:50Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T15:30:50Z,61.1712,-177.4029,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314.zip b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314.zip deleted file mode 100644 index 7626f43cac19f8e1063c30ac152d1c4f8c3882b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 39605 zcmbSxRX|kl7wynUcc+4<@T-BLaf7bPS!+jWDDjEnNai!%)&KQbP)ZbjL`8#4z{p z``?%Qdf(v8nQy+c&)#dVwf3i_j)6%50)cQr=cYu)vha{gLuwGHR0{->1g=_mxtIxv z2nh+8S=v~5Sld|hc-mMvnR$6wIM`TuxqA4Sy?nvX|3a8wga`QJ&F)L|$00PnX`o{I`hRo6aNHPj4BEcXS5f9GY#3l$%ssK_`=B5Dx{ThQ z=<~4SK;y6W)VuOeZcij)Imm9Nbv3T?~wabV2!T3EQbs z>ASlv#E4nf-M__^z`N6}4B(^7Yd)JMy=C=Z*V!{&!)Nl(S4zE*M-wQouv3laE1P$$ zTdvbLO6O`{N{e?!qv~P!pOMtz3E#eabg?~ zdu#=r7gAd^wPK-E-3r7D-Ohs*U+No!e#J%ZF^)4e=1Ka4Fl2TZ>IuLBjOLct(V~Q4 z0nStl#LJ?Hc`@S+Tz*yPFIJXG^{1g}>53NNRlQ%|jlNVTshTVPFjbCzLW!OvJ!g?i z?Z-fr#E`zk<{!T%^I|FcTUo0=uQ{!HS_REg)Ql3{v_W|>qk@i-JetdAp zYXgl>qI&e8a!*$stpP$;eDM|K@?XC#e6eJRHZ&eJantV(al6>dvC!lWL2WdRiRc&| z$4*VuioE_Lm6y!!vnKq=6WmF*Qn~pxV!j#^*a&eh7rA-wNMSI7iC5`K{=t){tj48C zmB^g{hjZhZPjl;q?@NDt(cNxac>&wnccXN9%N79w+Xs@xjAtKoZl24!e%Y)}Gid9i zpuB9M%4Y=cgQ!<^pa*74AfF9y(Qd5*e_#6y>;`m=Zfj+NHjvpCmKXh$-ucf3e=nkM zW45&PnS?Sv1sWS(&|UuS%(D+j`9^-eARCj8ss&{A_^ndVXWNuZRdp`x*Eb`SyM#&p=bURY@8$pD zVZBG_R*kK&Z}`03Wn_DWbtHRR&9Z>aA!IoE1GhlFcA@rsVW?+7M2z4~){W<k3x(8u5d>4CuM<_afCj(LAd#)Gb=}2y+B7TfE>6!)c`>BFaC0VMMiz zxKTt)%ET*Xpsqa(fyjFlWT3?@9+|uObfuhslD%BkkFvngsQHG!ulxBMPir3%01I2k94cGHr5+P5;U@;s-eISnc-67|$TV3R@g@Y3IWn*fR;ToEC>Mwh zo!q7qDh$N0ke7nb<%lV(NJ3-j7gsG7o3mZVG*3R|u4LnwiUu%jO_b|~igYviF*f`o zA-nKBOIvhqyN<<=pT{$@E4cjGkpVxlnB@6@gRg%r7QQ;B+hL?efBb9^?XVL2cgAZL zW~V1qe_kd9P$0lXGKhe-t?iC8zSyC0h7~)>P@}wbDxzA9aj{TuXwaMb*3%vZ@v>c< z$eKIW%mOEq<$zDq_e*Gl79HZWW}WWGwDk*tb7d<^Fk@qk-8!y>clj>DS~;$Kv2^C~ zR`6WRKVBk_E~Q>|JP}H0Cv0aX<*+1U|6x+ZaN0OGXWt6}b$osr=-eYv#DOHCqet3`j zYrE7k!fv_(!N~lp=YwbjOrI2Mh^JY1^Xoj%b}VB;tM%p<1vrQW&1#zf`itSwr2&6b|kUL(LBs|V#KVypIhb@h(Bu*r&H__RPk@0 z4>eVq-u{O4=;f@ujChYw-iCQga<)Jv(m1hR?<=YW4ZApY2FwepG5FcICW71ePke~G zzI0j1tbZDo$9TsX31AisqD_wJ%7|h)F4W+hhYWTu0qbSN2oW-jGw`htKThX6IjdJ1d zlC&%}dUyB<(oKi?FQnr=DQRS>ivJTb++ZSA1Y!$DD=ik+!jyM|noD9z77z5As%Bqf%D_MZ9p5JV*$}ky1+oU`a91)wM>0PjEQ88)OG}+>AR~K`gP6O`d#kQ zI=c+G#Xbv&*j0{g_6+lv{wvS!&^?|ha=$1#2hUx@a^Xl@LuY*J^|SS^OU9H`DmkBp z*ZX+G5S_By+_xMbWZy&-Y7&pP@`+WXYb-wet&H5qZcul5WW+c(e~gM~sBH>cbxG(M z)ORcuSuXJJd6H|HUWI|z21>bO#F;rcMu}yivG}Jx?D_|SkkXD ztIm#~z&Z1FTil%3E5W4lxvU}bV>%mc19IbC)!XdyuJz>&^enTFA7yrqZ!>o%1L3a+ z+PZf+DIsUiTvyF00$pG|$7eOee zXwo|vxT}!Zh!n|0NRBqF`e+v6$ppq+8qJ0OD))Ld2!4#qUfsu6 z^wtVQyJ0%JTf(BbI>?4MR=F~xMM4JoujaCu zUW}{n%N7fpZ2FkS*x{77K5ZE$rdz1FwEOeN(MW*B`Z>E*y02DJ*86+v-+y3oxS=8} zN)4mCEK2qNqMTMOmtz@l9O~03x)hoHW9&l@?)TB8e2A<3DLD@(C!aj6D{kGh$?Z() zZh&lNPvHMlV!iOad;#gmF%a^9{r;O&X0)hNak(!E&j6ECztBvr$MmwD8@v4N-ux{L$E@07A~tnE8`CnPOv*e=BIFdMsM%`%5U*-YXXf6ua-!sM ztfJohT+0!!(Ny-vo@;nM^E@1L(NJ{$=K^MnI1rY4CT2 zJf7x%3jW#T;FkBSMw`elW^qupSTgXgG)4FBGkvj~B7`i5Lq8DCL~yc+t3-vtkuPN` zGhj&`(9-@^p-iYs*+!=9!qQ+>{HP4*2eq~pyYDO#*K|7Ux3ch&PRr8Tug#%|nC<0T@k zPhY4Z@(tADS@P*AJhLH`|n z%RcH*79*5P_f2+^;(pP4?<3ih)JyBps{C(U18j?PJ8N14_Q?vSKFp;7y6IAme}eoA zPFow&Ea=iAt)iTNcRn$~7;~nVQkAydDqh@jfPXIff#DQaHSu*b*8Z7Cd~_N(a45QG z;7O-$C*P%^&sK_-u)amKF^f@??>5>f&ScomaSBdCj@~wDd~qm?_MSBXnxX-FTZq~t zI@1aK-!BUmM5?tw3hKVoG9=NKr`T?|ql$EB++Bwf=!1Am_8Kch{K|9Q^XkuEmFX!; zStfeBv0$cmP(5EP*re_3UAZK=N}~rIn6G8j(Nl#k)7a> z{LPd&T7~~rlm~akM2e@>n&f+FYj+tg40XisYFg%umQoJy)RV1Lsn#Km zmy<64<{x{HPZM2Gx@o^YBotrB^Z!>UbNXG;YHdJw!?_Im=46}*=jYeukfs(NZJBFu z;EII%$kO_tl7Mq3B7}00tUrVBj;T6AX zZfrjJ>4rcS=RrRvU#B^kG(kl&rkIoj-gLRKmMDLTTUW>Kf07;}9vHwZKSqsZ`J^b2 z5W^$7jNm|9F1YAR<)2jB?RPHmaM`?LnEm>|Jyufbo{V&9v9_Zyg-c+@a_jRKfzR;G zt~kx(;f1Idq0T3le?v)O?YXM-^!K4XE@)0I>O)MK zVBR^izg#fqXOWK^Qz(NbS8!<(gyl*IPfyf8n6T5aOcv`|jWU1dOe(;d`6qWQsg6uw# z_C&S)lIxu{qz#x0dfPEPB=;`>3+pCbQg?FVa<}_M^MK0qQu8LM!J+&+e`c_56y0yo z0*nh2BRnzdmOP1Q$LLFFV?>FJLBu4NxT-A%>AAVl$Z<&z3}KXLZfi&WJf!rkh#sdk z{EFAs=r!~3$7$p9Of3g>@#gflgS~IUfho@;-cwNT)Z@Fh4d9ux;q(UZgm98Xy=19O z?#;azUqk=c34RyWk9Fz&rbc&6R5rZxQ8N2$Q&$@1Ws{{9Y9ztaBjvx_S;&RrfRZAP zPeLy4%4qXeR<9#3mf&w#Rp76>$jpWean8*pGR^-uN@AHirge%%Y5F%U6v|fwU=~>{ z;-84TlN0-^oX~LjS0Q5ZFX;ylBTWCdp>^-RJC&a3PKIAR+UE_}Mej~4)f9M5b6>8s zQo^EBgbNcMB`p;?$Ea4%5gm8o>s~I|X(4OicsAF!5)VJ4$GD4Dv;PkL_i>P^mmBMj zo)5z*I)w6D0|kZ$A>HNnn=o^y?-nKhXy!oL-T5EQLOVz`PYU$x%k4`<4(FJjTg=Yl z$#_D(H}{iN5jO;{{o1m_z!P-_r+hS5h#TNF1X+FzdK-);0Os{NelA;m<3JOd$&Z;& zy5mb<7)m7}x~xwF17Ri*_+1N4Rw>&hS~&eeN6ETy%PJ2|%rXz^XQX*F|LlR#^(Rv)2cRH&{%u2m1X=P8On7P(DHXe?FEFm|*QL`ZxESrnJ64!e zDLo5dPhKZ%MaPh_N)27UBW(4Eoqaoa2?%Cm^V@q>K^2IVY3XW>+zC=!*xO@5 zx*)VA%6QQ)LD`MVshf|O;5OxV%85k9GQDPOyf8Gi1*N@^)P z6b02vem-|#1wExn!HMlvZHO`SAubbrwK_Lqs1-NPlk>p`)boBeSK(tlr6fzNG3`vd z7_J4b9@*MkABX5+=;N>#-Y4u6=RBN$g*eHNGe_fRw5v7r81XNR7T)zQV6$+GKbMGV z%4sJ{5JeahIX94~xrsfU5?pe}h`z~4FVvJ^j@ncVm~QuZkPJ8LhuUY@g`q{1U= z6)Wcg>9BS6HOq@H>&4|}#0hb=^{Ndc8e5@U4WV+a(_E`KRnEPqO^P=aPQ@)W$30m3eAI^lw^0rZ5gg z?bR?>V<>7=G^3?P>9|q7g2GOOs##+95EiW#;A*Jl+u+t;J*3%R`OoAkkmFxqpyu;` zMuBB2gv}d<5keET))g%~lXbDb-M4D-^s-kiZGLpQ;(*%^m{RHov+R0Jh+gdQUbWRV zS6}DJT9svG+P!oLOWQmAt2>I`={FK^w#_&weg8MeU-c5z)p38mkzpp?5gZ(V8bbM^ zMu=T&r0@ToATE|JR(@;NxJsjL7FX_=wf-N^{_Ax`xQ`166z)j^lKcPk>|L#_K6rT8 zxLDad825)u?`v#^-I;c8(YB=-{;8o8C7z0Veyz41-uTQN3i3Rp{r2>JgirczuSPofpFE2C{`lqu@|*9dYX!B`b$54neS38qa*8}!2|*@e3*7Bu-?oLl`6Qw0lBlpzOfp^!}BW)qK|JL$Xg8pUfKDmY#A7OKtsMD=a6Ry6Gu|WksZ`Uh#%@?V`ruF_H?bevwt@~ zG346Vt`eE1+Eu?LzEQz{TZ1}i-X6HS^r->9aeUL~D&5t2yLX+KZz_G%B|Cw-<&*BZ zJw8|o3PzsSAdl>Vg#E0~rq^0jq zulIa_6|0f(@eVSFy!z9Y6%Di+U$Mv5-PQ`{r-IV zmaj(h7KOYyJIK&P-QT@p-km@q+jdsYQGd>M%!02fe5CJAr!$aOmu0_qn7ab6H+F9H zLoWJ;t|+ec=h|CZL~r#`h{UxE{gAuKFFQz7`#I_wd8?VS`}Tov+-T-?;K=hOEWohg_eYGvB)IkR!dN zkOTBx$|2Y1(?ds#`Q7A5CkZ4lhRV-hmh3pWJ%OS=0(St9TvuEhAvS$y|BR9Cs6*I_^bh9CkZ`BvwDWO4`jsG8 zo#DMJ;AyYMPnULn^Pwh2rbCcp(<>qWPJf`Rk1}thXLL}X9Z@W(`|FW|3C)m`tFHSC z*Zb3NC=2NzpIg`4#2T~v#UV}9={a@C*^>1A)<}r&{ipkqOS7X(>8=y`c2pDc;9xqx zV05K@1$8>Dd6<8-wHM+TGF79w0%Qa#9I4ri)H_1OYu=h6P*?Y5XE*24_xAqR`J^=8 zhi6+*pSnYQn^EH-zQ}xj5&3LcW$dMqCM*P=v!JVtS14}u0qdZHPNO2#I)O8ZGgC!j zN4WxbOp-57%QEuJ zg$@pU1eYm|U6>*&3(~;>tTy>ByFvrlCTEIog3w9rZM!x>0dDNUvzvX(3&Zqv0tChM z0JS0mj@&vU+n~c+LRmfF8gs0>$|!YOG~yZCvaDt4zFLw*rd^?iWez)i^S6wDmzNY2 zvhMtfc1DE)`WyxgYlX;mx9s=D`|OrJc+qyU=QH+*O74DIH4>}6?CH1FSft~tuVIGe zlX1aVr?BnOofFCy6rX;0R22u?vW{hC8$F+|N{@VYe@g=U#QXCiOty#JlxADM8E$I4$`lkl)S z7XQ19iVO(?>q0_Hx|J~YT{E&eajXGP&L49l>)$iDhihR{@b#vrKOD6`3aXH&+Ae++ z7)~a@M_>?eKpjQ=@#;|sNk%hI_!pT zh@ZK=Adaz9jTichpK1M@6W^KaeIDaW>b5#e`=qCwJhOV`ssBC6WL)~$K#9d9#z4T^ zQ6Yte3Nmh}w%|r@VC?U#eSC1}Q>-za&r=WwHhf<0)Pl%`%P+zgJAVz%WKJYvJN@~@ z`jQ~RvF?GpTV8bt4j>N;pju0R#4{(MV$5FE!Jt>XN}nSE_0dYSt*?;n%fgBANueqK zz0l^srb%kBTNq;_aHC0DyDbZUZr|C&+EPDdyW3dvydaW};z*T$4s0X-$`IT&^1^QH z!0gN|g^FY%JoD#kk|+^*@&4a_G0+3cw$$NPMk9?BtLnM>^r#2mP{O){w{_o!34I5XxCn~L z+pdF|F63OKR!Ab_$JjZSQ!LBJb)U3vkHI#!I-=J|ff`>ap{ZC5c~lcCaPC{dx$FA0 z@1A^0PgQ*up`N@WmM}6)$uxBdRER?{v z(Z2;BV-ju2l2UZ3^3T@xeU?bIE6iQbX-d7&=`X?s>TL9Uuwj>g21w;`;}*pZ1?W)s z!ehHg2M(ow0&Y>>cE3%IR|&>3bDaf)NAbk73z47tK4h7>b%X4r;40-srMmBf)cj_G2u)H|bT{tQEo+~H``yu6?Z;JO+ zJt1bd&t|?z{Wt^xAuI|Fbu=pVsNg(MS+0%8u+m@}%mOqxI`~?Du<3TaTC5HqcL=tV zYWDhw>k%JQ!ypSH?CTbtJ=y~rWx?h|8shrr&A7TgA*s)Xs4D6fI4z>nw80A%syb9G9i|z$L ze`dn^8`y64b5~U$RzUl!At|A@no;k!W6I(2pt2wR!Cyaa3-)Y^T;twbF}56t0PZfO zb57_5x{&H?7ZoTK7gLU8iGb#Bm+%Vh!|^}-sX1GF+zQA@4H*omB8>Ze#peSl(I{`Q zy$sjxSvYhkZM%Z-cA};dsDzS%x{?8px=ZrFfv|PSXWI_1dg=m(w2BOr7G9bmW*A@~ z4LqX)Ve96Gq>qDg`8s|v9a|pMK8@GuKzzfez?U9E$&hvK)Dm|3A5aaHHiLIYfiKy> z{IB@0H!LcjBgqC{J`+n!#w(Gm7BqIQ)UGe-l~XlZZem4PIx-cYWwAgFny`%dI-w~4n+=LrqOsI6(ON{SK6oDXVxZiu$Vt`}km}6+1``Pr!rEtlRZXC~6 zSmrTX=QDnt18ai%X|N$Ur6s{KZirG}CBWRi>2H@p91jpVEb%#se7AHQ`$R4t*y%>( z*D=^rXNE1&fV#HLP;78G%+k5bx^N6eoA5ycEjB8nnWxZj-4@ zn@X7J(gjtF*~Vyp%<_mCCq^biXUv|@fBhyMBTrAmmd92HE5_*g*(B8fds-LoQ*WXh zq7>S}o>S%4q@7YvJgff3*|u=Aa{i>>;dDRO!u65;NXfu{;D=;0cW$WafoHaA*8Ld! zn~n#X^=*(_oFqO{I7Z5HEJ9F)3lVBmKOF~3TFXcekd&FG7ef48sDhRPdZJ ztg+pESxh^(rk{odzs2J>w{!tqZ@4D(39Iu5o-nRJ(I}wO`Z_=I(sI~jGWkA?fHPfY zotCVs(9X+SFd3050p;_vSDWeDEHpp|s+wI)C?yap4sw~;B2j{coF!9Up>^@+`DGib4>c@eqgg{7X&-Ju+RkEHZBvfqLaNFBTVc(IyEn5 zx`y`dzfwV8%Bl;;0ZBk*M>0gg7y>Vh`?;s&b!3|;Jn#{t>o#)&A`uOgzLC3}s|{*M4!k06$6!HU_m8d~Wb;2ug)ph7 zE1}jvMw%=@6gz*k^O-*|UNf>G{`aFd#+t{pxM0VE$;J3OqaH^w3226K@1KD0e9a)b z0-msKFg-XjvCoiGcEtXWrx;-RkU{eQ64q5=<;6BoCwT!w_@l;y$qx~Ao^=tz<+B%n z5|dGfr78x{0|Nti3{L$)_z3;w!%(VO zAHOwS28xN|%&YeWhX@@ie;TJE6bM9ub|M)46`KqB#Rp&V&x@8U1sM#%XW+cc7?;K7 z*l?J^uIIAOlE~v1**Cpk;|xwfCk)Zf+!-k*CkEgMksJPm`!elT`4<=h&uqhcX0e=|KgaSh$ASI60yzQ$U;Aij}0)e>#6Tqmv}fI+^~Vpp(v*9`PFDR znH`_qj`im6sNDs#8}LC~&b7lw%{>FKPx_CB)tQij9@_t4Q!Hk807$c()^YCjTY_<> z--h3LV>{FOQ~9S4X$m&7S)&g!zv3er5{5jlEA@n>Qej!X_Hx29ghB30SR zpTWI#ux%&KHr-rIoFy$^%}6glU6VBeXS^{^1101Y-U~lmfN|~W$#~&JFNU^!s{wZ| z++anA`r<@)PI)f(lGuU8pRWu~%GK}lfeLZRftzW*Q%Y@E6*5}Vk|4k0@dJ{`Cn9st z)5WY^A-m8J?8=nQRdln=Z-PRD+Q1li-YC@v#7ADbcDtV^)jTD1WP0ExML3L#^kxR& zvP>Ms3$n>8bX&*F1sN>0CvA=Gkxf-LA@Q>vm^CPe>+Bt3a6nkUxXSC6HWWTJ#RAuKzW9or7~ZtjLvIkIhWqyf9%s)73HlX6c!5 znVWBVpVl{7o%uBag!;M(=`6L=Dhbhq2aP>hG8E8(j6beFmj}xRHeArr>&UcY^h41t z{mCsSL!Ku#$oVd&MgrfmdK@v50!TsskKiUQ*^dGuyfMl2Lc9vW7K z8gLQF2r2A8LSMgoK> zbq^KVXRR(GF=Fv;`LFa!J&_&Q6RgCyg|!{H)}yK-pwcgz~)nFhnke| zu>7t2b!C$iz(atRjCicTv3&w-%3FG~2b(3ZC+4owZ4S|XB(?ZUo>*S9sUReY`a64) zZ?Xd2&#e;nWx3m|SJl+J(l3S*L`96ZxMwo0#k&o_U6^?_7=!`pD#nj_-rDyq?6V!6 z)WSNOb2R^oAnn%w<2+yY&aks0WWU<{*rUxk1bb4!^#nI~8%jGw1^5bH zJOW%EvF}@PEiw}e0Ol+DH!k7=(qd@= zK`VM8uHLTskXe6r`^VDv*%GONaAQgR9aW6C0x8JcVJp~ucNbC##;Aw&)z(nV-w;z^|~h+C-$nO<%l#WAz7UXU-GYH&1EziXE?yZZGT*l zW3G^|6((5bI9nTrtdT1d07wB>;`sCCG#a3x_MRxi8GWhAF7#*)**`upQtzIKd`pL1 zF74#x@73O7DryBrSYD^q&BR%%Us$$HSb@uE_@+$=V+(wl6wRC|%0%Q7he&Q#?t3mN z{_9E2;fybbU{>xFM{ndFvjyu|I&t7BK3G>|eIM8W7YblEuf2-Q`%AZ&I^5=MvqBa9aO z-r#Q$EdZ6xA?mmpIi?}TfN+RH3kS8THmM)uOE&%9?J|f~5>_#OGB$nvW5FTmfjO-B z502zepwkspg>O3qq{>pk2_)s>_LT!IIkA9ib8m*KtdH>V5ja6-j5tVjy6;(`zEu4N zxm9l}g>Gs5MYg&2pn&@`J}I9;WK?t4{f2dEYK)Q32fe_fol@; zdLaQR1^5?Kj?v*0Rm}2T;iV{F5Der@3VogEH#|lu5ye!J=L4 z4Q?JMzgTe-fjm^0NrK|d69g5US>jQ~w{-LWv8xNy|E?8|adcLHXaoJ{-m#GJ4vRe` zu!P;&e%GYiG9i$_@q$wRE13Snx$O9e9k)j-ZU8Kt;y9mFL^O%&vcIorz*J{qSthrv z9RJyrR|_+3$_da!k^p@U{un$rd5|J|%JM0a3Fl@nBg!Xo)#-DCO1^O~KA?2XBsw}) zzUI=#rn@!$G7QjFI8P?RM~rWCFkWX9NZg)LM{={J zs$3oBgBdzY-SfNkQ{nsdkL9SZWQRO!PM-yoofD@Xlqps3$I^R-zhhW@mOU8#108)T$dB`Y9P@+Mo0XWq>~t zuK|Q~chJ7&rs24`t*iFzW8W-M^V~~X>lJ3Z!XYevlkX)lSfnIJk0z(AJtz4IxzD+x z_a}~P0c*;hO!7l!bf@Hy-0j@?CEJ`3tEDPtzqrh6FVa8i%e;0#Q)|`Wm3v3=@XU^~ z?#Vl$+)(*8!u*c8r zBYh8CTl1$w@l7G$=nQR}VNV2*6Xyj<=+SmE&?w$ABeUXFZf_>IvW#Z*wb2mbe=;$_ zI3fI%sUMiHR5u(k91e0vz1Q+1ePQnAJkaWu4RPD-X+_|H+@u`0T^* zA-QY;@uN|(_!A5$Br<)^O8wMOoXOvpUla=vQ_7LH_+LnPjDRO%^`B9T)#>t-=#&ai z6wzv@S5ziWfUw=HQV}EgRK_cC6oV?B&Pm7^WAW(eSXZzE@ygaG#{2sZ1iV9a!F0`Y zu1}G{SQ^M{5Mb1hfjci0|I&A`;3h;~dJNlOe_ws13Ve6$M^K!82RGChY&Ka6jsL+` zAju6i+337iF=aL{R0jVwS^;ya%dJbYr#k?q1+zQ%Ij44zz*aU921D`u<}^8^Mopj6#XH57(nyeT~O8rH^WTdoSc1>LD?|?0iy$p;~sq{ z52TEPFa>B9-Ox6;`dC@IK8o>4+THyJ$5qcMG<#2`ze1frN&L`>y+&qk_Sr|CaYJ2s zc3uHK!3WCm2P`qMH%hXu`WWeL=V`Y$d&GUhOZDI$1lbY1JB`@fR0G7;^`d7*hS3CU zh5&HxX~5q-lAM|z-2a@h^lblVuw)p3kmV)X#hZJ8)-2{3O3oM?c+<~HIJH@_pjGvm z@$rb&zBs5wi8Dy6uSIu3MJ{5>m;*&nuiS^bFRyt`S4+J4AYB z@t@5S#bWGiQ5ckE+P{bqdU*`<`05kIE}mrwhHO`#e#WsiZwmiXHc^-P{Z;s=!L9{? z=gIG^REVpDN_(+F_V=@*iEpQ{WqaCEg+p#M!1vtR?>Ia`!Kam)Q}yHsGf{Ng{4?**n)j&VE%BJJfmi zQMS5o9~yp;{Y%+PjKoMLWki}|qxO0#5!unR$#)wSr0KvIaoVQg9V&9j3}SvV6Shat5-Qi4F8Kw2eTC zyP}m)gA*3_j{bY6?`iEbzvPG$KEGaZX2biZ`1#iiia0+C@s0799_|M_n$WH4l;@e`CC`q#~P0 zp11Wdtm9e*)@v{XIA4SE2c`Fks{R9QkxaSvcGxyrO>$ox1xRBnUsAy}+jbl)w2@cz z=>kB9a$Z@Z?HQH@cs45irWcic20OXNh8!?X33&7_s!{p3KiZjnm22J+0qB3H4@$=; ztya74R(rGg-D_whG7?xtuEfId{eirGv8X0}ma+Ciof$q~8g9(k9c{1KbO*L8Kt0vO zG?W_7)Wm>&qxz@Wlz#ks3TGOWOXMSGyZGIwefco(dKpwl%ZKkA#q{O`#)NH4JW>gR ziBFbNQ29Ig%%Ofg*$(Id#yRwoSiJuJ-Ev+28t;(&Oj4_$6SnBN85Ys6Yc&2X;%~Mz zwn$FUZ~!zEeaZT2^?(Mh-+mwyAs}MB#tnTLOcKa-LF3=9k^u~z!m)w7wC(CwSvstC z^~t$ryZ)m6N8>!b=&0Ds0_tEJBOcV5&pvjNYe_&Xol;sX36tgN0OTyg*yo!rJi-LR z4kiQ!U~JTiRQ@eksR{SCuYs{u16$Kj#ir@LXw>Bo+s;ut7GSK|glSY%=qIJi^$4H` zr91J|av;Q7;TGNdMr}YjAoqv45aZnhqg4D{LQ(td#QT825czZ#!N4Cw{NLQEx#>|V zw_`m_-cZ2Go3ucZ6Z-n8Q>FGPo+v&$cwn5V*0IVLupQry|MGb{gUm>A(y%CmEMhI} zL!!!dSb%zXUDF@)z&Ie!%oS17o|$hj0aeH?gt;&WM3^S#ZP86!#k?^({5hC@>~(GO ziW@+8Jjt_eEFZZ<_bt%b&1o6RpUZMn`DX?gCf~SbXR7{&H!WL15eZ5u&o_hak3I>k6*3wz zana@UEcA(Sc|99@#0M6DiqnrC+wx~hJ{NGbH>uA+$^dw5y8-T2x}a1g*g^02WHItL z^)<_4;{%q&o*WJO`p_1bsNkI<&a@Bm)jR{N>B8 zZoK+WuPYgMBbCj77mk1p&XJ{2a0ckwe7>p8+3W#`$1f$%jD`%jelKm#uxLZ)6sL8M z=u-)3NLOpCb3c#B14P6;y`}FtD3yT9bCGBH+hvYoJ+ytS$RuL`HL}?nZYT-y=>Yb# zJ!l@n;aimrNp4_h;&*(DBBkF(dnljCC^Lub&UTx?cYx! zZxev&20Z7Y7~{4cMQiU9g+=(#n}tLc5}x2AU~nFhvwE8g*oz!m63wto`@jl;dM+kl z^k!VdJ8EF+@m89g3ZE&b%DpMXsWHV-+pZb5(;m`-1vebLTW`3@Vh54}&o0sy)xsS> zH4X>~{T~85{Qk56*wejl7%r+AIME89Q$z8;U(-YTJN!Um5#Qc!RAc}{NP6f@VPwI* z5gL^s;ICB%y^hh7118+*>X7Z&8v)@;FmQ$;%aPdWpT>D912FmZcAV-}hoKyB{$f4M zsf`nw{Cg-9Ai{RzAMD)ac>t4*GK-yLmI~m_TH&^qhp^=PH4~9B?EVIpA9R)<9!z|Q z2!qi@zT3P(_`+k`Jl-nRPk+}76AaZnt-f{IV^X`ZoCwAg{xGOo&DCXsvo)QJu<>t@ z6T_IujRJJkS}eXm$OM^(_;X_RrB7-%Wr5a?xaVndrLg83B^D*%fsg&oZZ`-biS))teDOUv}3@RlUi=*YtoXod(s?APq9lgb3Te0{>HcXy3L=okJ;AQMG`>AP{#`wrwF9 z(I7OAKBh#Z>ID@gMu;oFqJrX^H~^DQz`LDVym;eF#*OcMl$D;aEcAh|w15uXp7=RW zV~nI}Q||;Y-4<+8Z=iOR82lpqa2%_g^(a8r5Ev&^`DGuG$-_eCqW%j)dIjOEx(l!2 zuEp^G;p)2MseIo*S=poP5t(HrJA3bp$_&|?q|8tqVM9w;S4w(60 zHB5tFsOhv(^HXKqC*139!9BQ4dBn;-;;7rV%$!A&^8!|`)!%n; zQ+-yMFY~D#P6AbiyNQNhv{^7E{gliVi=H9%mOwhLpi?tvI}l)5_=~WKYbgflIu|X- z&e;zn)u9M0<)+$I>d>D>vubf?uR2%V66cCN6##Of%!|3}Dbfu5MGv0ow<2kho|GSO7W>wcuNIgM+Qg@SPB4N5a+X&{Hi+Uf*uK#+I3Do_{`FJ*B z0}AS=2b|7^n*?C&-Tn;<{1TZ>4`KE&D*<1Pufc1$7r86R91IS)U zV9TQvC*(LOYSCjsU`rn~vx&iEc<&9aK$YM4728AFY}z!#zWl`{)vg5@XMl1yYvE)6 z3vF|2y?4mh1Igz=#KSr8S6lerSvJZautcZ7>7M?@IZQ#Yam7)5op=|Zer=ho1K0{< zaCW@&`?LpKyDdI4g4%&cgC_6Y4t`*Es>M1&1iMGf+G92}!~rA< zzC4~E+~u2ZHbE&*&#Sx5xe)pSc4cc_z%uJZF6CEd3ILX;x7hwGpG_&>%}p$Dk(R|{ zG74SvJu#GaHg86(nzBS8s^=*Yz}WTA3G*0ArERSvB%+_#7@a@4^tkp2UP`GKnFbg@aMF$mlf`{s1u&8ho+?T!PuvbE_9beAk3Bb^Y{nne!poB zhql`>P-I@KUG>*3=NAkE+d73IeJh2+AZgv*Ost}w2KaAcNwEH<_=z~ z1=>d(=*7*k^jo3vfEXZMd*jB9-@;c1>8{XWvKmu8tVHxN1L6O%>E(Ok+Bw}d2KS7A znT|efHU1=umF}n}490wMcgSa*-E12vk!QWk zjc7kgrv^uOY@sE}Ahqg978US+wy=mXb6M(kuYLZ&r@O~-X{JAs zlj3ISgm6IJBbfJ38tW#$Zx0)hOvy;KJ?W7c{;2I6T7wGNyJKuLQSHa)(!FFxp+m0z zyDL(7l8KeFd(f)rC#fpo~7l= zl6#zJ>#bdTCmMLJblMCfLRTCp3nw@{o{KrT-WAvOEdtU@FwRQ~Bqu}<8XNp%A2uX4 z&_Gk>Vc|!&zqr`N^#CBQ<&LXsXf6|3I&GS7@=7n#vS4I5kA>%jLtezgy-$%lvGKD( z3)sXJd2Hc+`ZwjJluB!F&GK4FNVn+7H>6)zJr}OJC~yak1vKjENptOHJ$~;C_Sv>w z>LQLW$`%dWvtwscCYxjntB8R&mA>Ieuk`CsiqvDgZFgMz?B}FNHOlk5YGWBcZ~9ZQ zQ1`3E6y(-n4ljruoHx9Sh}&ilyKC-rMMO!&cx#g}9N@$x{t=9c_uP>}x*drao7+l~ zTE|iBmvfP2lBvQK(EAQ_8h;B?eqw&-{2{~d`@~o5TD$4M!8ZGyFS%ybtUSbCroRfi z*cR-`|En=<4;z$@YhLdj3FdG2^nDtVv?kx@~ zXV%UPGPYrYd9O($hffFLQU@J?KsX!yqU8#@8l?o#TmuR34FghV+}$U|A%i{i$ao{t z4`lCudZk$o3;Mb&ox#Jc zX}|}K;XQKW#v3oN+7nBT4%Nbr8|Sctpiyv2wg}R)pR{#T?3~#knwC+XrEz&oF?pDs z^L$>W7Nl<9S#NZ;8zaYLW3axKkc&WlLrxm5V9){Hjk{bFF|W1uk3OetZ(anwX?(Xm z@t>y%-O#v;`>{h29&A4O?7ydTS(tM;uus%R4kKPidkH!@cQ##XOvyZ96LuFw9(eQk zZKov=Z}`SIxC_Q&V&&gj<6!42arMC`03d1l6u)b^9=njf9G9S zPf3eUvBYryTf}fFWMWQy+Km>qs4t%B0~&dsL+#@;<&mRU^JD4@fdSaDBDyixJ5^=r z@t-;w)_17ic(PsKPs;tYR9|Yg^IY5svBoARB34t5%XD7@8LNwD*1^k%m6S>#rBZS( zJuv?8UC0aGN4k!AR}!HMCI2v^>o*#YILCZ0!DQJ~G2rZpUZ!jYumxfae@TJLPfS7K z)30J{CW!<9N@q`$Ub>yF1^D%e@0R}9>BFmtCXjo07VUe!RtM3jG|LJx+E1t;XIJy= z^->2!S2%1*$i!rT1N~1kdBkw-UIz%dF4xftboA;4?}|dJV@4I+D$EY`i>9|WE}?C6 za?y)G6_KL^k(uo?C&Gb!d};3wO#$XP@4m|0Mlr^PLmOnNv_4=GCEJ@#23XeY(*w&ylG#^zQv? zKJ@z+(hAcMbZ_4Id+KH)C*5p$#tNs`>CR^%>Wy!RUhD73jB9x8C4uCuzw%VqI@3x{ zWLcr?62^{-d?9M#BXU2|9f!d#fl}+;9|S~>q-oMB5rL^?^tVU+Vdh^sFT{O7 zZdH=}ZsxMnK4~nyb(5UE2p4q{o6O8qMe_IH?q*TjZ zP|o$UvS1*cJ(;UoV5EcYkU$XCTsMPAObI=5YF@@JkRzh%@RZ-IIhzJLY?%3napsy+ z3esnx{fH3N5say838ztD+wr3>X)k zk0?e>gxd-b{ptiuyP-k^T2WiE9>(asqMX(@JKS$7@ISGtbAO3}ZMCaQ$QvqZ| zXKu)OlV8dcSCqmKK_*(-vkQ<(`*N-=-jYA#_u(5Pevf%4kn6rw|?hlgm zN$OA%ALpNG5InoJcodo(x#AA&bf2zY&6Dcuh#pq1ZOr*9$iiW_H)dQ6>dSIChKv(7F}?qM*~ck^ZDuxl|HRoax8xA0}^Wv66b|EK6Lcs^}9VMBp7Q z-TlkglPiL2QH?wqq*}dB?5_lq96iX7tVCk80R?rjkuPDI)In@dPD=O1x65Cwa^S-t zYR9<4ZybC?LP&+h%qZ~MerT{E;*Fg%g&|!*N1VcUz!PvlvU`c!V{OwW*cj9?OH7NBJ&!_xX9yQD9+drSc~_Fs7=%yf|JpEijDs^PJtn^wLR z*AUa&CMxN(f<4^;5uj;+4;9u13>~E@rFmv$;rdc5h$K%zE@exgB=_-?b0h( zzXBML)i)OV?O%f@2^QDTnJi+m@BHcsvqgz{OJ2wu5-ir-9LRa3i^x*D!`G`C3i6H5 z#QaV+b=9r?4daIOuXV|+Tc_kvbXQ;ycQ0%vQ)=W1fSdW^99ZlW|5649&6wAk`^DKF zyPf#ee}AB?8d!q#Gw&Yb{AW3dvuWbshc3O{sd*>^B%=Ows-LU2&xYUwxGka|{n?xb zJHZCHUK9y?(eJi604yaEojdGz*u*W(?Cwu>aa~|A6P)}JEHBYh2f*< zvn@tnoxEq2!J-7WG>%lw0CyGke`0oXktS}1NKuyDwyFj`#Bp=!-2(XM&MY^vdy0p< z5_rL%bN0SE$v?L(i*$c;JbNAm)%-tD-?yj!hNbf(6qmrl=5rRVVU-}e*!I;C7!-9; z>6|o%Kd!M+9+y4V4Iccpqc6q6rU*vBz>Kzyh^7?LdYv{_wh}LPSa2|JMX;)hck6s1 zlaq+%J_ynQkrVI(HM0UIagr(tf}b!P%YSg7?4&uX7O(!`WSeC+`R5=cd}o&!0mjif z4VeNklIH#0x*rYiuQJT|GHW@pmEi`wzny@( z>#d8#nO~p!k-_A<$9(-1$3iv-2MDctu{QmxHvwcjYsqHQ^Hr1FgxHN$m2o@nM*$G9 zb<&lX%o_h@QdEkPoA6Ujl}z}ge;<6%oxj)t`_qc8$4J#Y4;?^R>8G1eWwob>)w?6o zx?*3Y>)V(uk$S`Wl}q=1YIbF@6|Q;Kv~oJU&<;7fJU*R2Ui8MoXbl4tui#khC>Rb} zJv5KIQ*v8*d4a1%B0TsU3)+uN?u*zc*gC6$aDSp|kzHxLZTm%}UT5C1Yt39P6HIH+ zkh99YcIO(MG}~NS|3WK|=lvcBCa8dnuU{klaz&H%r^O6`NyYZcnv|Dg5hGeih9rL` zo5oq>wHh5*{TTj$P?guZbWxqJmiQ@X^pl(|A5^K&1bz^#*AiQ4rYSsKU>68L`gu1r zNjEfq3PWzz-rpSNgaV1^G|nczH804mo{d>}EQj>JnqZToGSGhvUCG5b=S1f3@a!`` zHm?&L|EBtpP6R#HD~+u(LByDlx*6F^IKe2(4=NgOdYD)Hy)lOoYY3=YB%3s0mDQ}Nws#t%`;K2 zrO0-!J}SNbixj5Rs1@1U!9)ynGVB)NLt}h8&Adqo`2&sT%D*sPCq&ToUJ1JEm``ZZzIy*6-3Lc$gQL$47y&O*t9M~UF-454~Cb(cus^CHZAeUJiYclL> zRNjeDWwhKW6J(I~Mgb%0G-36DBkgfIi|E$e=d@LjVC)R7f2<@Mc90@cZ7y!mwn9G!anzfef}}C7uzcLft;=BFBsLuOaz1PB4ZEhth=68 z8Z~SS7^OS<4YKV`#7O1XRv8ayaH)}cR8CoICu-&_+%(kq&CNq@Z1xP|G_Y9f{Xp^5 z5%j6D-UHGXutmn4iEy2J;BzfXp)&gOgXru_EML0v3uUUV`zvMTA3rP@`kXHOKhLoY zb5oMsB!~+>?)80kQ|cKx2dW4WWAxDZF99P49eZtjD(>u287xsRZKPbU{kUC^e`x6L2eu$>g`p=W2$ z!K*<9WM8T!MR=vs&$ief32Y5YzDl_REBn|ir z?E634sGhVTM4SwQQ+Ik{2d^C8hw(7#LCR+7bG`s@N3k)93yu&eg2_?IyYPehE26jf zmugWVMv_}8#-|l$ANC=R+p0)D3n82Qs^RHH<1BEQ#vCWwjhRNnJehD zJeM1QXc9dV7GfwIZ1USZrPI_7hJL&xirLVtFD5tjE}#i;KK-DxVj#PceGX|1JJdNb zBgB*rDrVz4-st?FzB(WQ13&K32EzmW56W5j+g8&jO2X0Q z%18RmMqoHC@H|e(f2r+1m8OL5GVN-LBuMU}BGw1PsUsy+nCm?h`Hhct{jhE&_g15G zWvTxZ?edSQJmrmO4y-S{dqarmz8Z!_#*C2hPG&Z_PbcQzt1G?SkNZ?Vy6D)OSegj|MA&R z|0GF(i8J80xTU*R&v%;hyXs?O)Y1o6bc`jSh|VwgA4r~mvyKqYzKi%Dd;yT9@VM6M zY;$h3`^+*cP#9-;n&?T94K>SlN+x1 z8`Hl~R-VnlE07g{KxFEdpGkH7<_mC6W!OL|9PFO4*+l^OBDCb#;Ers)H2)s6@NG0R zCA3jrs0$uU1Txyww}IsF$9$HUFLxBs7GXmV8!Q^aINbv_O^DDKCpSd8{Ahjd2BFrW zHXG8q>>S%44ETFd?Dq&h01u0*$&*T@U-uuw#Ocy8>@cwlsxajC@&hg6R;Q984vjwS zP|J!%BW#V%zHRiTfiK-`{&3|QLC%*m$Wj)05ag*@IQOPo2lPgb zww~zUIcb|nAG$9d$rKL2k(CEyUrOG|pGRJLU1US}=@G8AQgw`h&b{>*zZ@xHA_N)> z6f+83kyc^um0dJJb^h$tNq*!{(yMv!@y(7HK1VIE`NQ5J{Vq|_!ioqcMH`x#4&2Gf z)z{}rVi1slwO#Y#HQyKTvpu5<$d|yk>DW`S`;N z8MT#|*an6KQnKHF5kd>B`A9LrSUZ#xP&JXEqj0U`sq+Kp5G?R*f$6z`n*P_gA_Wf! zfmafYZkDT0b!aMvjyP-J+>F(^iydIvh8N*cL~9l;TCXB-t^hN|c>e(&@)X3I{SlG8 zm)>!>|FA8&F?>3ns&z0;l$1(Pjid5?w2A8cni#;@*bm82?V5?QO$`y zEci`~2;X>BkE`7aoS1=~H!X2r){aa1L;=>peaEcp_Q#*o-dsc;xM*-?Ooz-c+&zs@ zfEA_FU7pQ~`kB3?1lUyT?sa=fNf=&puyVs3m9xJ6RNnEUGG(>d(SiL`rKGf#JV|Rm0sETNEV`M(%cg{i(lR zG@lEyT`>|r&HdF7zr;gwlh7VHfP|y9Z|fn7t#}nu@K0 zYY5d0krH&PE(RJuYo!~Zm`9PWQWjr_(j~;ML|fhdntxpMDpT~pC-n*eGqkPF<&u-6 z@?>2Ae0%@9Q;6}B9l|GoH+`)vmI3QX(A{g8uQ>Us_;4ASJaanwxtNOsK-#`{w>WfG zmWLd9TzKiv;gmz(w%5B@iH@)5sK5duV*H{P_6Nn7Z}iAlBS9=NSS&%UjQGkZIpS!a z^JH6|y$GXDvgn-WrS~0}cPfMFtR8|QW!3c{_3Ei(F>g6>CD_IMM6KV=X&lI7yU4SJ zeA=8K0l)vj<0u-{7d*YOA-FIRe8DYv?J|*M_tGDHHTo-sCsDX#ba=3i$tqKIf9Scg z&9bY1=7`jjQ?0;)(!M%M*d@EMr1~CREuY6jf|N4Xos$>BTkc?F3lZ}F{O?R}|2Ya1 znfsLwzquvL;@Rhq%5>iB=5Dox7r&ZirebpbHq8THFkN=VNf?++iYToZ1AxWs^{eZzuN#$0T0>*#KDRA8J{!Ejk+?drM;Rv5|U0`x)9D z_zPtgivj`i@=g9hE~tKsW|$&-|FU`~Rk+Zdelrk+uI{9%pCEJ6JE zn*aoTzfJDBh{j^!<}7Q8$@{`C@S(AJYc0F`VXI0^AYAig)|k44u9jKuW=7H}Zd%)G zz@(ur@;5*U2YmQ)m&Gy^ZOfiN?0ghKBQ|F(A}nke+K#_Vj{}+|pK_6PS7e?~X3v;= zn!4{L|DWNcLp)6L`mh~fMaB-I$V12(4dyn)?dw>sU&{=SD!aKkr&OV^r=J?=l)d|m zGMa3WV31E~oEv)-=2^~sk@VCuG58A?I7*VkF_Nt4>_ zC;K0d61K_t(kxiQ?6f?kesR~@BFT=|j8AL7e|SbIHS8=>Dg`E-`?7}(?ycYM7!r`Z zeHsbkb{g`(lu7z)Zw!(gH*QFCl!bQV=^*29N@?Mk_8~uD%^p?Gm;r%29%At9npwC1 zz+)9iPD__{<>uhs8F_;psh)qSp!OI+h|;uAAI@oWAcG){oXq8G#0UT#!r~Z3zSEEV zQ2Rln`rr)-NH$0(7R;wP<4j3B%$#A?l$khx?H6ie)%t^k{FtrLqSv!!`B#-mj+O_G zr>|&U!e(}viBG6^pU_bmqlRY^`*QXPK~ubJa#qny-pi+$NIQ2{T%ZNVdH#_49`3=! zSC}chP*Qyj-k0D#bxBLr+|M9wOJ7)bIq1VwUzs90zpLVX%33$U%98!Ha?Fm;aNq81 z*k=VRQVSi#18L;&UXvQkpZ%C^imDxRHR-hb1i9eLXx#JScw^&|F?z5{xbQH z*Xn!`Oy){S5)%DLp#vVS$Lq5_g^lK%U=jfa@4gOQR00V5ZaNmTt3H zY$y&NapNp>>`(9oOh^n>mAcd0cj$2Pv;G z%*Jvw5s=@~z)DzdEk~FD#FM{v3|}W_=}0)x zW?N2^e1T)`@lLJ0y%kUX1)8cL<^4$>Z#eyTWSg4V0}mR`-}Xfy?*ji}=x~MGz73UL zxEzzsiW-4S_?ilsR7t*Bm6&!J(7_zTRSMJ-$c0C$3B0@ojs0UY7E`U zh=Vm3l>3$&)*g<+bGgk^uM=F54@3mGS4!fATN>cEeVfwxb53+#|0n5xaC&jCn;+=| z7fh*pBF)y3eJGJZap{^}I;=DoWm0rPkM|LLYmHW22gazf0>JLfh>g8O$B8CcJFFd0 z`9Z1rAhjhlgUpL}Ps}$K{zN|M3A#3~(DZb>M3xTodPC-{ZS#4=mUYR=LdI}TOOpt*2KD{NVPF&nt80K24DAqjVu#IUh4!>ZGO>UN0FW37 zPo-akkW@l-Tv9(>z;^L+27(n8Nb0CDi-7#Bua4mL681I%yY=>Q)uEic{7LN8sB;hs zPncM`F0w3k#DsVHOP|VVy^rpk4h7mRW%C;1<*|KW5vOI0~%h53Gxt9y{o`%OjcxX4j#k z(T);$T&F|)ma_!c(O4XBE;W}OV}6-(hZkQZ;{iHI5YFT&&AR*Y?Oyv8s~P>ur}tG8 zKg6DtzLa|U1oW)RqaIt(k?8By+PxQVz2Jcit;+EPA%j3KeLuH^JA1(0WP zqFdi?&T2M#)u5&{q$$5vUD2S_SU`4tiPd3CC}4-E8i8hDE2tGcT#I*(bJf*Y}^Zu)$>CeK0 zWiYFIJxOR?5-AV$#W68LU}vR=E%dNlS4^p27>07w@*^n1^Y3?KRoX!3E!9aKd*VlW z_ZluVvwckCRmxK{WDp6GAU{kqxhv~UhB&l}9F_f*KpSArH1LStzl&P(A&v)e{X|D& zxYwUI24U+*^)Gh%mK~&#H#OBrcYZL%8Tz=HB?0uV8}>91FcyBOIiTDsDr0q544u71 zipZaJ#Bkqh#qZjJP9{yi$f{h4447mp^V0qgDWE`p;`r-P@u{cOH4zR7#7M8AHaIr8 zH)xm7HP%S27$&5phNeKJi*d?0`h2~DM-VMhPyPLWb z*CihIA_G4^D6R)&Or1}o=dOtz;~8SD3v-)aXGp4nJrLRRywd7iicda>#97o$TFlsi zn1Nk=j)SnU(~u_jE)wUKALJ(Ul+O$fAU$*DH0AMqg@19C+(<|Yy6U1fV$%1M(B{tH zv>toYglKLZF9-Ppa=HI@*#j-yip@|QD`wJrkOY$$%2#J#LrCOXZgkiRo}$GW54Rqz z!{7pFcxS)+&3Qjelst&gL%=L>V0)BW{bGTRCEAna%IaOc=*>RFCp$EGeuh`wbd$OO zGpJ%pwe*85YQ%s*w3rFsi}wfWgxGX_U>-#mKQ*pw?D_J6#B~ zW_fV*IRp7OnZ3<>L*FuF^s^f9V0dkuQ%n->0&>W^KESa$L>nKgm6)@q6`m&i0OPB7 zxx}2#e<>Yw<>JdwJa!fz)h*24{=n#(g8+V|*EmmzkwI5Xn8C7~0S_BNI41o_f6`P5 zw6NK~UV67A?uRbhSdk*)o6Y#gt8H{_FcRoX9gn_X$pUpKa#YQkDlBnBGD-BhFY0wi z519@d{C4A*`%88yvcxF1$VIxs6Ml*d*jOg=Nwsg4Yl8K9KBM_EbI&k3HBxMkps+kF zcl(3p@{32pFmDv^#Lj?m2YlfvT6L3|XfELkNK1QEqHtteh?(;(ImL=%J@d>5t3bJt zxAuLA@jraEd_hZ-&AARzDJh)Pg1PYv-H;7EA|{GR*DzVzAL;rfZ}&1o%*4BK0a~hd z7-nW)&2R`x-_&7;Knb;sEYAw}bM(-m4vxBN8FUseaZ&*OFh`&JCZ;1}NM+Eh-h1M- zFwm(a1qTp_7?NlS6X6*tL;>)|CRt~H5ocfuxoXlQO0NfDyG%b|I@Mts-@j0AqlWYw zfuV2gk8?p5x3sQ%JOx3TP?R@Zsw|TQBHn<8qUVpQ&WX{;-4Q|rEH9n;u*SqK3F#Or zEWBSXfj-t8k*})#xk!VruRH7&MwH*)a=3;)tRv(bH_IBpIH5gK8w*{e7V&?= z3zK8xC#(I>Ba-Tp2l_=UNS*E;=8c>Q)`|JfZ02k+I^;e&ep<^Sk7a>^6X@L%1+)My z8}_tQg74|MfUV9(MNS^!e({i6lv<3@ zS?p9fHKwvqV95zh#-58+zM(ZK^7{mFvoiL(Wi^19J}l(EeG7_wM9N_J%k6Ejt(&uC zAJ5oqokfO-%)@tHRq8(m`QSK+t6W*1kURuUDj0x%=N`G@kB$NUV5}};FN)qRgBAgC zdFT=F&W84>1dVx6)>-R_DRy4QKuOdzDPlPZIIp`}_}%d$B;hSw_<37H@k% zKx9EI;bjV$1V18;ry23?pBBm=ydvUuv}Vijz6))*`vt3xLIK~E8N-qq|<1@)l4 zUk~1`xhdYJ6q!hKJD-If1;p_@VQ;KuM?V9;X4~st&7GccguU|r$xRL0oq`G`&udte z=h+_f6>D@F1@@=E7psncS6?9Dx)dEsH*3;6&(T6EOZv!_3|?`{+^~51UW5X`wOL!J zGZep&n42;D)8OOhh_B+@+kQ!_iO^2w4X|$GXSiv2R+*=3k-)#n8}@q3@a6$N(nXg& z5P#2-210r0&WZJoA4`u=B2-p$pmik@Qk&X_3m}j=II-ctno)kS^-One4_>5e%wU~) zSUWc|l?U?6OtPDuI^}z)&GjFLQB^lI!KCpbY`xTbJeJ)5xDI8N!ZMk3$KaF*>G6F$ znB}lG7UK`5WB&;9mN*d~MC{HnZ|Ckleo+ldVo99BW$F$ajQj%iH`|{FemfaeKH^)G zc83DEZJ6HRd6^SCBh-}+p%pN#_-<8d*#+T5hrQ%1?TSo zh|SPA<(qSg3+|38&v9fjj(QP=R>rMV8ZR62KZcrX7pLB6+^u}{RFd2C^Q?J+D>1?z zIg91g!=uyx<{6}aK=U&W$%1jXyh=3KiVLKak6quV&@N^~rc^i2raSMN><)+ZF~!JR zUo`3q0mwQ%PG^7BM&ZGR?oqri73A&|f&L?Ole0Om2IWgI5Knzuz4fYq6By>w1;x2a zdCO0r2$K)_5j`8|phiq+>UPHM+kw6ie|BFK)7oV4mk4yS*KXKVT=xY7sBg5LdCb`2 zgD{ZMgE@Eh&T|7hDsU{#(a+y8-lrt!9`=N3cxac+-ifac)tI*+k%CE>2I9k5vCgrr zmlYptqZ1r4CkECO<_ZD54@t5^>##So8ct)y1z-@M>7)2yfnILTA785&;ab z{pmiFprY_{+5@Qg(E0DH6J~PkgI6rVe6|0Kn8*6AWS1^V0cHT=5Aya!{+65?R7Z~G z03%ZAi0h|YO4~NyQnP8JvMywEE}gL)kU~X5|6$%j&H0z_3TRk2vcjDwDW?N1Y#*s2 zgMI_QXcEyEfn=^(5AFNt)=PiW9CSkou(RbV6IW0h^kAm_$B#EBg=7AgiW=X@9R=So z1M2tmSoC6ikdIQY(d4P^CdXH*JJu?I*X zIb&noXmW@iThaEJ;G^U2M3QsNM_!xP1-if&Y{1EPRZu=jSQE*M9;U6ljeg4t8j+E7 zy`zNSgQVZFNPgZ%wuNjg4(#np16Bpk+TT$io4VZ^*YkM$iW*`+H=hml1)m=X446M( zU1S@j_unLHph7YyTU_h510+H3WX^VQT+m5(2JB|)vr{cKSryP3zFN3m{{rKB7Lllu zn3r{ZSLnb>RM(H)my8y5u#qk^CnB_sXnRm6g6?~}<|M@d@x8vE>F5&8+)f0;eAdk0 ztCr)|WXL&&?_nMEbUOeN-IxbF+LrAE;K<`t_9<>y%0v@*wf;nP_^|Abzq~8x{MG?4 z#xL2~Bd*B2tAGoZR4lVs4LY|s3M-EK=)n{Abt)<9(5~?(d8+V_le6(Ni1aj$lLL_vB6gNl*NvNB2E_+^~4d=TD^9Ek#tY~;ty{0sZ2bZnqCp^Z&e`=nIie(M)J+ZiYV$2ZES zr4d3V{_;WpM`Z+(O(&YAFOSH(3@IPU&Z2SRR13Fj!R0^CFHQ&W7;>`caGLN2Pz->W z;mXL;)01i`=rd?h51A>yt6fk5wpMU>3)f=Y`b47{A8yk}Oum;?z7|r&#d2W;XBR}B zGbqSJ;OXWo3DA-eIwhcis4l0?iWq{E`eAwt0xvN+kv`=(F(o6mXmb?iLZ2r3OUC5W zN<4F?gbpvpJB3^FiI)^sT}N&~%hKBiwx%=jvz`lSKC{a!c2?$(XNiGqe6an!; zuZClMGkd;34L@i8sypJr(RF<)COF)ex5q!A^RYk@oik6$s@nlXjXJMLGyBxo3_`DB zgff!Z)2{Ux5U3xXA@QO6MSwZ_8As@%^J;C1gXPdVY~0lOMPnT2*4uBwGRnx*KBZ2t z*};n3iO3S~G8Z|Djov&j-$d!&-g`ipuC8-%RflK=`Dm7F$Z)Y&MKOH4{!9!h4Uujt zs@7M5;;}80i1CsG&uJR3>H(wd88U455k*4DjJGRh)j0watrcyAlqlTo~ z3XViwOTzd_fry=Zye+>R=SY5(xDo2JkRZ7Wwf-{BES~aQXy2}Gsl;bK3589D4{Yc| z;eOk_vxpGB1+CX$%ZoDr|7U|^xYWxHNje2~*VTPr>2Ad!Aj3Ly4^qTf8k9iDpc7~O zBWB4CG=bZR3=^S!OC{uhAQm3lcq3+KQs~PmcPhyFW>Rzbj9k1YnxG zUmPhw{*&&**7Lt-ywZ_)CWwv@S8u#Hs64a7^t<-71M!k^)k_e6EMnry2i)n3?fTPo zgXiJ!U)SC4PsZq7RERw6ulP$4bxuMm$kgfiQ>J@%W(g2roMr9Ir-d|iI+LkPTr%ts zJ0l?(|6k(c8j~G)61N832MbKy3BM~AfilxqBjueDg$xu@rpxij)3Gh`$eF%jFaT%H zD1l(%@>!>Z&7q9Lezo%~oFQa8epRnUW8*jxubckvW2UYoPRbpWE>ggsO(1z(}ms)#ZGA@65&Mw?jlu30oDYb{T#t&xj~_-Xq&})51q{ z-;m}ot5k-Re`a$~c`htvU}XFoq#Pq7-tc6ay#i$IM9~q}=Y^_Wj-w#oZ865vweja?izLL>{T0C(jAI{kqM@Q2BryB$fm3F z6%g7%DDEyjr_XKFv2nbRiOTSerK<(aH989unJJ-aVduBCKhAjA?{T;tTxR&|Z8nIo z_bl6wL+f>VE`b0I|GCi7v@6%>3gq&>WupxH>)xQ!J4^_;mtX_i%Zr$9ZdkDWU&gJ! z{*neqE`sAqy!X|GgzaGpm#%W_@izsCnxMJ8jT>a_5>Ad;sT$QC?lF~|Fk&`7dDBcd zQ@J8oPmb0pG_5^FEZVSDl@~sa+p$4dQm>>iZou(D=zsHn5WmqqH9M@ ziTV2_2J(d@gq3Hem2m&k6cz>^{|oX#ZmeV0rvot($TaT4$-p%r3pt}%&YGm^!O#XE znPvu@?RU8OAz{~LMR$(=VEhLoGJ~x#>Be;j4KU9Bj^E?I9@>nLy%sX+cqBQlHnc9gS`Ke8hfyNOi^6;NC;^@Ma8Sn&M5z*gayz7OfI%3sf`!tXMx5 zh%B)l`w~(j@>P);!V>qz2CdCuo$hU~lYU(?k{jFYeC*#xB2|*j*b&be{g_(!h4ob=KvyXoh_amPQbp+SeFi*(-Q;YC~E1&(C&)6(;Ia z1gU@%SQzWMQ8W+Sjzf2{%{=ir$W--{ql>_VzSGyC=sKIIijkS~Yma!27T4~dYFL=yyy)11s*41e~ z!NP2&8bI~yfyBGhUXiCq?0UKN|7b5tvrVK-@NoDU^5`k*oVXp~kms2__9c6w+3r@< z%I6g)ztPBSq;c1=%dCJnezw+8(L!~GUeh)H8?K(1s#v0<+N^X~f-CxM^gVh#MIUPt zT)6OOb*%@KFLM^(3w^K@yA=6qTfQJamT*KsN+xQ_`|{JzO@4;H{IAV5x8F7Ak|?R- zxj4QmqND6P*s@I4EPt+5&QAU+_=?N1%u5TSc$XW=nynNZJ0Vl{XAi5DmaUWg6Ta7d z5zK<$ZR2jOIH6ZroaMq(edJ8OEFS3i7d>i0-K(~5^6Oi+irDhIbOI+4gOrkQH4U-% zIIjD1SLI9*5lyPC*>fN>VvPs!)o?FWKC)`E`qbjKgtyc*?scsYnxL|U`nMQKyNx#w9+ z$Yo-AHD8;*kIZv7pB-#Jyv5d=p|C_esAeB7@QXgb@1$$zg7fyVZ{UNF5X@Zo7|OAc zP6YjrE^6P;u`lE;rqZzdvm5;ZKlufwhEJFoju>OZp?O{TOXZty{yjRrTY~xQfa%Zw zvK^(eK1`8GL{zM2$5it+Mug`<9)3dq*Ngy>+fAAr{z=2N$J)jZP)E_vG1X-JDt=C$$qoOvNUHUDvb6;eqV{7@|!6h8Z+`r=x8u(g%JsGR@iv#)hrX0P%mz6#%k8PnNdk|osnOC~oo`#( z(lR2?KRF*wdzGY8vS=oKzV0t)6a56EL8`c@g_u)f9q$~*U0v?ed*&o1$NICAI9pEN zgV%?|#_81N_&7bgl}iQ`be2A>rwmw@*sv_?k{FViw(a-m7uSdzQJ?)6?WD(=pDllI zH%;Y}>6TGpsmF?dYDD(TP?vG{B&)3M{6mz+wQm6;nGpt6mC34+FQOw7j6{AVCbgml za6XGoIc?k&WUJ2L{GONa>`eZRPl+CXsa#vO_N1XBE-R@t;4U^vm(=(s@KgkR)%+|3X-1Vh2cuv;gq z8he)N0b4r#aR7dc}^|8S1?yPTUcw#i)^|I7Lh9dC~w zn8`Y&zv(i_u497_M_;yO70XYuKPl@CigpW6B zLu-B<&1c+L-%bi;4vkoRaprbko#&-~tBP>eUq!M0CzJL^FBBHPd4v{N^>%PJpHPGx zEOOsitkkuj2%6>oWW9ctx!bPuddaxMi-dV^s>o;sZiSv^0;yoZD!hHR-J>P7_~wz0-+% z@eq&0&{~m&=L*%}16Akqf9X;$n=+jdidj|W-DP0nt9d9~Y|KI(dU19zX~4(UM@N&C zD*D||O?~{^x@qF0$=NsB3vDQh4R9xa$BuL~VA}O`>EL)0g zxDm&m(?=EB5@{8|)W(&^HPVPQE2aSYXR_bXLpvw)hRdU}-4D4{X&ts3AkH(sy4NzZ*zSH7iF8RG5j z!Q_g@aMVO>|FN&ph!%g+_v#7Z`&#ef$*TH(TKtT9*0h4G=69F8uI9II&pp=SRhBc( zvNd5EU-uv33|lN{k!t%EcQz==F8pt|&cCKf6Rvcm7b={3Goji(dkX#5l}YUp%GwpJefB)aPQyX6YbI9KKG-|dGz zJAam}LYVh4m2^HA4dKzem*|m{7%nHs^tjva+NmSiut@u zCx!X3RZ#fUm?eFoM*qT(?@Nv1-^qzyNiz8DT6p|4d$#%e%VJZ1&yh88$eq>WAGivK z_IIYgHxeFEcrMy@t_U$~KGGAAzU-d=*~&|wL4O*rdNGVsAm>9x@ElWI;4VI%vSz8T zdjG)pQop;zR7!L@qMzWMp#UuO%12K+O!#K=ga@=?8>8|;M(|DUr8878brg$HU?ui+1D|` zWT|PgCD|sjhq3R}U@RG=tl5`I$dauI$#|0`iAm@+wo%a=DWCp$zwdmV@2~IPKkjqy zJ~5*=l;%lo~J)0KPZ>FDfd__v3r7#ccK4=a8y(?mthG6t}1MZy%qNAM|pRK zc_Jhn)-I6D?p^P+^D{M7gUySZBh?_42Ss$xboe%i-@s84{8Z=yMk}9;3{C@2_0Q{? zXd1t>pS#&n1Oub^Aw&@qsMl)j1z1Khd^ZcokQ)bVy5cLx-DmcY+qEmUTap-l$mlLG znZ>+$X7$V+>@hrD`Gg(bOp=Yi*W66N9G7bU+~?p~1P`|7JpcD*0gjE6@8e(t19m5| z)10|2gc)iHsO~~)8{cB&bI+6eW=>6D-XhG9(L}%-Pz|r$U3yp`j4|B5Ts_|iE&sKcsqY3&KRpUC?t5enc>hNp*B z#n_Be%*L+fh*%efMqqrsJa_Q5uYyJ=&I-4MLr{+r2!_q~7vnbXG(M*BX4Gf>L86J2xv=eUoO6l&G)zY`me;KaNeOTDy5p)* z6r=r&pV9*JMGY$F8=}K&HQ`F<%dZ+_bCwIK(P+EtXp_8j7E=*%4IL$L5O!wVu(Yb?FUR zQPEu_C>K=JMiLWsfxM9mBfq?^{K6UV^9-dHAlDNS;Y4}9eLMWpIM}~IUm)9&6EliU z&Am1t79%GJb4?+?=$jTedJO*B0YZ|_yMqY@w@x6wgdjkW$2a*vY1<%ag$_`-lm;*z zX7!ArW|%*j^YWrF=jHyjuZ@8LIv~b|TH1q3jWa_FcFdgmN@*)YC*LuoOmqb;ULCy# z;gI*SsyXq(K>8vX#0@K3%?rVkXPrf1yb8mXwr~QvZzN*U14C*%9+i#g#JLJ~QUO%YHA=(s z$Byn?aB9?=;1lx2UMT^GGVjhiMl}|Gf7-5q$133y5}$|~a(ZBZ_h&{m=Lf6FJT-Oq z@0g2?$WI4HnM2fx$39>x>{3utD40j~GW?3!eyu~kJyhJPN2som1LN>0i278|oiNPW z!qUVwv|>MnN5zgB2_s3*f@UobWvu~4+yp_!u*;xy-!)v{hjJPvs<=`KeNDuBMOpC< zN@FMimW}x%HREpGhkP*?Zv2H&QVXGq#J$_;Ac;5fgt%*2#2J*R2ra%O?l8-13-15* z4x3l&sHgcxnO(Ka?|p?sTZNqSo4PH#m+6|P#^=!J>66bKD_8wHnzZ%GL=P|zZ8Pw* z$7N`1bc3o?*AqiyTC}f>$LJB|9v`oBR(pGU{J&L1BQ=Q&;)xr|?yo+Za zC=@+Fyw-nR{HT4&(ht!WSueX(8#&iw)JoZNa=U!2@pIrM=W>rYA*6!Y^a1g_{;Pjw(4$kRAd_l`DXr0YSu zNsj^WM-WpHRbs})Xpy-mcC0OP_pmb(eeb~k>Vw0FIZc0WVPtBfk0UaRuOB5|2uk;K zwJ7f`xK8#+O-SEOlDoLYU5*TD{WB;F^weKgTIp& zwljxAExUT7t#vHTm#$`=-5hHnWin}WrW5C6GnfX!T9j^Ny)0IsSJkwf9%7~wHB4VH zFRi&QULaZA%(XL5VXs*IW;5)igyOUkwJ=Z_!w4A%>W0VsDT5-O>9`l0U0u!g(@z`P zWFcwWUp{}-EqybHn%FkBr8jHSY%Bf)DEmhcHbxT)M%{i|1Vg_8)@N(z-cJZTPtY3> z<9IXmR{z*owQ+;lWQ})I4B=hT0zh5tTO5ac746UaeZ?B13^&cuP8sZBpAv6Z&xRMb zdi&r8A*)fl&UoUE9p|v1z1T_P329U(@1V?+78mn<6Opk1Vb2PoY^oHE&@u-}!DLNLPInHOjHHs&i<7yziU1psu9PX8Hgala(DU_TdCEp>HOm#ZFbf!92)DF%7C z;a!3Q-F!UUgZ%@;T@cDDD#{uvT8c*kLRnQs&BY_s!!H=_9u)dJROMb>e3%~q5Ff-3 zF!~4QXl;vYJu=|`f%12E4+#wP@N@V0UwFS$b^k!N#bqS_o4EVk$lt^GKS~w({|Rba UGzaIe8}_4V#sUCf$-j300s)j7=l}o! diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv deleted file mode 100644 index 48b3d2a..0000000 --- a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv +++ /dev/null @@ -1,2 +0,0 @@ -eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol -ioos_atn_38553,2011-06-18T03:00:00Z/2012-03-11T01:09:51Z,"MULTIPOINT (-163 66.64, -162.994 66.62, -163.014 66.617, -163.135 66.6, -163.123 66.601, -163.096 66.605, -163.083 66.625, -163.08 66.64, -163.001 66.662, -162.988 66.644, -163.001 66.644, -162.988 66.646, -162.978 66.665, -163.029 66.652, -163.01 66.629, -162.881 66.58, -162.937 66.537, -162.825 66.559, -162.824 66.548, -162.981 66.631, -162.983 66.639, -162.998 66.632, -162.947 66.583, -162.848 66.561, -162.942 66.603, -162.94 66.61, -163 66.597, -162.873 66.593, -162.829 66.527, -162.779 66.528, -162.656 66.505, -162.697 66.431, -162.769 66.457, -162.784 66.475, -162.779 66.501, -162.824 66.508, -162.924 66.56, -162.906 66.593, -162.942 66.603, -162.96 66.615, -162.957 66.614, -162.97 66.611, -162.933 66.609, -162.991 66.614, -163.019 66.625, -163.039 66.616, -163.005 66.626, -163.006 66.611, -162.988 66.621, -162.996 66.618, -162.991 66.634, -163.013 66.611, -162.962 66.612, -162.97 66.606, -162.981 66.628, -162.954 66.615, -162.949 66.611, -162.892 66.628, -162.903 66.625, -163.081 66.504, -163.059 66.527, -163.036 66.508, -163.019 66.518, -163.038 66.525, -163.048 66.532, -162.988 66.627, -163.002 66.634, -163.072 66.636, -163.082 66.631, -163.072 66.63, -163.059 66.617, -163.172 66.7, -163.152 66.74, -163.6 66.842, -163.624 66.86, -163.661 66.861, -163.65 66.937, -163.93 66.988, -164.349 67.031, -164.584 67.042, -165.046 67.083, -165.827 67.429, -165.951 67.524, -166.001 67.563, -166.067 67.594, -166.111 67.624, -166.456 67.724, -166.485 67.726, -166.589 67.754, -166.746 67.83, -167.802 68.531, -167.901 68.614, -167.235 68.814, -167.21 68.799, -166.734 68.875, -166.703 68.88, -166.442 69.014, -165.98 69.275, -165.986 69.283, -165.892 69.309, -165.82 69.322, -165.812 69.32, -165.751 69.341, -165.787 69.346, -165.385 69.399, -165.368 69.416, -165.219 69.43, -165.189 69.436, -164.969 69.543, -164.92 69.629, -164.257 69.682, -163.637 69.818, -163.632 69.824, -163.637 69.835, -163.663 69.83, -163.604 69.85, -163.621 69.834, -163.666 69.825, -163.661 69.836, -163.643 69.857, -163.635 69.849, -163.63 69.858, -163.589 69.867, -163.604 69.87, -163.589 69.875, -163.606 69.857, -163.596 69.863, -163.605 69.858, -163.571 69.869, -163.599 69.874, -163.526 69.768, -163.568 69.779, -163.647 69.816, -163.673 69.827, -163.654 69.831, -163.61 69.85, -163.61 69.867, -163.098 70.028, -163.085 70.03, -162.602 70.184, -161.647 70.381, -161.378 70.453, -161.425 70.456, -161.502 70.42, -161.553 70.445, -161.522 70.415, -161.58 70.4, -161.573 70.403, -161.595 70.409, -161.614 70.396, -161.632 70.398, -161.67 70.386, -161.767 70.405, -161.77 70.407, -162.431 70.349, -162.562 70.311, -162.621 70.287, -162.645 70.275, -162.748 70.234, -162.93 70.114, -162.963 70.084, -163.008 70.07, -162.965 70.08, -162.938 70.082, -162.982 70.082, -162.968 70.086, -163.647 69.829, -163.702 69.814, -163.661 69.822, -163.712 69.842, -163.711 69.757, -163.72 69.756, -163.631 69.734, -163.638 69.748, -163.615 69.755, -163.609 69.755, -163.605 69.761, -163.638 69.711, -163.611 69.706, -163.635 69.706, -163.644 69.693, -163.754 69.68, -163.905 69.691, -163.947 69.667, -163.917 69.628, -163.877 69.6, -163.875 69.6, -163.968 69.605, -163.757 69.613, -163.881 69.688, -163.9 69.7, -163.899 69.696, -163.935 69.728, -163.942 69.748, -163.677 69.72, -163.677 69.717, -163.628 69.749, -163.585 69.78, -163.644 69.774, -163.644 69.767, -163.66 69.756, -163.556 69.766, -163.596 69.775, -163.629 69.785, -163.651 69.8, -163.654 69.798, -163.651 69.802, -163.655 69.83, -163.668 69.801, -163.599 69.744, -163.643 69.735, -163.638 69.736, -163.52 69.729, -163.641 69.696, -163.644 69.702, -163.622 69.679, -163.628 69.669, -163.626 69.669, -163.615 69.668, -163.649 69.666, -163.635 69.669, -163.672 69.655, -163.688 69.656, -163.625 69.667, -163.638 69.665, -163.67 69.668, -163.642 69.669, -163.642 69.664, -163.64 69.67, -163.739 69.672, -163.646 69.678, -163.631 69.68, -163.628 69.656, -163.67 69.675, -163.653 69.675, -163.667 69.663, -163.686 69.67, -163.647 69.675, -163.672 69.685, -163.678 69.685, -163.663 69.685, -163.637 69.688, -163.647 69.694, -163.59 69.699, -163.633 69.697, -163.637 69.676, -163.666 69.69, -163.66 69.687, -163.666 69.668, -163.61 69.658, -163.603 69.659, -163.568 69.653, -163.565 69.65, -163.567 69.644, -163.652 69.741, -163.653 69.731, -163.651 69.732, -163.653 69.737, -163.635 69.743, -163.625 69.747, -163.619 69.741, -163.635 69.732, -163.7 69.724, -163.643 69.732, -163.641 69.732, -163.65 69.725, -163.639 69.706, -163.645 69.704, -163.656 69.7, -163.64 69.698, -163.663 69.698, -163.677 69.678, -163.668 69.708, -163.665 69.707, -163.665 69.72, -163.714 69.721, -163.711 69.725, -163.622 69.711, -163.642 69.699, -163.821 69.642, -163.686 69.686, -163.689 69.684, -163.684 69.684, -163.643 69.69, -163.672 69.689, -163.629 69.689, -163.65 69.689, -163.66 69.681, -163.691 69.686, -163.653 69.69, -163.676 69.689, -163.633 69.697, -163.672 69.68, -163.717 69.671, -163.696 69.668, -163.661 69.674, -163.652 69.693, -163.658 69.681, -163.689 69.686, -163.654 69.694, -163.638 69.691, -163.644 69.634, -163.694 69.659, -163.706 69.644, -163.754 69.677, -163.689 69.696, -163.68 69.701, -163.669 69.711, -163.655 69.712, -163.656 69.688, -163.663 69.689, -163.693 69.692, -163.665 69.689, -163.669 69.678, -163.66 69.674, -163.675 69.686, -163.643 69.676, -163.653 69.665, -163.66 69.662, -163.832 69.671, -163.833 69.714, -163.824 69.712, -163.819 69.711, -163.811 69.713, -163.817 69.71, -163.665 69.641, -163.7 69.64, -163.712 69.638, -163.663 69.675, -163.678 69.681, -163.692 69.68, -163.677 69.736, -163.685 69.746, -163.7 69.751, -163.624 69.758, -163.681 69.689, -163.715 69.692, -163.698 69.676, -163.696 69.678, -163.701 69.685, -163.695 69.677, -163.694 69.688, -163.712 69.685, -163.687 69.689, -163.709 69.684, -163.642 69.666, -163.65 69.669, -163.691 69.682, -163.672 69.682, -163.668 69.693, -163.708 69.688, -163.726 69.682, -163.694 69.684, -163.669 69.687, -163.662 69.696, -163.662 69.686, -163.673 69.685, -163.683 69.682, -163.68 69.683, -163.687 69.682, -163.705 69.668, -163.699 69.68, -163.69 69.68, -163.657 69.691, -163.63 69.687, -163.632 69.693, -163.638 69.691, -163.682 69.704, -163.688 69.698, -163.666 69.688, -163.687 69.68, -163.696 69.683, -163.693 69.678, -163.704 69.686, -163.704 69.676, -163.664 69.682, -163.691 69.684, -163.673 69.666, -163.699 69.683, -163.702 69.687, -163.691 69.677, -163.694 69.697, -163.72 69.682, -163.755 69.674, -163.757 69.683, -163.75 69.816, -163.715 69.678, -163.862 69.693, -163.856 69.698, -163.857 69.692, -163.865 69.691, -164.088 69.688, -164.081 69.69, -164.09 69.686, -164.094 69.691, -164.073 69.694, -164.087 69.632, -164.105 69.635, -164.094 69.633, -164.14 69.637, -164.132 69.63, -164.153 69.61, -164.134 69.607, -164.151 69.603, -164.163 69.596, -164.2 69.597, -164.211 69.594, -164.168 69.602, -164.16 69.608, -164.178 69.605, -163.734 69.749, -163.736 69.752, -163.138 70.054, -163.173 70.041, -163.18 70.038, -162.403 70.169, -161.314 70.423, -161.298 70.43, -161.263 70.438, -161.012 70.454, -160.972 70.456, -158.767 70.965, -157.374 71.244, -157.235 71.228, -156.734 71.43, -156.446 71.46, -156.283 71.478, -154.494 71.198, -154.595 71.122, -154.668 71.055, -154.613 71.05, -154.597 71.066, -154.575 71.094, -156.058 71.356, -156.197 71.355, -156.556 71.414, -156.625 71.406, -156.842 71.383, -157.014 71.358, -157.451 71.25, -157.974 71.162, -158.309 71.154, -158.298 71.154, -158.324 71.148, -158.292 71.15, -158.234 71.156, -158.281 71.165, -158.25 71.165, -158.327 71.155, -158.324 71.151, -158.329 71.157, -158.325 71.17, -158.568 71.1, -158.342 71.152, -162.084 70.489, -162.198 70.501, -162.447 70.493, -162.583 70.501, -162.61 70.503, -163.578 70.299, -163.614 70.302, -163.624 70.287, -163.644 70.284, -163.66 70.278, -163.72 70.265, -164.038 70.241, -164.12 70.205, -164.113 70.205, -164.113 70.193, -164.093 70.19, -164.112 70.189, -164.142 70.178, -164.149 70.175, -164.156 70.171, -164.174 70.168, -164.25 70.133, -164.239 70.122, -164.237 70.127, -164.248 70.125, -164.223 70.125, -164.254 70.093, -164.312 70.098, -164.315 70.081, -164.344 70.065, -164.341 70.071, -164.452 70.068, -164.392 70.068, -164.273 70.099, -164.249 70.108, -164.245 70.103, -164.226 70.109, -164.234 70.116, -164.269 70.1, -164.296 70.085, -164.292 70.09, -164.246 70.093, -164.29 70.102, -164.272 70.078, -164.225 70.214, -164.141 70.243, -164.047 70.246, -164.01 70.257, -164.241 70.152, -164.271 70.106, -164.335 70.058, -164.316 70.049, -164.411 70.022, -164.403 70.025, -164.417 70.025, -164.673 69.916, -164.822 69.875, -164.838 69.874, -164.859 69.871, -164.879 69.864, -164.503 70.011, -164.472 70.005, -164.462 70.015, -164.46 70.025, -164.47 70.035, -164.506 70.04, -164.547 70.042, -163.699 69.87, -162.371 70.231, -162.31 70.228, -162.167 70.245, -162.141 70.484, -162.1 70.461, -162.459 70.499, -162.627 70.503, -162.639 70.512, -162.755 70.513, -162.811 70.516, -163.676 70.451, -163.844 70.433, -164.024 70.374, -164.042 70.354, -164.066 70.345, -164.034 70.322, -164.118 70.285, -164.145 70.289, -164.256 70.22, -164.33 70.067, -164.356 70.066, -164.367 70.052, -164.399 70.031, -164.41 70.02, -164.437 70.074, -164.378 70.051, -164.377 70.041, -164.351 70.048, -164.746 69.979, -164.814 69.968, -164.881 69.942, -164.982 69.93, -165.292 69.869, -165.476 69.895, -165.509 69.903, -165.546 69.912, -165.683 69.995, -165.735 70.005, -165.849 70.009, -165.922 70.012, -165.914 70.025, -165.887 70.028, -165.863 70.035, -166.043 69.941, -165.936 69.867, -165.926 69.847, -165.808 69.651, -165.873 69.622, -165.888 69.601, -165.878 69.487, -165.798 69.351, -165.818 69.328, -165.773 69.279, -165.773 69.272, -165.597 68.941, -165.539 68.898, -165.455 68.866, -165.315 68.863, -165.252 68.871, -165.134 68.884, -165.248 68.885, -165.231 68.893, -167.053 68.395, -167.165 68.392, -167.24 68.385, -167.28 68.377, -167.368 68.342, -167.409 68.318, -167.398 68.309, -167.434 68.318, -167.446 68.339, -167.464 68.37, -167.661 68.15, -167.701 68.076, -167.716 68.064, -167.876 67.946, -167.853 67.909, -167.755 67.855, -167.331 67.717, -167.298 67.728, -167.307 67.724, -167.295 67.732, -167.266 67.745, -166.433 67.601, -166.32 67.551, -165.916 67.3, -165.901 67.154, -165.865 67.12, -165.825 67.106, -165.857 67.096, -165.918 67.072, -165.878 67.082, -166.069 67.135, -166.061 67.149, -166.179 67.179, -166.165 67.183, -166.187 67.195, -166.406 67.244, -166.518 67.252, -166.601 67.239, -166.684 67.243, -167.062 67.167, -167.053 67.161, -167.43 67.255, -167.424 67.281, -167.414 67.316, -167.342 67.423, -167.288 67.456, -166.994 67.689, -167.015 67.702, -167.074 67.855, -167.03 67.877, -167.031 67.911, -167.119 67.893, -167.119 67.903, -167.259 67.942, -167.312 67.958, -167.409 67.955, -167.426 67.958, -167.466 67.979, -167.502 67.951, -167.637 67.974, -167.96 68.211, -167.786 68.267, -167.787 68.278, -167.266 68.562, -167.233 68.553, -167.248 68.554, -167.223 68.544, -167.216 68.552, -167.183 68.545, -167.169 68.564, -167.183 68.558, -167.189 68.557, -167.205 68.553, -167.165 68.556, -167.168 68.547, -167.157 68.55, -167.17 68.552, -167.164 68.552, -167.182 68.555, -167.17 68.561, -167.168 68.564, -167.163 68.567, -167.167 68.557, -167.167 68.558, -167.183 68.543, -167.168 68.537, -167.177 68.531, -167.164 68.531, -167.166 68.563, -167.192 68.548, -167.15 68.544, -167.124 68.541, -167.121 68.535, -167.092 68.519, -167.085 68.523, -167.113 68.512, -167.173 68.555, -167.128 68.559, -167.085 68.557, -167.053 68.55, -167.032 68.533, -167.043 68.534, -167.005 68.506, -166.997 68.515, -166.918 68.518, -166.944 68.505, -166.966 68.502, -166.984 68.495, -166.981 68.492, -166.961 68.502, -166.98 68.505, -167.02 68.5, -167.012 68.506, -167.02 68.507, -166.995 68.512, -167.033 68.489, -167.005 68.508, -167.008 68.532, -167.044 68.527, -167.081 68.522, -167.079 68.525, -167.1 68.545, -167.104 68.543, -167.038 68.531, -167.062 68.528, -167.067 68.529, -167.007 68.527, -166.992 68.54, -167.09 68.542, -167.09 68.54, -167.11 68.538, -167.121 68.537, -167.1 68.54, -167.17 68.522, -167.129 68.536, -167.09 68.534, -166.956 68.637, -167.23 68.545, -167.132 68.538, -167.12 68.545, -167.117 68.542, -167.014 68.524, -167.011 68.516, -167.021 68.511, -167.051 68.53, -166.975 68.526, -166.825 68.527, -166.84 68.532, -166.756 68.562, -166.796 68.584, -166.818 68.594, -167.153 68.513, -167.117 68.512, -167.127 68.517, -167.134 68.507, -167.133 68.508, -167.134 68.509, -167.098 68.494, -167.087 68.497, -167.068 68.496, -167.035 68.513, -167.033 68.51, -167.034 68.502, -167.048 68.506, -167.038 68.493, -167.019 68.495, -167.044 68.482, -166.97 68.492, -167.061 68.496, -167.123 68.446, -167.107 68.465, -167.125 68.485, -167.114 68.486, -167.044 68.499, -166.996 68.505, -167.049 68.546, -167.094 68.493, -167.147 68.48, -167.149 68.482, -167.194 68.473, -167.002 68.424, -166.996 68.423, -167.001 68.425, -166.999 68.432, -166.978 68.432, -166.982 68.424, -167.013 68.299, -167.002 68.286, -166.997 68.278, -166.978 68.264, -166.962 68.245, -166.956 68.236, -166.716 68.224, -166.719 68.228, -166.718 68.233, -166.729 68.243, -166.729 68.248, -166.738 68.258, -166.799 68.306, -166.962 68.384, -166.985 68.391, -167.145 68.496, -167.103 68.53, -167.099 68.534, -167.109 68.539, -167.116 68.535, -167.122 68.536, -167.133 68.539, -167.135 68.539, -167.137 68.479, -167.152 68.474, -167.174 68.468, -167.182 68.457, -167.199 68.449, -167.208 68.441, -167.228 68.429, -167.554 68.16, -167.544 68.139, -167.508 68.069, -167.502 68.074, -167.492 68.052, -167.473 68.041, -167.48 68.032, -167.199 67.684, -167.284 67.427, -167.285 67.366, -167.287 67.339, -167.791 67.016, -168.194 66.906, -168.234 66.896, -168.639 66.766, -168.85 66.653, -168.853 66.6, -168.81 66.566, -168.538 66.385, -168.447 66.374, -168.433 66.366, -168.025 66.018, -168.514 65.697, -168.587 65.456, -168.672 65.406, -168.681 65.381, -168.662 65.358, -168.655 65.295, -168.632 65.263, -168.572 65.179, -168.665 65.063, -168.737 65.025, -168.73 65.006, -168.753 64.98, -168.755 64.965, -168.747 64.918, -168.758 64.739, -168.742 64.732, -168.732 64.695, -168.624 64.626, -168.394 64.443, -168.43 64.302, -168.447 64.227, -168.459 64.196, -168.481 64.17, -168.476 64.073, -168.463 64.044, -168.495 64.035, -168.469 64.005, -168.568 63.893, -168.708 63.714, -168.682 63.643, -168.513 63.552, -168.487 63.519, -168.373 63.38, -168.261 63.179, -168.433 63.044, -168.509 62.941, -168.526 62.919, -168.758 62.886, -168.823 62.855, -169.054 62.793, -169.059 62.792, -170.217 62.72, -170.227 62.722, -170.219 62.718, -170.236 62.704, -170.254 62.685, -170.344 62.684, -170.008 62.475, -169.978 62.449, -169.975 62.452, -169.869 62.461, -169.892 62.462, -169.864 62.471, -169.844 62.477, -169.86 62.519, -169.859 62.513, -169.832 62.499, -169.821 62.479, -170.279 62.354, -170.292 62.351, -170.344 62.349, -170.365 62.372, -170.518 62.565, -170.512 62.578, -170.508 62.605, -170.493 62.628, -170.441 62.668, -170.406 62.737, -170.392 62.75, -170.382 62.792, -170.236 62.87, -170.221 62.872, -170.227 62.869, -170.187 62.835, -170.183 62.869, -170.098 62.882, -169.746 62.835, -169.534 62.804, -169.45 62.799, -169.417 62.815, -169.227 62.838, -169.122 62.868, -168.79 62.882, -168.76 62.878, -168.747 62.879, -168.702 62.894, -168.675 62.902, -168.626 62.926, -168.481 62.881, -168.522 62.847, -168.406 62.782, -168.399 62.788, -168.416 62.788, -168.267 62.791, -168.26 62.77, -168.234 62.773, -168.199 62.758, -168.224 62.753, -168.178 62.798, -168.2 62.795, -168.168 62.806, -168.169 62.804, -168.573 62.669, -168.605 62.654, -168.846 62.506, -168.853 62.471, -168.87 62.468, -169.198 62.326, -169.578 62.316, -169.708 62.311, -169.742 62.314, -169.767 62.307, -169.914 62.254, -170.194 62.205, -170.292 62.245, -170.34 62.309, -170.37 62.332, -170.403 62.351, -170.479 62.398, -170.483 62.395, -170.496 62.398, -170.669 62.437, -170.797 62.519, -170.747 62.522, -170.75 62.522, -170.79 62.438, -170.784 62.436, -170.799 62.428, -170.803 62.429, -170.816 62.435, -170.777 62.52, -170.777 62.525, -170.766 62.535, -170.732 62.537, -170.712 62.531, -170.702 62.529, -170.667 62.526, -170.632 62.482, -170.78 62.41, -170.773 62.405, -170.807 62.309, -170.905 62.274, -171.095 62.232, -171.159 62.198, -171.209 62.17, -171.287 62.11, -171.594 61.942, -171.625 61.912, -171.144 61.638, -171.054 61.515, -171.266 61.414, -171.259 61.386, -171.254 61.346, -171.634 61.145, -171.664 61.141, -171.847 60.937, -171.842 60.725, -171.711 60.671, -171.684 60.702, -171.778 60.719, -171.793 60.763, -171.672 61.111, -171.621 61.136, -171.65 61.139, -171.722 61.154, -171.929 61.156, -171.906 61.181, -171.99 61.118, -172.037 61.106, -172.172 61.099, -172.133 61.071, -172.135 61.078, -172.164 61.064, -172.135 61.068, -172.176 61.051, -172.225 61.067, -172.437 61.022, -172.58 60.938, -172.545 60.951, -172.543 60.949, -172.556 60.95, -172.435 61.007, -172.453 60.996, -172.407 60.931, -172.307 60.886, -172.101 60.756, -171.9 60.768, -171.917 60.78, -171.661 60.749, -171.519 60.749, -171.464 60.77, -171.522 60.776, -171.439 60.805, -171.494 60.775, -171.524 60.766, -171.48 60.762, -172.201 61.009, -172.133 61.001, -172 60.912, -172.031 60.878, -172.019 60.886, -172.022 60.887, -172.085 60.9, -172.018 60.86, -172.032 60.865, -172.039 60.852, -172.038 60.848, -171.873 60.953, -171.773 60.945, -171.968 61.006, -171.998 61.024, -172.056 61.064, -172.363 61.087, -172.368 61.054, -172.368 61.084, -172.485 61.232, -172.514 61.201, -172.529 61.191, -172.534 61.185, -172.57 61.186, -172.573 61.186, -172.576 61.19, -172.27 61.253, -172.26 61.255, -172.276 61.242, -172.283 61.248, -172.316 61.246, -172.34 61.25, -172.294 61.265, -172.304 61.261, -172.274 61.259, -172.387 61.221, -172.482 61.227, -172.728 60.996, -172.732 61.012, -172.874 60.975, -172.367 60.925, -172.313 60.933, -172.083 60.96, -171.862 60.913, -171.901 60.939, -171.841 60.966, -171.757 60.982, -171.768 60.973, -171.77 60.957, -171.828 60.857, -171.835 60.829, -171.994 60.771, -171.915 60.796, -171.742 60.78, -171.746 60.729, -171.779 60.717, -171.794 60.703, -172.019 60.705, -171.886 60.704, -171.965 60.666, -171.965 60.637, -171.912 60.624, -171.794 60.627, -171.994 60.495, -171.905 60.504, -171.865 60.509, -171.946 60.627, -171.963 60.649, -171.934 60.675, -171.926 60.682, -171.976 60.656, -172.041 60.683, -171.786 60.842, -171.593 60.894, -171.546 60.898, -171.633 60.883, -171.633 60.884, -171.636 60.887, -171.638 60.891, -171.815 60.941, -171.852 61.026, -171.86 61.033, -171.844 61.047, -172.037 61.083, -172.076 61.067, -172.074 61.064, -172.068 61.055, -172.059 61.056, -173.014 60.796, -173.023 60.777, -173.014 60.769, -173.049 60.771, -173.049 60.774, -172.609 60.827, -172.608 60.81, -172.612 60.776, -172.6 60.78, -172.635 60.791, -172.618 60.771, -172.524 60.76, -172.573 60.76, -172.731 60.759, -172.734 60.78, -172.687 60.796, -172.728 60.808, -172.75 60.819, -172.733 60.815, -172.753 60.818, -172.749 60.81, -172.77 60.818, -172.778 60.831, -172.719 60.821, -172.764 60.825, -172.754 60.85, -172.782 60.843, -172.783 60.846, -172.784 60.847, -172.778 60.846, -172.754 60.886, -172.756 60.885, -172.747 60.896, -172.79 60.883, -172.818 60.886, -172.835 60.893, -172.49 60.996, -172.453 61.008, -172.282 60.973, -172.243 60.974, -172.264 60.949, -172.273 60.953, -172.287 60.963, -172.27 60.985, -172.266 60.988, -172.095 61.036, -172.03 61.036, -172.033 61.029, -172.049 61.027, -172.064 61.03, -172.105 61.039, -172.108 61.042, -172.087 61.082, -172.172 61.018, -172.371 60.951, -172.353 60.952, -172.431 60.912, -172.538 60.907, -172.592 60.868, -172.237 60.998, -172.236 60.998, -172.364 61.029, -172.351 61.009, -172.332 60.992, -172.378 60.971, -172.406 60.981, -172.386 60.987, -172.331 60.97, -172.341 60.945, -172.368 60.966, -172.3 60.924, -172.338 60.967, -172.392 60.951, -172.362 60.968, -172.37 61.034, -172.332 61.029, -172.343 61.034, -172.177 60.968, -172.363 60.933, -172.246 60.915, -172.276 60.921, -172.278 60.929, -172.283 60.927, -172.279 60.957, -172.6 60.953, -172.79 60.933, -172.924 60.889, -173.103 60.806, -172.729 60.811, -172.521 60.89, -172.55 60.875, -172.558 60.879, -172.519 60.898, -172.603 60.889, -172.565 60.894, -172.577 61.012, -172.552 61.006, -172.366 60.936, -172.328 60.93, -172.331 60.92, -172.219 60.914, -172.22 60.88, -172.239 60.896, -171.893 61.033, -171.993 61.091, -171.987 61.074, -171.921 61.083, -171.99 61.091, -172.193 60.917, -172.092 60.819, -172.07 60.816, -172.102 60.817)",0.0,0.0,deployment,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv deleted file mode 100644 index d2d0e52..0000000 --- a/datasets/atn_satellite_telemetry/data/dwc/38553/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv +++ /dev/null @@ -1,1219 +0,0 @@ -eventID,occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,minimumDepthInMeters,maximumDepthInMeters,dataGeneralizations,bibliographicCitation,occurrenceRemarks -ioos_atn_38553,ioos_atn_38553_2011-06-18T03:00:00Z_0.0_bearded_seal,present,HumanObservation,137079_bearded_seal,2011-06-18T03:00:00Z,66.64,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,0,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-18T04:07:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T04:07:02Z,66.62,-162.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-18T05:16:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T05:16:18Z,66.617,-163.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-18T07:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T07:03:35Z,66.6,-163.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-18T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T09:11:19Z,66.601,-163.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-18T11:13:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T11:13:42Z,66.605,-163.096,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-18T12:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T12:50:52Z,66.625,-163.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-18T14:14:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T14:14:40Z,66.64,-163.08,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-19T00:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T00:08:08Z,66.662,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 6 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-19T01:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T01:46:52Z,66.644,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-19T02:17:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T02:17:16Z,66.644,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-19T03:25:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T03:25:37Z,66.646,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-19T05:06:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T05:06:44Z,66.665,-162.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-19T07:08:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T07:08:49Z,66.652,-163.029,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-20T00:07:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T00:07:22Z,66.629,-163.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-20T03:16:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T03:16:21Z,66.58,-162.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-20T04:53:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T04:53:44Z,66.537,-162.937,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-20T05:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T05:04:36Z,66.559,-162.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-20T06:38:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T06:38:36Z,66.548,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-21T00:19:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T00:19:43Z,66.631,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-21T01:19:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T01:19:38Z,66.639,-162.983,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-21T03:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T03:01:07Z,66.632,-162.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-21T04:47:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T04:47:17Z,66.583,-162.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-21T06:27:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T06:27:31Z,66.561,-162.848,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-22T00:02:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T00:02:33Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-22T01:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T01:03:38Z,66.61,-162.94,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-22T02:17:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T02:17:13Z,66.597,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-22T04:10:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T04:10:21Z,66.593,-162.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-22T05:52:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T05:52:14Z,66.527,-162.829,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-22T06:06:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T06:06:27Z,66.528,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-22T07:45:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T07:45:44Z,66.505,-162.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-23T01:34:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T01:34:03Z,66.431,-162.697,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-23T03:33:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T03:33:52Z,66.457,-162.769,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-23T04:23:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T04:23:32Z,66.475,-162.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-23T07:13:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T07:13:31Z,66.501,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-23T08:53:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T08:53:26Z,66.508,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-23T13:42:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T13:42:55Z,66.56,-162.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-24T00:32:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T00:32:04Z,66.593,-162.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-24T03:07:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T03:07:08Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-24T05:51:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T05:51:21Z,66.615,-162.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-24T06:51:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T06:51:41Z,66.614,-162.957,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-24T07:10:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T07:10:49Z,66.611,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-24T08:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T08:51:08Z,66.609,-162.933,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-25T00:09:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T00:09:16Z,66.614,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-25T01:18:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T01:18:26Z,66.625,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-25T02:41:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T02:41:14Z,66.616,-163.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-25T03:29:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T03:29:42Z,66.626,-163.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-25T04:41:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T04:41:52Z,66.611,-163.006,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-25T05:04:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T05:04:57Z,66.621,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-25T06:26:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T06:26:11Z,66.618,-162.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-25T07:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T07:22:06Z,66.634,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-25T08:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T08:06:03Z,66.611,-163.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-26T00:38:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T00:38:51Z,66.612,-162.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-26T02:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T02:03:51Z,66.606,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-26T03:09:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T03:09:42Z,66.628,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-26T04:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T04:20:01Z,66.615,-162.954,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-26T05:25:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T05:25:22Z,66.611,-162.949,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-26T06:24:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T06:24:28Z,66.628,-162.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-26T08:06:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T08:06:47Z,66.625,-162.903,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-27T00:53:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T00:53:46Z,66.504,-163.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-27T01:08:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T01:08:26Z,66.527,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-27T02:18:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T02:18:56Z,66.508,-163.036,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-27T03:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T03:33:11Z,66.518,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-27T04:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T04:29:26Z,66.525,-163.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-27T05:36:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T05:36:11Z,66.532,-163.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-28T03:03:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T03:03:22Z,66.627,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-28T05:00:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T05:00:08Z,66.634,-163.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-28T06:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T06:45:07Z,66.636,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-28T07:23:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T07:23:57Z,66.631,-163.082,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-28T08:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T08:36:02Z,66.63,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-28T09:04:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T09:04:12Z,66.617,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-29T00:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T00:29:26Z,66.7,-163.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-29T03:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T03:09:48Z,66.74,-163.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-29T17:38:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T17:38:47Z,66.842,-163.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-29T18:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T18:06:09Z,66.86,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-30T02:06:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T02:06:33Z,66.861,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-30T04:36:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T04:36:27Z,66.937,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-06-30T10:05:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T10:05:17Z,66.988,-163.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-01T01:02:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T01:02:21Z,67.031,-164.349,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-01T07:50:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T07:50:05Z,67.042,-164.584,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-01T15:35:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T15:35:51Z,67.083,-165.046,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-02T07:42:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T07:42:23Z,67.429,-165.827,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-02T12:06:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T12:06:46Z,67.524,-165.951,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-02T13:32:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T13:32:11Z,67.563,-166.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-02T15:24:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T15:24:00Z,67.594,-166.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-02T16:51:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T16:51:50Z,67.624,-166.111,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-03T00:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T00:42:52Z,67.724,-166.456,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-03T01:09:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T01:09:17Z,67.726,-166.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-03T03:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T03:14:13Z,67.754,-166.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-03T07:19:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T07:19:08Z,67.83,-166.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-04T10:27:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T10:27:18Z,68.531,-167.802,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-04T13:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T13:22:06Z,68.614,-167.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-05T00:48:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T00:48:34Z,68.814,-167.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-05T01:15:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T01:15:53Z,68.799,-167.21,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-05T05:46:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T05:46:44Z,68.875,-166.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-05T07:07:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T07:07:39Z,68.88,-166.703,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-05T13:16:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T13:16:41Z,69.014,-166.442,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-06T01:45:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T01:45:55Z,69.275,-165.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-06T02:05:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T02:05:39Z,69.283,-165.986,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-06T04:37:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T04:37:29Z,69.309,-165.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-06T06:18:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T06:18:21Z,69.322,-165.82,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-06T07:08:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T07:08:44Z,69.32,-165.812,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-06T09:40:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T09:40:17Z,69.341,-165.751,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-06T11:20:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T11:20:44Z,69.346,-165.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-07T00:54:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T00:54:05Z,69.399,-165.385,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-07T01:01:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T01:01:21Z,69.416,-165.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-07T04:54:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T04:54:31Z,69.43,-165.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-07T05:05:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T05:05:05Z,69.436,-165.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-07T13:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T13:02:46Z,69.543,-164.969,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-07T20:22:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T20:22:52Z,69.629,-164.92,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-08T12:40:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-08T12:40:55Z,69.682,-164.257,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-09T02:34:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T02:34:30Z,69.818,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-09T05:23:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T05:23:26Z,69.824,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-09T06:57:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T06:57:06Z,69.835,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-09T08:01:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T08:01:24Z,69.83,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-09T10:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T10:51:51Z,69.85,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-09T14:09:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T14:09:09Z,69.834,-163.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-09T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T15:51:15Z,69.825,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-10T03:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T03:51:31Z,69.836,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-10T06:34:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T06:34:13Z,69.857,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-10T07:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T07:13:38Z,69.849,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-10T12:21:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T12:21:32Z,69.858,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-10T13:59:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T13:59:06Z,69.867,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-10T14:02:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T14:02:19Z,69.87,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-10T15:15:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T15:15:43Z,69.875,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-11T00:11:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T00:11:33Z,69.857,-163.606,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-11T01:49:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T01:49:20Z,69.863,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-11T02:56:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T02:56:55Z,69.858,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-11T03:27:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T03:27:49Z,69.869,-163.571,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-11T13:15:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T13:15:14Z,69.874,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-12T02:11:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T02:11:32Z,69.768,-163.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-12T06:30:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T06:30:41Z,69.779,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-12T09:19:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T09:19:42Z,69.816,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-12T11:59:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T11:59:25Z,69.827,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-12T13:37:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T13:37:28Z,69.831,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-12T17:42:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T17:42:31Z,69.85,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-12T18:41:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T18:41:42Z,69.867,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-13T13:29:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T13:29:37Z,70.028,-163.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-13T14:09:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T14:09:22Z,70.03,-163.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-14T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T05:10:23Z,70.184,-162.602,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-14T21:56:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T21:56:00Z,70.381,-161.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-15T11:28:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T11:28:11Z,70.453,-161.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-15T13:07:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T13:07:28Z,70.456,-161.425,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-15T15:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T15:02:20Z,70.42,-161.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-15T16:25:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T16:25:24Z,70.445,-161.553,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-15T17:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T17:03:38Z,70.415,-161.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-16T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T00:50:28Z,70.4,-161.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-16T01:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T01:32:28Z,70.403,-161.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-16T02:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T02:32:28Z,70.409,-161.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-16T03:06:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T03:06:58Z,70.396,-161.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-16T04:17:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T04:17:28Z,70.398,-161.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-17T01:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T01:06:22Z,70.386,-161.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-17T02:17:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T02:17:01Z,70.405,-161.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-17T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T06:13:20Z,70.407,-161.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-17T14:32:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T14:32:02Z,70.349,-162.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-17T16:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T16:08:51Z,70.311,-162.562,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-17T17:45:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T17:45:06Z,70.287,-162.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-17T18:11:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T18:11:09Z,70.275,-162.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-17T19:32:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T19:32:36Z,70.234,-162.748,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-18T00:27:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T00:27:32Z,70.114,-162.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-18T02:43:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T02:43:18Z,70.084,-162.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-18T03:28:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T03:28:15Z,70.07,-163.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-18T04:04:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T04:04:15Z,70.08,-162.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-18T05:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T05:07:15Z,70.082,-162.938,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-18T06:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T06:07:15Z,70.082,-162.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-18T07:09:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T07:09:55Z,70.086,-162.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-19T00:51:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T00:51:20Z,69.829,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-19T03:03:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T03:03:50Z,69.814,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-19T04:11:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T04:11:20Z,69.822,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-19T08:29:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T08:29:50Z,69.842,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-19T12:28:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T12:28:03Z,69.757,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-19T13:17:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T13:17:09Z,69.756,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-20T03:13:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T03:13:16Z,69.734,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-20T05:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T05:41:26Z,69.748,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-20T06:39:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T06:39:56Z,69.755,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-20T07:22:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T07:22:41Z,69.755,-163.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-20T08:09:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T08:09:11Z,69.761,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-21T12:05:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T12:05:51Z,69.711,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-21T13:46:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T13:46:00Z,69.706,-163.611,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-21T15:21:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T15:21:15Z,69.706,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-22T00:08:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T00:08:54Z,69.693,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-22T04:08:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T04:08:05Z,69.68,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-22T11:52:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T11:52:21Z,69.691,-163.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-22T13:52:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T13:52:57Z,69.667,-163.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-23T01:32:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T01:32:47Z,69.628,-163.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-23T06:48:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T06:48:48Z,69.6,-163.877,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-23T07:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T07:06:03Z,69.6,-163.875,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-23T08:31:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T08:31:13Z,69.605,-163.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-23T11:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T11:41:00Z,69.613,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-24T00:10:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T00:10:03Z,69.688,-163.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-24T01:41:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T01:41:51Z,69.7,-163.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-24T02:51:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T02:51:36Z,69.696,-163.899,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-24T06:36:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T06:36:50Z,69.728,-163.935,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-24T08:20:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T08:20:12Z,69.748,-163.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-24T13:12:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T13:12:12Z,69.72,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-24T14:56:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T14:56:47Z,69.717,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-25T02:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T02:21:25Z,69.749,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-25T06:24:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T06:24:49Z,69.78,-163.585,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-25T11:23:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T11:23:44Z,69.774,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-25T13:04:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T13:04:26Z,69.767,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-25T14:14:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T14:14:49Z,69.756,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-26T04:29:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T04:29:07Z,69.766,-163.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-26T06:16:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T06:16:26Z,69.775,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-26T09:26:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T09:26:49Z,69.785,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-26T12:52:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T12:52:06Z,69.8,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-26T16:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T16:06:53Z,69.798,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-27T00:42:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T00:42:15Z,69.802,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-27T02:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T02:14:06Z,69.83,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-27T03:11:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T03:11:21Z,69.801,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-28T03:26:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T03:26:35Z,69.744,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-28T04:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T04:03:51Z,69.735,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-28T05:22:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T05:22:01Z,69.736,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-29T12:18:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T12:18:23Z,69.729,-163.52,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-29T20:02:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T20:02:45Z,69.696,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-30T01:53:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T01:53:52Z,69.702,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-30T04:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T04:47:02Z,69.679,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-30T05:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T05:22:07Z,69.669,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-30T06:03:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T06:03:17Z,69.669,-163.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-30T07:03:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T07:03:27Z,69.668,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-31T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T00:07:45Z,69.666,-163.649,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-31T03:13:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T03:13:57Z,69.669,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-31T07:42:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T07:42:40Z,69.655,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-31T09:02:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T09:02:22Z,69.656,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-07-31T13:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T13:36:04Z,69.667,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-01T01:18:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T01:18:30Z,69.665,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-01T03:15:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T03:15:30Z,69.668,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-01T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T04:31:07Z,69.669,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-01T05:13:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T05:13:58Z,69.664,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-01T06:42:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T06:42:09Z,69.67,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-02T02:27:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T02:27:23Z,69.672,-163.739,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-02T03:11:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T03:11:08Z,69.678,-163.646,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-02T04:06:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T04:06:38Z,69.68,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-02T14:54:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T14:54:19Z,69.656,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-03T01:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T01:09:48Z,69.675,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-03T02:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T02:00:42Z,69.675,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-03T04:31:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T04:31:10Z,69.663,-163.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-03T05:21:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T05:21:24Z,69.67,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-03T06:16:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T06:16:19Z,69.675,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-04T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T04:21:21Z,69.685,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-04T05:45:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T05:45:49Z,69.685,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-04T07:26:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T07:26:17Z,69.685,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-04T11:06:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T11:06:32Z,69.688,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-04T12:58:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T12:58:21Z,69.694,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-04T13:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T13:33:49Z,69.699,-163.59,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-04T14:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T14:33:26Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-05T00:58:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T00:58:31Z,69.676,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-05T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T04:21:21Z,69.69,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-05T05:20:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T05:20:19Z,69.687,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-05T12:47:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T12:47:47Z,69.668,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-05T15:58:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T15:58:19Z,69.658,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-05T17:42:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T17:42:10Z,69.659,-163.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-06T00:00:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T00:00:25Z,69.653,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 6 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-06T01:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T01:38:40Z,69.65,-163.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-06T02:06:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T02:06:40Z,69.644,-163.567,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-07T04:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T04:33:23Z,69.741,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-07T05:24:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T05:24:22Z,69.731,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-07T06:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T06:53:55Z,69.732,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-07T07:10:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T07:10:55Z,69.737,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-07T09:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T09:38:40Z,69.743,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-07T10:25:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T10:25:10Z,69.747,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-08T01:45:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T01:45:33Z,69.741,-163.619,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-08T03:22:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T03:22:23Z,69.732,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-08T10:03:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T10:03:23Z,69.724,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-09T00:04:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T00:04:58Z,69.732,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-09T01:16:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T01:16:31Z,69.732,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-09T03:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T03:24:48Z,69.725,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-09T06:47:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T06:47:37Z,69.706,-163.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-09T07:10:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T07:10:20Z,69.704,-163.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-09T08:01:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T08:01:20Z,69.7,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-09T09:36:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T09:36:35Z,69.698,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-09T10:26:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T10:26:05Z,69.698,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-10T04:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T04:13:56Z,69.678,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-10T05:59:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T05:59:52Z,69.708,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-10T06:45:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T06:45:48Z,69.707,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-10T09:14:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T09:14:52Z,69.72,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-10T11:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T11:46:33Z,69.721,-163.714,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-10T12:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T12:49:55Z,69.725,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-11T02:59:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T02:59:33Z,69.711,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-11T07:14:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T07:14:21Z,69.699,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-11T18:14:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T18:14:48Z,69.642,-163.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-12T14:46:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T14:46:19Z,69.686,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-12T15:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T15:08:55Z,69.684,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-12T16:25:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T16:25:21Z,69.684,-163.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-13T04:14:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T04:14:44Z,69.69,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-13T12:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T12:55:34Z,69.689,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-13T17:54:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T17:54:16Z,69.689,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-13T18:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T18:07:01Z,69.689,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-14T06:47:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-14T06:47:14Z,69.681,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-15T02:09:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T02:09:24Z,69.686,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-15T04:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T04:46:52Z,69.69,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-15T12:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T12:34:32Z,69.689,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-15T14:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T14:09:46Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-16T06:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T06:08:45Z,69.68,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-16T12:37:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T12:37:44Z,69.671,-163.717,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-16T17:02:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T17:02:18Z,69.668,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-17T07:19:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T07:19:25Z,69.674,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-17T18:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T18:20:04Z,69.693,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-17T20:32:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T20:32:27Z,69.681,-163.658,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-17T22:46:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T22:46:07Z,69.686,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-18T16:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T16:13:38Z,69.694,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-18T17:18:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T17:18:15Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-19T00:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T00:02:43Z,69.634,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-19T04:49:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T04:49:42Z,69.659,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-19T06:07:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T06:07:54Z,69.644,-163.706,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-19T14:10:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T14:10:48Z,69.677,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-20T09:08:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T09:08:38Z,69.696,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-20T10:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T10:12:46Z,69.701,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-20T11:38:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T11:38:32Z,69.711,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-20T12:06:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T12:06:52Z,69.712,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-21T07:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T07:06:53Z,69.688,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-21T08:48:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T08:48:04Z,69.689,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-21T16:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T16:50:54Z,69.692,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-21T17:45:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T17:45:54Z,69.689,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-21T20:02:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T20:02:14Z,69.678,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-21T21:30:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T21:30:56Z,69.674,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-22T03:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T03:29:55Z,69.686,-163.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-22T05:10:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T05:10:29Z,69.676,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-22T06:44:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T06:44:54Z,69.665,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-22T07:04:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T07:04:18Z,69.662,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-23T03:56:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T03:56:30Z,69.671,-163.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-23T16:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T16:23:01Z,69.714,-163.833,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-23T17:33:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T17:33:56Z,69.712,-163.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-23T19:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T19:43:17Z,69.711,-163.819,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-23T21:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T21:07:36Z,69.713,-163.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-23T22:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T22:33:49Z,69.71,-163.817,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-24T07:07:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T07:07:27Z,69.641,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-24T08:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T08:53:27Z,69.64,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-24T09:25:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T09:25:30Z,69.638,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-25T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T16:45:07Z,69.675,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-25T17:49:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T17:49:47Z,69.681,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-25T22:59:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T22:59:37Z,69.68,-163.692,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-26T07:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T07:02:20Z,69.736,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-26T08:43:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T08:43:55Z,69.746,-163.685,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-26T10:51:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T10:51:10Z,69.751,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-27T00:43:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T00:43:42Z,69.758,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-27T10:04:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T10:04:20Z,69.689,-163.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-27T12:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T12:03:00Z,69.692,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-28T04:38:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T04:38:52Z,69.676,-163.698,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-28T06:21:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T06:21:05Z,69.678,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-28T09:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T09:48:01Z,69.685,-163.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-28T10:12:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T10:12:16Z,69.677,-163.695,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-28T11:50:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T11:50:56Z,69.688,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-28T12:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T12:07:36Z,69.685,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-29T04:23:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T04:23:52Z,69.689,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-29T07:54:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T07:54:54Z,69.684,-163.709,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-29T09:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T09:19:26Z,69.666,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-29T10:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T10:01:01Z,69.669,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-30T04:28:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T04:28:16Z,69.682,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-30T05:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T05:32:28Z,69.682,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-30T09:01:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T09:01:06Z,69.693,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-30T10:09:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T10:09:41Z,69.688,-163.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-30T11:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T11:33:26Z,69.682,-163.726,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-31T00:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T00:24:48Z,69.684,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-31T08:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T08:39:37Z,69.687,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-08-31T12:59:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T12:59:16Z,69.696,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-01T00:30:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T00:30:29Z,69.686,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-01T02:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T02:09:46Z,69.685,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-01T03:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T03:43:17Z,69.682,-163.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-01T06:45:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T06:45:01Z,69.683,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-01T07:12:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T07:12:04Z,69.682,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-01T08:09:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T08:09:57Z,69.668,-163.705,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-01T09:48:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T09:48:12Z,69.68,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-01T10:06:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T10:06:57Z,69.68,-163.69,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-02T07:58:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T07:58:57Z,69.691,-163.657,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-02T09:40:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T09:40:52Z,69.687,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-02T10:56:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T10:56:57Z,69.693,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-02T11:20:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T11:20:42Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-03T00:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T00:41:30Z,69.704,-163.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-03T02:18:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T02:18:07Z,69.698,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-03T05:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T05:39:01Z,69.688,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-03T07:20:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T07:20:03Z,69.68,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-03T08:32:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T08:32:12Z,69.683,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-03T09:03:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T09:03:57Z,69.678,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-03T10:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T10:49:16Z,69.686,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-03T12:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T12:49:48Z,69.676,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-04T02:14:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T02:14:56Z,69.682,-163.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-04T08:57:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T08:57:37Z,69.684,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-04T22:39:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T22:39:59Z,69.666,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-05T02:05:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T02:05:44Z,69.683,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-05T10:23:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T10:23:09Z,69.687,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-05T19:01:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T19:01:41Z,69.677,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-06T06:34:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T06:34:11Z,69.697,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-06T07:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T07:52:15Z,69.682,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-06T08:54:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T08:54:36Z,69.674,-163.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-06T09:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T09:34:14Z,69.683,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-07T09:15:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-07T09:15:50Z,69.816,-163.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-08T04:04:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T04:04:27Z,69.678,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-08T07:30:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T07:30:16Z,69.693,-163.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-08T08:44:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T08:44:44Z,69.698,-163.856,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-08T09:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T09:20:10Z,69.692,-163.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-08T10:15:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T10:15:04Z,69.691,-163.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-09T01:22:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T01:22:57Z,69.688,-164.088,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-09T03:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T03:53:55Z,69.69,-164.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-09T04:54:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T04:54:40Z,69.686,-164.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-09T07:16:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T07:16:53Z,69.691,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-09T08:53:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T08:53:14Z,69.694,-164.073,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-10T02:54:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T02:54:12Z,69.632,-164.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-10T03:41:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T03:41:02Z,69.635,-164.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-10T05:22:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T05:22:51Z,69.633,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-10T07:05:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T07:05:49Z,69.637,-164.14,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-10T08:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T08:34:21Z,69.63,-164.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-10T11:14:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T11:14:32Z,69.61,-164.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-11T00:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T00:34:50Z,69.607,-164.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-11T01:19:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T01:19:22Z,69.603,-164.151,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-11T03:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T03:15:32Z,69.596,-164.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-11T04:50:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T04:50:43Z,69.597,-164.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-11T05:53:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T05:53:29Z,69.594,-164.211,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-11T13:06:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T13:06:36Z,69.602,-164.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-11T16:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T16:01:07Z,69.608,-164.16,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-11T17:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T17:15:32Z,69.605,-164.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-12T07:52:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T07:52:25Z,69.749,-163.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-12T08:30:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T08:30:40Z,69.752,-163.736,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-13T06:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T06:34:50Z,70.054,-163.138,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-13T07:30:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T07:30:20Z,70.041,-163.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-13T08:13:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T08:13:05Z,70.038,-163.18,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-13T19:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T19:02:46Z,70.169,-162.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-14T20:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T20:33:23Z,70.423,-161.314,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-14T22:13:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T22:13:11Z,70.43,-161.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-14T23:52:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T23:52:41Z,70.438,-161.263,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-15T06:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T06:48:01Z,70.454,-161.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-15T07:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T07:42:11Z,70.456,-160.972,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-17T02:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T02:20:01Z,70.965,-158.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-17T23:07:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T23:07:30Z,71.244,-157.374,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-18T00:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T00:27:05Z,71.228,-157.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-18T15:37:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T15:37:55Z,71.43,-156.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-19T01:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T01:03:35Z,71.46,-156.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-19T03:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T03:07:01Z,71.478,-156.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-20T05:39:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T05:39:40Z,71.198,-154.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-20T09:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T09:51:31Z,71.122,-154.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-20T11:31:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T11:31:18Z,71.055,-154.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-20T12:45:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T12:45:28Z,71.05,-154.613,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-20T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T13:02:32Z,71.066,-154.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-20T14:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T14:25:16Z,71.094,-154.575,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-21T00:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T00:42:11Z,71.356,-156.058,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-21T01:28:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T01:28:02Z,71.355,-156.197,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-21T04:50:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T04:50:51Z,71.414,-156.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-21T06:23:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T06:23:45Z,71.406,-156.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-21T09:39:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T09:39:45Z,71.383,-156.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-21T10:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T10:55:34Z,71.358,-157.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-21T12:58:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T12:58:33Z,71.25,-157.451,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-21T17:34:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T17:34:06Z,71.162,-157.974,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-22T02:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T02:48:06Z,71.154,-158.309,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-22T04:49:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T04:49:54Z,71.154,-158.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-22T06:09:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T06:09:56Z,71.148,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-22T08:05:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T08:05:34Z,71.15,-158.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-22T12:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T12:25:31Z,71.156,-158.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-22T14:07:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T14:07:32Z,71.165,-158.281,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-22T15:37:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T15:37:45Z,71.165,-158.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-22T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T16:45:07Z,71.155,-158.327,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-22T17:18:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T17:18:10Z,71.151,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-23T00:06:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T00:06:34Z,71.157,-158.329,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-23T04:08:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T04:08:23Z,71.17,-158.325,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-23T12:10:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T12:10:45Z,71.1,-158.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-24T05:46:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-24T05:46:01Z,71.152,-158.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-25T22:21:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-25T22:21:18Z,70.489,-162.084,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-26T01:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T01:23:07Z,70.501,-162.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-26T04:47:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T04:47:46Z,70.493,-162.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-26T07:14:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T07:14:38Z,70.501,-162.583,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-26T08:01:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T08:01:56Z,70.503,-162.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-27T01:35:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T01:35:00Z,70.299,-163.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-27T02:44:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T02:44:50Z,70.302,-163.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-27T04:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T04:27:15Z,70.287,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-27T05:24:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T05:24:12Z,70.284,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-27T07:07:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T07:07:34Z,70.278,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-27T09:22:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T09:22:45Z,70.265,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-27T15:18:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T15:18:43Z,70.241,-164.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-28T00:09:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T00:09:33Z,70.205,-164.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-28T02:24:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T02:24:10Z,70.205,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-28T03:30:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T03:30:30Z,70.193,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-28T04:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T04:11:43Z,70.19,-164.093,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-28T05:12:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T05:12:11Z,70.189,-164.112,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-28T06:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T06:51:08Z,70.178,-164.142,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-28T07:20:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T07:20:30Z,70.175,-164.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-28T08:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T08:23:25Z,70.171,-164.156,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-28T09:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T09:02:07Z,70.168,-164.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-29T02:08:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T02:08:12Z,70.133,-164.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-29T03:48:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T03:48:43Z,70.122,-164.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-29T06:44:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T06:44:34Z,70.127,-164.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-29T07:08:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T07:08:36Z,70.125,-164.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-29T08:29:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T08:29:36Z,70.125,-164.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-30T00:17:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T00:17:46Z,70.093,-164.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-30T01:24:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T01:24:34Z,70.098,-164.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-30T03:05:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T03:05:42Z,70.081,-164.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-30T04:45:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T04:45:38Z,70.065,-164.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-30T05:03:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T05:03:44Z,70.071,-164.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-30T08:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T08:10:17Z,70.068,-164.452,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-09-30T09:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T09:47:02Z,70.068,-164.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-01T01:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T01:24:18Z,70.099,-164.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-01T03:16:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T03:16:13Z,70.108,-164.249,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-01T07:58:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T07:58:23Z,70.103,-164.245,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-01T08:10:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T08:10:13Z,70.109,-164.226,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-01T09:34:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T09:34:35Z,70.116,-164.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-01T15:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T15:20:01Z,70.1,-164.269,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-02T00:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T00:08:45Z,70.085,-164.296,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-02T01:03:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T01:03:21Z,70.09,-164.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-02T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T02:41:57Z,70.093,-164.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-02T04:20:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T04:20:36Z,70.102,-164.29,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-02T07:47:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T07:47:49Z,70.078,-164.272,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-03T00:31:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T00:31:26Z,70.214,-164.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-03T03:56:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T03:56:15Z,70.243,-164.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-03T05:35:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T05:35:57Z,70.246,-164.047,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-03T07:18:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T07:18:20Z,70.257,-164.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-03T16:11:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T16:11:31Z,70.152,-164.241,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-04T00:21:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T00:21:07Z,70.106,-164.271,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-04T03:46:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T03:46:32Z,70.058,-164.335,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-04T05:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T05:08:47Z,70.049,-164.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-04T06:52:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T06:52:55Z,70.022,-164.411,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-04T07:22:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T07:22:40Z,70.025,-164.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-04T08:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T08:37:00Z,70.025,-164.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-05T02:05:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T02:05:06Z,69.916,-164.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-05T05:23:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T05:23:51Z,69.875,-164.822,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-05T06:29:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T06:29:21Z,69.874,-164.838,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-05T07:10:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T07:10:39Z,69.871,-164.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-05T08:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T08:12:01Z,69.864,-164.879,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-06T00:12:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T00:12:18Z,70.011,-164.503,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-06T03:34:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T03:34:18Z,70.005,-164.472,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-06T04:24:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T04:24:44Z,70.015,-164.462,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-06T05:14:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T05:14:37Z,70.025,-164.46,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-06T06:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T06:06:22Z,70.035,-164.47,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-06T07:47:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T07:47:10Z,70.04,-164.506,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-06T08:40:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T08:40:02Z,70.042,-164.547,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-07T05:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-07T05:45:00Z,69.87,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-08T04:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T04:51:51Z,70.231,-162.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-08T05:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T05:14:55Z,70.228,-162.31,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-08T06:31:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T06:31:25Z,70.245,-162.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-08T19:32:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T19:32:32Z,70.484,-162.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-08T20:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T20:42:54Z,70.461,-162.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-09T00:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T00:33:11Z,70.499,-162.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-09T02:57:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T02:57:24Z,70.503,-162.627,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-09T03:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T03:12:01Z,70.512,-162.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-09T04:54:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T04:54:13Z,70.513,-162.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-09T06:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T06:23:07Z,70.516,-162.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-09T17:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T17:01:07Z,70.451,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-09T20:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T20:17:48Z,70.433,-163.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-10T00:31:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T00:31:49Z,70.374,-164.024,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-10T01:35:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T01:35:53Z,70.354,-164.042,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-10T02:45:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T02:45:29Z,70.345,-164.066,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-10T04:24:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T04:24:13Z,70.322,-164.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-10T06:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T06:07:55Z,70.285,-164.118,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-10T07:51:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T07:51:45Z,70.289,-164.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-10T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T13:02:32Z,70.22,-164.256,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-11T01:54:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T01:54:17Z,70.067,-164.33,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-11T02:30:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T02:30:02Z,70.066,-164.356,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-11T04:12:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T04:12:50Z,70.052,-164.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-11T05:47:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T05:47:36Z,70.031,-164.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-11T06:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T06:10:17Z,70.02,-164.41,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-12T00:31:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T00:31:30Z,70.074,-164.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-12T03:44:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T03:44:13Z,70.051,-164.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-12T05:21:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T05:21:13Z,70.041,-164.377,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-12T07:02:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T07:02:37Z,70.048,-164.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-13T00:29:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T00:29:13Z,69.979,-164.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-13T01:46:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T01:46:11Z,69.968,-164.814,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-13T03:53:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T03:53:43Z,69.942,-164.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-13T05:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T05:33:21Z,69.93,-164.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-13T12:28:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T12:28:12Z,69.869,-165.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-13T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T15:51:15Z,69.895,-165.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-13T17:41:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T17:41:36Z,69.903,-165.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-13T18:37:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T18:37:53Z,69.912,-165.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-14T00:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T00:15:05Z,69.995,-165.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-14T01:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T01:51:13Z,70.005,-165.735,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-14T03:36:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T03:36:45Z,70.009,-165.849,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-14T05:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T05:08:51Z,70.012,-165.922,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-14T06:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T06:48:13Z,70.025,-165.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-14T07:04:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T07:04:21Z,70.028,-165.887,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-14T08:00:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T08:00:16Z,70.035,-165.863,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-15T00:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T00:07:48Z,69.941,-166.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-15T04:10:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T04:10:52Z,69.867,-165.936,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-15T05:07:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T05:07:23Z,69.847,-165.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-15T13:50:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T13:50:42Z,69.651,-165.808,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-15T14:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T14:59:21Z,69.622,-165.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-15T16:15:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T16:15:03Z,69.601,-165.888,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-15T20:36:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T20:36:05Z,69.487,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-16T02:07:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T02:07:56Z,69.351,-165.798,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-16T04:57:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T04:57:44Z,69.328,-165.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-16T11:27:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T11:27:46Z,69.279,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-16T12:04:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T12:04:10Z,69.272,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-17T01:47:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T01:47:12Z,68.941,-165.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-17T03:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T03:04:22Z,68.898,-165.539,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-17T04:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T04:12:46Z,68.866,-165.455,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-17T05:46:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T05:46:28Z,68.863,-165.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-17T06:46:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T06:46:05Z,68.871,-165.252,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-17T07:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T07:27:15Z,68.884,-165.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-17T08:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T08:09:30Z,68.885,-165.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-17T09:08:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T09:08:13Z,68.893,-165.231,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-18T21:06:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T21:06:28Z,68.395,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-18T23:21:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T23:21:47Z,68.392,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-19T00:09:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T00:09:54Z,68.385,-167.24,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-19T01:03:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T01:03:52Z,68.377,-167.28,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-19T03:30:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T03:30:48Z,68.342,-167.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-19T05:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T05:04:51Z,68.318,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-19T06:45:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T06:45:16Z,68.309,-167.398,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-19T07:40:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T07:40:46Z,68.318,-167.434,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-19T08:27:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T08:27:16Z,68.339,-167.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-19T10:08:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T10:08:31Z,68.37,-167.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-20T01:26:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T01:26:36Z,68.15,-167.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-20T04:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T04:50:52Z,68.076,-167.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-20T05:33:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T05:33:55Z,68.064,-167.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-20T11:17:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T11:17:40Z,67.946,-167.876,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-20T14:04:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T14:04:09Z,67.909,-167.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-20T17:55:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T17:55:10Z,67.855,-167.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-21T03:58:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T03:58:17Z,67.717,-167.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-21T04:29:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T04:29:40Z,67.728,-167.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-21T05:13:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T05:13:37Z,67.724,-167.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-21T06:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T06:51:07Z,67.732,-167.295,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-21T07:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T07:44:22Z,67.745,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-22T01:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T01:33:11Z,67.601,-166.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-22T04:07:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T04:07:00Z,67.551,-166.32,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-22T13:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T13:41:00Z,67.3,-165.916,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-22T20:56:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T20:56:49Z,67.154,-165.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-23T00:17:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T00:17:27Z,67.12,-165.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-23T01:27:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T01:27:33Z,67.106,-165.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-23T02:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T02:46:02Z,67.096,-165.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-23T05:13:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T05:13:14Z,67.072,-165.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-23T06:03:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T06:03:39Z,67.082,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-24T00:14:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T00:14:18Z,67.135,-166.069,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-24T01:40:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T01:40:00Z,67.149,-166.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-24T03:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T03:59:21Z,67.179,-166.179,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-24T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T04:03:01Z,67.183,-166.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-24T05:02:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T05:02:59Z,67.195,-166.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-24T12:16:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T12:16:22Z,67.244,-166.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-24T13:58:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T13:58:42Z,67.252,-166.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-24T15:58:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T15:58:38Z,67.239,-166.601,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-24T17:41:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T17:41:20Z,67.243,-166.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-25T01:59:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T01:59:27Z,67.167,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-25T02:04:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T02:04:07Z,67.161,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-25T18:53:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T18:53:48Z,67.255,-167.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-25T20:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T20:20:10Z,67.281,-167.424,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-25T22:00:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T22:00:30Z,67.316,-167.414,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-26T03:16:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T03:16:10Z,67.423,-167.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-26T06:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T06:38:11Z,67.456,-167.288,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-26T15:15:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T15:15:42Z,67.689,-166.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-26T16:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T16:21:25Z,67.702,-167.015,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-27T00:43:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T00:43:29Z,67.855,-167.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-27T01:08:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T01:08:00Z,67.877,-167.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T02:24:24Z,67.911,-167.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-27T04:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T04:22:30Z,67.893,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-27T06:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T06:07:52Z,67.903,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-27T11:42:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T11:42:26Z,67.942,-167.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-27T12:47:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T12:47:55Z,67.958,-167.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-28T00:32:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T00:32:30Z,67.955,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-28T01:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T01:10:36Z,67.958,-167.426,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-28T02:15:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T02:15:46Z,67.979,-167.466,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-28T07:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T07:36:02Z,67.951,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-28T13:13:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T13:13:21Z,67.974,-167.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-29T00:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T00:18:22Z,68.211,-167.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-29T03:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T03:45:00Z,68.267,-167.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-29T04:03:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T04:03:31Z,68.278,-167.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-29T14:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T14:04:36Z,68.562,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-29T15:41:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T15:41:17Z,68.553,-167.233,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-29T16:26:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T16:26:40Z,68.554,-167.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-29T17:30:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T17:30:38Z,68.544,-167.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-29T18:56:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T18:56:52Z,68.552,-167.216,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-29T19:08:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T19:08:41Z,68.545,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-30T00:10:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T00:10:15Z,68.564,-167.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-30T01:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T01:54:43Z,68.558,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-30T02:10:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T02:10:32Z,68.557,-167.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-30T03:03:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T03:03:04Z,68.553,-167.205,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-30T04:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T04:37:00Z,68.556,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-30T05:28:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T05:28:22Z,68.547,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-30T06:23:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T06:23:03Z,68.55,-167.157,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-30T07:58:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T07:58:32Z,68.552,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-30T09:44:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T09:44:16Z,68.552,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-31T00:39:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T00:39:24Z,68.555,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-31T01:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T01:41:26Z,68.561,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-31T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T02:41:57Z,68.564,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-31T03:36:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T03:36:34Z,68.567,-167.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-31T04:34:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T04:34:07Z,68.557,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-31T05:17:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T05:17:26Z,68.558,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-31T06:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T06:18:36Z,68.543,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-31T07:38:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T07:38:19Z,68.537,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-31T08:00:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T08:00:31Z,68.531,-167.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-10-31T09:18:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T09:18:59Z,68.531,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-01T00:49:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T00:49:31Z,68.563,-167.166,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-01T01:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T01:30:26Z,68.548,-167.192,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-01T02:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T02:07:01Z,68.544,-167.15,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-01T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T04:03:01Z,68.541,-167.124,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-01T05:07:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T05:07:25Z,68.535,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-01T06:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T06:44:12Z,68.519,-167.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-01T07:15:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T07:15:10Z,68.523,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-01T08:56:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T08:56:10Z,68.512,-167.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-02T00:19:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T00:19:00Z,68.555,-167.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-02T01:21:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T01:21:14Z,68.559,-167.128,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-02T02:04:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T02:04:06Z,68.557,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-02T03:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T03:41:30Z,68.55,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-02T05:26:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T05:26:25Z,68.533,-167.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-02T06:33:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T06:33:41Z,68.534,-167.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-02T12:22:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T12:22:54Z,68.506,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-02T15:07:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T15:07:44Z,68.515,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-03T03:03:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T03:03:09Z,68.518,-166.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-03T05:00:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T05:00:07Z,68.505,-166.944,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-03T08:22:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T08:22:18Z,68.502,-166.966,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-03T12:11:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T12:11:58Z,68.495,-166.984,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-03T13:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T13:13:56Z,68.492,-166.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-03T14:57:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T14:57:05Z,68.502,-166.961,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-03T15:21:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T15:21:31Z,68.505,-166.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-04T01:20:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T01:20:28Z,68.5,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-04T02:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T02:49:16Z,68.506,-167.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-04T03:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T03:03:00Z,68.507,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-04T04:42:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T04:42:32Z,68.512,-166.995,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-04T07:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T07:53:27Z,68.489,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-04T13:08:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T13:08:43Z,68.508,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-05T00:47:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T00:47:53Z,68.532,-167.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-05T02:31:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T02:31:45Z,68.527,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-05T04:21:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T04:21:16Z,68.522,-167.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-05T06:00:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T06:00:43Z,68.525,-167.079,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-05T07:38:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T07:38:23Z,68.545,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-05T13:31:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T13:31:47Z,68.543,-167.104,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-06T00:26:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T00:26:03Z,68.531,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-06T01:18:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T01:18:01Z,68.528,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-06T02:17:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T02:17:38Z,68.529,-167.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-06T03:54:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T03:54:20Z,68.527,-167.007,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-06T05:34:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T05:34:44Z,68.54,-166.992,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-07T00:21:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T00:21:54Z,68.542,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-07T01:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T01:11:39Z,68.54,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-07T02:03:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T02:03:24Z,68.538,-167.11,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-07T03:31:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T03:31:15Z,68.537,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-07T05:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T05:06:09Z,68.54,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-07T06:52:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T06:52:10Z,68.522,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-07T07:16:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T07:16:55Z,68.536,-167.129,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-07T14:13:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T14:13:12Z,68.534,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-08T00:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T00:08:55Z,68.637,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-08T11:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T11:18:22Z,68.545,-167.23,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-08T13:58:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T13:58:34Z,68.538,-167.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-08T15:40:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T15:40:34Z,68.545,-167.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-08T16:20:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T16:20:51Z,68.542,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-09T00:55:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T00:55:21Z,68.524,-167.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-09T02:45:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T02:45:22Z,68.516,-167.011,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-09T04:16:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T04:16:37Z,68.511,-167.021,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-09T12:49:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T12:49:01Z,68.53,-167.051,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-10T02:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T02:12:01Z,68.526,-166.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-10T03:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T03:50:53Z,68.527,-166.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-10T04:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T04:14:13Z,68.532,-166.84,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-10T06:36:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T06:36:46Z,68.562,-166.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-10T12:38:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T12:38:15Z,68.584,-166.796,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-10T13:38:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T13:38:05Z,68.594,-166.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-11T00:04:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T00:04:33Z,68.513,-167.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-11T01:22:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T01:22:13Z,68.512,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-11T03:04:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T03:04:40Z,68.517,-167.127,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-11T04:47:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T04:47:26Z,68.507,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-11T05:15:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T05:15:35Z,68.508,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-11T06:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T06:24:38Z,68.509,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-11T10:46:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T10:46:03Z,68.494,-167.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-11T12:28:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T12:28:51Z,68.497,-167.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-11T13:48:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T13:48:03Z,68.496,-167.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-12T00:14:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T00:14:16Z,68.513,-167.035,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-12T01:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T01:51:15Z,68.51,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-12T02:53:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T02:53:05Z,68.502,-167.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-12T03:00:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T03:00:15Z,68.506,-167.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-12T04:37:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T04:37:04Z,68.493,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-12T05:14:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T05:14:29Z,68.495,-167.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-12T06:39:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T06:39:34Z,68.482,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-12T12:15:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T12:15:49Z,68.492,-166.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-12T13:19:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T13:19:17Z,68.496,-167.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-13T00:56:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T00:56:40Z,68.446,-167.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-13T02:41:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T02:41:45Z,68.465,-167.107,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-13T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T04:31:07Z,68.485,-167.125,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-13T06:16:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T06:16:01Z,68.486,-167.114,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-13T13:05:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T13:05:22Z,68.499,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-14T00:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T00:34:21Z,68.505,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-14T01:13:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T01:13:40Z,68.546,-167.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-14T02:53:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T02:53:11Z,68.493,-167.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-14T03:54:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T03:54:41Z,68.48,-167.147,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-14T04:07:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T04:07:41Z,68.482,-167.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-14T05:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T05:50:11Z,68.473,-167.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-15T00:49:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T00:49:43Z,68.424,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-15T01:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T01:50:53Z,68.423,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-15T02:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T02:04:51Z,68.425,-167.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-15T03:28:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T03:28:37Z,68.432,-166.999,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-15T04:00:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T04:00:52Z,68.432,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-15T05:22:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T05:22:37Z,68.424,-166.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-16T00:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T00:28:23Z,68.299,-167.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-16T01:41:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T01:41:08Z,68.286,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-16T02:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T02:08:08Z,68.278,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-16T03:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T03:05:08Z,68.264,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-16T04:46:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T04:46:23Z,68.245,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-16T05:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T05:28:23Z,68.236,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-17T00:17:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T00:17:08Z,68.224,-166.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-17T01:02:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T01:02:08Z,68.228,-166.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-17T02:00:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T02:00:38Z,68.233,-166.718,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-17T03:36:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T03:36:38Z,68.243,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-17T04:23:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T04:23:08Z,68.248,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-17T05:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T05:14:53Z,68.258,-166.738,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-18T01:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T01:28:50Z,68.306,-166.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-18T07:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T07:36:04Z,68.384,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-18T08:05:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T08:05:29Z,68.391,-166.985,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-18T13:53:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T13:53:49Z,68.496,-167.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-19T00:10:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T00:10:25Z,68.53,-167.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-19T01:33:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T01:33:40Z,68.534,-167.099,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-19T02:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T02:49:55Z,68.539,-167.109,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-19T03:50:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T03:50:10Z,68.535,-167.116,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-19T04:29:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T04:29:10Z,68.536,-167.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-19T05:27:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T05:27:40Z,68.539,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-19T06:09:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T06:09:40Z,68.539,-167.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-20T00:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T00:24:38Z,68.479,-167.137,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-20T01:30:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T01:30:31Z,68.474,-167.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-20T02:29:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T02:29:01Z,68.468,-167.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-20T03:09:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T03:09:04Z,68.457,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-20T04:09:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T04:09:31Z,68.449,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-20T05:06:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T05:06:31Z,68.441,-167.208,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-20T06:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T06:23:01Z,68.429,-167.228,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-21T00:18:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T00:18:08Z,68.16,-167.554,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-21T01:05:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T01:05:19Z,68.139,-167.544,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-21T02:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T02:49:15Z,68.069,-167.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-21T03:02:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T03:02:50Z,68.074,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-21T04:24:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T04:24:37Z,68.052,-167.492,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-21T05:27:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T05:27:37Z,68.041,-167.473,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-21T06:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T06:11:43Z,68.032,-167.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-22T01:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T01:03:51Z,67.684,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-22T10:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T10:30:26Z,67.427,-167.284,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-22T12:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T12:14:14Z,67.366,-167.285,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-22T13:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T13:07:52Z,67.339,-167.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-23T01:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T01:53:55Z,67.016,-167.791,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-23T07:14:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T07:14:50Z,66.906,-168.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-23T08:02:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T08:02:51Z,66.896,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-23T17:49:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T17:49:44Z,66.766,-168.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-24T00:39:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T00:39:05Z,66.653,-168.85,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-24T03:14:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T03:14:05Z,66.6,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-24T05:09:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T05:09:53Z,66.566,-168.81,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-24T14:29:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T14:29:57Z,66.385,-168.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-24T15:15:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T15:15:58Z,66.374,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-24T16:09:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T16:09:35Z,66.366,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-25T05:18:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T05:18:45Z,66.018,-168.025,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-25T14:46:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T14:46:54Z,65.697,-168.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-25T20:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T20:07:55Z,65.456,-168.587,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-26T00:18:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T00:18:17Z,65.406,-168.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-26T01:46:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T01:46:57Z,65.381,-168.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-26T02:42:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T02:42:07Z,65.358,-168.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-26T07:00:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T07:00:48Z,65.295,-168.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-26T08:38:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T08:38:37Z,65.263,-168.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-26T14:10:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T14:10:09Z,65.179,-168.572,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-27T00:17:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T00:17:18Z,65.063,-168.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-27T03:18:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T03:18:46Z,65.025,-168.737,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-27T04:58:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T04:58:58Z,65.006,-168.73,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-27T06:35:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T06:35:04Z,64.98,-168.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-27T07:25:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T07:25:15Z,64.965,-168.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-27T11:23:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T11:23:35Z,64.918,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-28T00:47:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T00:47:32Z,64.739,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-28T01:36:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T01:36:15Z,64.732,-168.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-28T03:09:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T03:09:49Z,64.695,-168.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-28T06:59:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T06:59:22Z,64.626,-168.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-28T18:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T18:33:22Z,64.443,-168.394,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-29T00:36:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T00:36:13Z,64.302,-168.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-29T04:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T04:51:13Z,64.227,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-29T06:39:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T06:39:41Z,64.196,-168.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-29T07:58:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T07:58:16Z,64.17,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-29T13:34:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T13:34:05Z,64.073,-168.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-29T15:14:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T15:14:35Z,64.044,-168.463,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-29T16:02:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T16:02:17Z,64.035,-168.495,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-29T18:21:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T18:21:52Z,64.005,-168.469,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-30T02:21:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T02:21:35Z,63.893,-168.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-30T12:30:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T12:30:14Z,63.714,-168.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-30T15:03:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T15:03:02Z,63.643,-168.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-30T18:18:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T18:18:19Z,63.552,-168.513,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-11-30T19:49:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T19:49:53Z,63.519,-168.487,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-01T00:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T00:52:15Z,63.38,-168.373,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-01T05:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T05:51:46Z,63.179,-168.261,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-01T08:42:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T08:42:24Z,63.044,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-01T13:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T13:12:37Z,62.941,-168.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-01T15:52:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T15:52:12Z,62.919,-168.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-01T23:57:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T23:57:47Z,62.886,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-02T02:41:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T02:41:10Z,62.855,-168.823,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-02T12:10:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T12:10:31Z,62.793,-169.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-02T13:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T13:03:01Z,62.792,-169.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-04T02:11:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T02:11:24Z,62.72,-170.217,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-04T03:33:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T03:33:19Z,62.722,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-04T04:11:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T04:11:49Z,62.718,-170.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-04T05:15:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T05:15:15Z,62.704,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-04T07:32:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T07:32:57Z,62.685,-170.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-04T11:49:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T11:49:08Z,62.684,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-05T04:10:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T04:10:22Z,62.475,-170.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-05T05:56:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T05:56:27Z,62.449,-169.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-05T07:14:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T07:14:31Z,62.452,-169.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-05T12:27:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T12:27:54Z,62.461,-169.869,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-05T13:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T13:17:30Z,62.462,-169.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-05T17:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T17:27:05Z,62.471,-169.864,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-05T18:49:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T18:49:00Z,62.477,-169.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-06T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T00:07:45Z,62.519,-169.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-06T01:01:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T01:01:45Z,62.513,-169.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-06T03:16:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T03:16:45Z,62.499,-169.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-06T05:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T05:17:30Z,62.479,-169.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-07T00:45:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T00:45:17Z,62.354,-170.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-07T01:18:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T01:18:04Z,62.351,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-07T03:23:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T03:23:10Z,62.349,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-07T05:02:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T05:02:23Z,62.372,-170.365,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-08T00:53:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T00:53:34Z,62.565,-170.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-08T02:19:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T02:19:55Z,62.578,-170.512,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-08T04:17:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T04:17:23Z,62.605,-170.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-08T06:05:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T06:05:35Z,62.628,-170.493,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-08T09:33:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T09:33:01Z,62.668,-170.441,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-08T13:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T13:38:11Z,62.737,-170.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-08T14:26:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T14:26:58Z,62.75,-170.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-08T16:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T16:08:08Z,62.792,-170.382,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-09T00:58:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T00:58:03Z,62.87,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-09T01:15:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T01:15:18Z,62.872,-170.221,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-09T02:09:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T02:09:18Z,62.869,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-09T03:07:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T03:07:47Z,62.835,-170.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-09T06:03:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T06:03:34Z,62.869,-170.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-09T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T09:11:19Z,62.882,-170.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-10T00:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T00:23:25Z,62.835,-169.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-10T05:29:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T05:29:56Z,62.804,-169.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-10T07:25:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T07:25:51Z,62.799,-169.45,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-10T08:48:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T08:48:37Z,62.815,-169.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-10T14:57:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T14:57:43Z,62.838,-169.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-10T18:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T18:44:22Z,62.868,-169.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-11T03:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T03:48:13Z,62.882,-168.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-11T04:41:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T04:41:21Z,62.878,-168.76,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-11T05:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T05:09:51Z,62.879,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-11T06:49:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T06:49:21Z,62.894,-168.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-11T07:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T07:14:06Z,62.902,-168.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-11T08:29:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T08:29:51Z,62.926,-168.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-12T01:32:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T01:32:39Z,62.881,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-12T04:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T04:17:48Z,62.847,-168.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-12T13:44:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T13:44:07Z,62.782,-168.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-12T14:37:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T14:37:47Z,62.788,-168.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-12T16:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T16:19:26Z,62.788,-168.416,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-13T00:07:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T00:07:18Z,62.791,-168.267,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-13T06:06:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T06:06:00Z,62.77,-168.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-13T07:45:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T07:45:47Z,62.773,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-13T13:37:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T13:37:40Z,62.758,-168.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-13T15:52:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T15:52:11Z,62.753,-168.224,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-14T00:22:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T00:22:02Z,62.798,-168.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-14T01:37:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T01:37:23Z,62.795,-168.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-14T02:33:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T02:33:24Z,62.806,-168.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-14T03:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T03:14:14Z,62.804,-168.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-15T03:02:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T03:02:30Z,62.669,-168.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-15T04:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T04:44:22Z,62.654,-168.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-15T14:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T14:04:22Z,62.506,-168.846,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-15T15:46:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T15:46:04Z,62.471,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-15T16:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T16:46:02Z,62.468,-168.87,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-16T04:49:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T04:49:26Z,62.326,-169.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-16T11:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T11:22:07Z,62.316,-169.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-16T15:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T15:34:14Z,62.311,-169.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-16T16:17:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T16:17:29Z,62.314,-169.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-16T18:01:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T18:01:02Z,62.307,-169.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-17T00:46:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T00:46:09Z,62.254,-169.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-17T12:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T12:51:46Z,62.205,-170.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-17T14:33:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T14:33:25Z,62.245,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-17T18:42:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T18:42:06Z,62.309,-170.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-17T19:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T19:49:15Z,62.332,-170.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-17T21:31:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T21:31:14Z,62.351,-170.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-18T03:31:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T03:31:59Z,62.398,-170.479,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-18T04:03:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T04:03:55Z,62.395,-170.483,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-18T07:42:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T07:42:35Z,62.398,-170.496,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-18T16:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T16:50:28Z,62.437,-170.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-19T03:03:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T03:03:58Z,62.519,-170.797,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-19T05:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T05:18:36Z,62.522,-170.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-19T07:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T07:08:47Z,62.522,-170.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-20T04:56:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T04:56:42Z,62.438,-170.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-20T05:28:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T05:28:27Z,62.436,-170.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-20T06:45:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T06:45:42Z,62.428,-170.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-20T07:02:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T07:02:57Z,62.429,-170.803,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-20T08:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T08:44:12Z,62.435,-170.816,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-21T00:44:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T00:44:43Z,62.52,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-21T01:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T01:17:50Z,62.525,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-21T02:32:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T02:32:53Z,62.535,-170.766,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-21T03:31:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T03:31:23Z,62.537,-170.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-21T04:33:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T04:33:38Z,62.531,-170.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-21T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T05:10:23Z,62.529,-170.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-21T06:20:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T06:20:53Z,62.526,-170.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-22T00:36:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T00:36:01Z,62.482,-170.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-22T04:08:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T04:08:59Z,62.41,-170.78,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-22T05:49:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T05:49:11Z,62.405,-170.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-22T09:42:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T09:42:44Z,62.309,-170.807,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-22T14:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T14:25:59Z,62.274,-170.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-23T00:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T00:33:21Z,62.232,-171.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-23T01:30:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T01:30:22Z,62.198,-171.159,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-23T03:45:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T03:45:10Z,62.17,-171.209,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-23T07:15:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T07:15:13Z,62.11,-171.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-23T20:15:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T20:15:19Z,61.942,-171.594,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-23T21:25:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T21:25:39Z,61.912,-171.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-25T16:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T16:01:01Z,61.638,-171.144,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-25T21:49:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T21:49:25Z,61.515,-171.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-26T03:17:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T03:17:34Z,61.414,-171.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-26T04:13:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T04:13:26Z,61.386,-171.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-26T05:49:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T05:49:13Z,61.346,-171.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-26T23:44:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T23:44:51Z,61.145,-171.634,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-27T01:27:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T01:27:56Z,61.141,-171.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-27T14:29:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T14:29:22Z,60.937,-171.847,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-28T05:08:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T05:08:52Z,60.725,-171.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-28T12:39:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T12:39:46Z,60.671,-171.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-28T14:27:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T14:27:22Z,60.702,-171.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-28T15:05:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T15:05:41Z,60.719,-171.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-28T16:00:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T16:00:46Z,60.763,-171.793,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-29T06:59:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T06:59:09Z,61.111,-171.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-29T12:28:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T12:28:13Z,61.136,-171.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-29T14:51:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T14:51:39Z,61.139,-171.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-29T17:51:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T17:51:14Z,61.154,-171.722,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-30T00:47:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T00:47:08Z,61.156,-171.929,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-30T03:43:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T03:43:02Z,61.181,-171.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-30T14:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T14:42:52Z,61.118,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-31T00:38:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T00:38:33Z,61.106,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-31T01:45:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T01:45:02Z,61.099,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-31T02:25:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T02:25:55Z,61.071,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-31T03:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T03:11:39Z,61.078,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-31T04:57:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T04:57:50Z,61.064,-172.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-31T05:00:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T05:00:50Z,61.068,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2011-12-31T06:35:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T06:35:20Z,61.051,-172.176,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-01T00:36:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T00:36:20Z,61.067,-172.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-01T07:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T07:00:42Z,61.022,-172.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-01T21:40:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T21:40:32Z,60.938,-172.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-02T02:22:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T02:22:11Z,60.951,-172.545,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-02T06:12:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T06:12:45Z,60.949,-172.543,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-02T07:33:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T07:33:15Z,60.95,-172.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-02T18:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T18:27:03Z,61.007,-172.435,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-02T20:16:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T20:16:40Z,60.996,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-03T03:37:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T03:37:22Z,60.931,-172.407,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-03T17:18:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T17:18:27Z,60.886,-172.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-05T01:23:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T01:23:16Z,60.756,-172.101,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-05T06:30:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T06:30:25Z,60.768,-171.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-05T07:00:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T07:00:01Z,60.78,-171.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-05T21:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T21:02:07Z,60.749,-171.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-06T01:13:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T01:13:18Z,60.749,-171.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-06T02:29:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T02:29:35Z,60.77,-171.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-06T03:40:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T03:40:57Z,60.776,-171.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-06T04:10:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T04:10:02Z,60.805,-171.439,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-06T05:50:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T05:50:07Z,60.775,-171.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-06T06:11:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T06:11:07Z,60.766,-171.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-06T07:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T07:02:43Z,60.762,-171.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-07T14:59:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T14:59:56Z,61.009,-172.201,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-07T15:53:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T15:53:35Z,61.001,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-08T03:24:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T03:24:06Z,60.912,-172.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-08T18:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T18:46:33Z,60.878,-172.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-08T19:36:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T19:36:36Z,60.886,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-08T20:55:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T20:55:23Z,60.887,-172.022,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-09T20:14:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T20:14:54Z,60.9,-172.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-09T23:54:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T23:54:32Z,60.86,-172.018,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-10T00:38:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T00:38:41Z,60.865,-172.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-10T01:37:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T01:37:56Z,60.852,-172.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-10T02:36:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T02:36:53Z,60.848,-172.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-10T21:59:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T21:59:38Z,60.953,-171.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-10T23:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T23:39:01Z,60.945,-171.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-12T23:59:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-12T23:59:26Z,61.006,-171.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-13T01:44:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T01:44:14Z,61.024,-171.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-13T03:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T03:50:54Z,61.064,-172.056,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-13T22:32:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T22:32:37Z,61.087,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-14T02:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T02:42:54Z,61.054,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-14T10:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T10:12:37Z,61.084,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-15T00:33:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T00:33:43Z,61.232,-172.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-15T01:55:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T01:55:03Z,61.201,-172.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-15T02:14:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T02:14:51Z,61.191,-172.529,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-15T03:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T03:07:48Z,61.185,-172.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-15T04:44:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T04:44:33Z,61.186,-172.57,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-15T05:31:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T05:31:03Z,61.186,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-15T06:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T06:24:18Z,61.19,-172.576,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-16T01:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T01:15:05Z,61.253,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-16T02:53:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T02:53:04Z,61.255,-172.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-16T03:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T03:20:04Z,61.242,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-16T04:20:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T04:20:49Z,61.248,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-16T05:01:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T05:01:42Z,61.246,-172.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-16T06:05:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T06:05:04Z,61.25,-172.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-17T00:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T00:54:43Z,61.265,-172.294,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-17T01:25:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T01:25:45Z,61.261,-172.304,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-17T02:44:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T02:44:52Z,61.259,-172.274,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-17T07:25:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T07:25:06Z,61.221,-172.387,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-17T16:43:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T16:43:31Z,61.227,-172.482,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-18T05:59:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T05:59:48Z,60.996,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-18T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T06:13:20Z,61.012,-172.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-18T12:17:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T12:17:42Z,60.975,-172.874,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-19T04:22:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T04:22:42Z,60.925,-172.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-19T06:41:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T06:41:13Z,60.933,-172.313,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-19T13:49:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T13:49:23Z,60.96,-172.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-19T22:09:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T22:09:03Z,60.913,-171.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-19T23:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T23:48:06Z,60.939,-171.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-20T06:00:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T06:00:39Z,60.966,-171.841,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-20T11:58:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T11:58:12Z,60.982,-171.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-20T17:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T17:20:06Z,60.973,-171.768,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-20T19:41:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T19:41:46Z,60.957,-171.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-21T01:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T01:58:36Z,60.857,-171.828,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-21T04:00:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T04:00:49Z,60.829,-171.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-21T13:27:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T13:27:08Z,60.771,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-21T16:50:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T16:50:02Z,60.796,-171.915,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-21T19:31:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T19:31:28Z,60.78,-171.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-21T22:20:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T22:20:17Z,60.729,-171.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-21T23:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T23:25:16Z,60.717,-171.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-22T01:03:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T01:03:16Z,60.703,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-22T17:13:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T17:13:17Z,60.705,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-22T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T20:47:29Z,60.704,-171.886,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-23T00:53:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T00:53:18Z,60.666,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-23T02:22:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T02:22:34Z,60.637,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-23T04:01:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T04:01:29Z,60.624,-171.912,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-23T06:37:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T06:37:11Z,60.627,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-23T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T20:47:29Z,60.495,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-24T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T00:50:28Z,60.504,-171.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-24T01:22:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T01:22:43Z,60.509,-171.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-24T15:14:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T15:14:07Z,60.627,-171.946,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-24T18:57:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T18:57:40Z,60.649,-171.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-24T20:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T20:34:32Z,60.675,-171.934,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-24T22:09:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T22:09:59Z,60.682,-171.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-25T01:12:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T01:12:57Z,60.656,-171.976,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-25T04:58:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T04:58:52Z,60.683,-172.041,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-26T00:56:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-26T00:56:18Z,60.842,-171.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T02:24:24Z,60.894,-171.593,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-27T03:25:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T03:25:03Z,60.898,-171.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-27T04:31:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T04:31:48Z,60.883,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-27T05:01:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T05:01:48Z,60.884,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-27T06:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T06:16:03Z,60.887,-171.636,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-27T07:18:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T07:18:18Z,60.891,-171.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-28T16:09:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T16:09:15Z,60.941,-171.815,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-28T23:49:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T23:49:34Z,61.026,-171.852,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-29T00:22:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T00:22:49Z,61.033,-171.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-29T01:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T01:33:22Z,61.047,-171.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-29T15:57:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T15:57:01Z,61.083,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-29T19:44:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T19:44:01Z,61.067,-172.076,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-29T21:15:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T21:15:39Z,61.064,-172.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-29T23:46:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T23:46:36Z,61.055,-172.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-01-30T02:44:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-30T02:44:23Z,61.056,-172.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-05T08:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T08:17:50Z,60.796,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-05T12:30:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T12:30:12Z,60.777,-173.023,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-06T07:34:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T07:34:57Z,60.769,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-06T08:51:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T08:51:16Z,60.771,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-06T09:15:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T09:15:16Z,60.774,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-07T02:51:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T02:51:53Z,60.827,-172.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-07T05:45:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T05:45:57Z,60.81,-172.608,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-07T07:17:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T07:17:06Z,60.776,-172.612,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-07T08:30:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T08:30:21Z,60.78,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-07T09:04:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T09:04:32Z,60.791,-172.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-07T10:17:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T10:17:02Z,60.771,-172.618,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-08T02:26:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T02:26:57Z,60.76,-172.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-08T05:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T05:25:31Z,60.76,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-08T14:12:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T14:12:54Z,60.759,-172.731,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-08T20:47:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T20:47:54Z,60.78,-172.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-08T21:00:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T21:00:32Z,60.796,-172.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-09T01:26:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T01:26:42Z,60.808,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-09T03:52:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T03:52:28Z,60.819,-172.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-09T05:12:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T05:12:49Z,60.815,-172.733,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-09T06:38:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T06:38:46Z,60.818,-172.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-09T07:55:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T07:55:44Z,60.81,-172.749,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-09T13:26:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T13:26:27Z,60.818,-172.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-09T15:06:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T15:06:35Z,60.831,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-10T01:35:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T01:35:01Z,60.821,-172.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-10T03:18:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T03:18:09Z,60.825,-172.764,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-10T05:04:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T05:04:05Z,60.85,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-10T06:16:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T06:16:05Z,60.843,-172.782,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-10T07:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T07:28:50Z,60.846,-172.783,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-10T08:27:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T08:27:20Z,60.847,-172.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-10T09:09:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T09:09:20Z,60.846,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-11T00:54:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T00:54:06Z,60.886,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-11T01:33:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T01:33:51Z,60.885,-172.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-11T02:13:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T02:13:36Z,60.896,-172.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-11T03:00:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T03:00:06Z,60.883,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-11T04:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T04:10:36Z,60.886,-172.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-11T05:31:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T05:31:36Z,60.893,-172.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-12T06:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T06:23:27Z,60.996,-172.49,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-12T08:26:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T08:26:18Z,61.008,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-12T20:08:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T20:08:15Z,60.973,-172.282,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-12T22:56:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T22:56:36Z,60.974,-172.243,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-13T04:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T04:27:03Z,60.949,-172.264,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-13T05:00:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T05:00:54Z,60.953,-172.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-13T06:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T06:05:08Z,60.963,-172.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-13T07:56:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T07:56:53Z,60.985,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-13T08:05:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T08:05:38Z,60.988,-172.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-14T00:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T00:23:27Z,61.036,-172.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-14T01:46:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T01:46:39Z,61.036,-172.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-14T02:13:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T02:13:39Z,61.029,-172.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-14T03:01:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T03:01:39Z,61.027,-172.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-14T04:15:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T04:15:09Z,61.03,-172.064,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-14T05:53:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T05:53:24Z,61.039,-172.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-14T06:05:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T06:05:24Z,61.042,-172.108,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-15T00:12:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T00:12:23Z,61.082,-172.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-15T07:36:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T07:36:58Z,61.018,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-15T22:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T22:51:07Z,60.951,-172.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-16T00:28:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T00:28:35Z,60.952,-172.353,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-16T04:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T04:14:53Z,60.912,-172.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-16T07:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T07:16:03Z,60.907,-172.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-16T16:17:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T16:17:45Z,60.868,-172.592,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-18T01:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T01:27:03Z,60.998,-172.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-18T06:28:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T06:28:55Z,60.998,-172.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-18T15:19:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T15:19:37Z,61.029,-172.364,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-18T20:10:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T20:10:57Z,61.009,-172.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-18T21:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T21:49:48Z,60.992,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-19T01:17:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T01:17:19Z,60.971,-172.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-19T03:10:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T03:10:46Z,60.981,-172.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-19T04:55:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T04:55:31Z,60.987,-172.386,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-19T07:40:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T07:40:59Z,60.97,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-19T11:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T11:39:37Z,60.945,-172.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-19T15:07:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T15:07:16Z,60.966,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-20T01:08:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T01:08:21Z,60.924,-172.3,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-20T07:19:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T07:19:40Z,60.967,-172.338,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-20T09:00:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T09:00:02Z,60.951,-172.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-20T11:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T11:33:21Z,60.968,-172.362,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-20T16:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T16:58:36Z,61.034,-172.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-21T01:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T01:22:30Z,61.029,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-21T02:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T02:20:06Z,61.034,-172.343,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-22T00:38:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-22T00:38:04Z,60.968,-172.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-23T02:11:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T02:11:45Z,60.933,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-23T03:05:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T03:05:45Z,60.915,-172.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-23T04:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T04:09:30Z,60.921,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-23T05:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T05:49:15Z,60.929,-172.278,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-23T06:06:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T06:06:30Z,60.927,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-24T23:08:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-24T23:08:42Z,60.957,-172.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-25T13:58:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T13:58:47Z,60.953,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-25T20:55:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T20:55:47Z,60.933,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-26T01:59:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T01:59:55Z,60.889,-172.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-26T06:42:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T06:42:50Z,60.806,-173.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-27T07:55:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T07:55:19Z,60.811,-172.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-27T21:34:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T21:34:24Z,60.89,-172.521,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-28T02:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T02:50:11Z,60.875,-172.55,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-28T04:07:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T04:07:53Z,60.879,-172.558,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-28T07:55:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T07:55:54Z,60.898,-172.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-28T08:13:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T08:13:07Z,60.889,-172.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-28T09:37:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T09:37:07Z,60.894,-172.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-29T05:21:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T05:21:48Z,61.012,-172.577,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-29T06:21:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T06:21:28Z,61.006,-172.552,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-02-29T23:07:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T23:07:10Z,60.936,-172.366,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-01T03:09:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T03:09:25Z,60.93,-172.328,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-01T04:22:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T04:22:46Z,60.92,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-02T02:59:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T02:59:35Z,60.914,-172.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-02T06:22:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T06:22:25Z,60.88,-172.22,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-02T08:03:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T08:03:30Z,60.896,-172.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-06T00:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T00:25:59Z,61.033,-171.893,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-06T02:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T02:14:55Z,61.091,-171.993,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-06T06:23:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T06:23:29Z,61.074,-171.987,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-06T08:07:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T08:07:06Z,61.083,-171.921,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-07T04:37:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-07T04:37:13Z,61.091,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-10T06:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T06:29:55Z,60.917,-172.193,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-10T22:53:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T22:53:10Z,60.819,-172.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-10T23:30:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T23:30:55Z,60.816,-172.07,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -ioos_atn_38553,ioos_atn_38553_2012-03-11T01:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-11T01:09:51Z,60.817,-172.102,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip similarity index 63% rename from datasets/atn_satellite_telemetry/data/dwc/137491/atn_137491_spotted-seal_trajectory_20180418-20180526.zip rename to datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip index 64460106363f46db2cc00b40c575d589bd089316..e51d057f74eb3874c760069e1714be6de3c49945 100644 GIT binary patch delta 1640 zcmY+EdoS()YDr-KVQfrM2y zH3a2N(v(sCnTe2(!<-T)c`WqxVC`Rvb6Sa6wll&YnN%_y=<) z-rUsp_z>QQ-(66w*61MmTp2I+-txV#Rs z-VnvsX&EUQi5tO^v|Dq81487%3|CqT9xfCsENUKi#qGP*qQ6qr!>Z`tP9RZs=vs&4 z3=ny^`F_jL$TR9gV{OMST24ceo#z^OPFEc4a+@iWCUy29LDv1;Qlr3z@@_2%CHK-j zFmklop$nSPdK7ncwuqK|@bQ+PFO%~3r#_5cPVz1)^U1xG?)iEIUZ@CS?k>u={Y0ba zV@IMp$i_aXhx<=CAyvo-zK46J0@s}x-&-(e^n#yTYU`zT$}0bMOgs}8K#x*0-KKY6 zU%^Ae=;bas3w^UHo>ixpzHTE&-;MB%@zI`_EhHIxp(&Xk-l!mqa_%ldXFkXHsWUCn z!?$yX6R0V5Vz^X!pjJbDQ2iowy;YgxKHNAc0K_PBu1LAKyx$LR8^+Gtq>JS42z}B0 zXJ_e*5OKGKj{HEUr|P>08=g^XX;TkR7v5fJb=cIM@8{`KYNHA{=Nr44&s|-@$FU8L z_~WtEuNtT{R}KcMBXxTphX_SmiT5gh=S5VQmZF2t=XeRsWs1vu;YvLN@`4k7xSAy| zI!gP-^bpaBoBiZzOZd0^1El|q9ZSWAoII!+xboEJ^46h(J(!B0SBxtzGI^p3J{EJ6 z*#6cy>^j?z!Fn7;Tb;7hz2Ri5QOt=OMWYRylbs9I8q)#}!M<9sQreE?w~jS_cf9uD zpzl{TXH3lwn5|~Z*e+KV0c!=;k08M8BlN5X(G&OBli`OI%xY&RM2wJazO9@epFeeh z2lxr<9}i?b+LIfM=n~vWWSE_CzvI~Pxr9$Xi;VD;>#=q}S>AE(z6UJPF{y}s(n6m9 zJcA_^@s3j+$~+wk7!P(nRXh_?J?eJuMeO(u!^4`rS(WaZmqv=}zh=l&H(sMlYmI4!Fz)kjk=Y65Mn!Ze#tv=?K_$gRL&1-klyi{G(e}rpztv0u^gJKht|s^LF4@vzN^; zD)p2VE}TjlWcxpgFSdQOmHt>?B+ z{N_YTeWl$`wM!iec1BtDdS8g(^UJMEV*I>eH8s?VJIU=Z=u_+P$en?Dkv=8>H7Po~ z2A3z#_(Ux0&0_njCt3#6YQUzWrrg;>jRM_#TWv-g&jj-?;ia{x+t6iyQTgSXxiwAj z_;z$lb9@u)YF2Q~@NU&95u-VQtvNn3O%h(6eZ4Gd83ct#o5pvVENlPGqO2qgXtGS3 za9z&v8~in>a;w%2HqrC-V_)>vZIoayOsoWzU|B#w!k~)l_{?$M;=gt6WgVX+E3DkC`p2{2=~tX2O5aRts< delta 1581 zcmY*adpOg382{NaMJ{8}<~BChA(h*5S!f)yl2tS@DZ02@u7%}tT*_r_(cFrptT;za zsOUm+Na(g`Ert-r$mO7;Gd)lB^#1dHzwh&TzVGvSpYP}MKC)OeSKaFhUIzmJU_CHL zkvjx?Bv5=QzTK7p09$4md?&3s$2P2ar^2o?=+%~dr21Hn)rN*Wj`q%^YuM^3W!|7& z6)#GAH9@U3oaDrI+K#fdT`onhsN|KX63T{87+s*JJ47^oG~H;Xo^xr{8Aq?}bG!8J zO?y1|Q>U^H`HRR~n6>;?=u{*mcw#uV<2V1(2&(R{rUX4tP}T}7Fb%1^!S})teV!i1 zv4gzWTH4!(mHu!Ie*nOzKpIquBk)luNPmDWzcgzcUGZe_gVEc2OIsW{1^N&|cCGn` z*)WDD(#YEzB%_<#+8@`^x-=>CJLAp1&)`BaV+S!~J27J{Ejl1H(&Xr==z#7QgqEE! z$$^BjX@&bFR#r^nYyTh%`&*JX*7Gm+P@<6Al^ASReN17)sR*nnq9I(Qnh+eATwle@ z7)GV`%5&Qm^&E@mxjsJG310)h%Aw>?5yEa-u_lY{OqKK0O#i&qo1RrYVLgFcbj%Q_ z-JkDBGrdfEKjub+-SJNa^G1-T>dcWCw&B^KmSn@x!w1O`J{uCyMSMY@*~+_-R{t36 z>vPE-Mz50tyRhxbq>4h9i=T)L0tHq8k!G-Qpu>Y)#nVuyP3dSxpwHNftc!5Tq&LQo zdJ=(ctT2Z@=yK{LU2UnQHZ4p3oQmT2k05A-8T*0(pb-iHj^eRcF>4TV?!tWcFrI}% zTffw#wc4^jxYnVa5sYyQ;oSY4ZS%lN^vM|JTzC)DTA+sdIr+NukALPeW} zw^6I0Fkn?IyAnbAt72{nCFYDxjOz=s%W2=XR}q4ONhtD7bQ za%VZZ2tCu+rrT=2Pp9}L=6yo14B`sobZQLOb5v9`|Ni63e3}H@t-V`deqiXnx+lQ{ zG>>h(W5&clEK8zBMfPRKM9TQe9(<2$EMp$U5)LQtF&R^@@0Z$buV)-t*Yc{5hFBM0 zexOv4LQw)$Dn=h$D0}L}lMV2Ij1gl0ye5!7*3cbU14-sP_nkHBy;9XaY~rii;eDjA z$Mm^-bDMXL-cc+9FOq_yZPIY4SX_#$5iFZ8zQVlibohhYiiryi{>(}1R-LYYlUNm0yR$yc zbmC-Um90@dm;QHNh)<-$cke7EY7Y z<^sQPakRYgsA0~X)Nh-KCG@3!tuK~8WwoX%&N;}mJb3L8uM7dp{${w$TsQ@}R{714 z#K!a^>XM8kn2$l0%w330-+{kL^ao0u>yn~CVj!OR5V3Ks8S@1~)xsPC00AMvCb1#G mdtD_!FyNQx?`b5P2|xf)B)7H&ennl99#cbA6=DKktNjla9K2ir diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv new file mode 100644 index 0000000..7c44d1b --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv @@ -0,0 +1,3 @@ +eventID,occurrenceID,measurementValue,measurementType,measurementMethod,measurementUnit +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,69.0,animal_weight: mass of the animal as measured or estimated at deployment,69.0 (kg),kg +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,129.0,animal_length: length of the animal as measured or estimated at deployment,129.0 (cm) standard length,cm diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv new file mode 100644 index 0000000..481d8a1 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv @@ -0,0 +1,2 @@ +eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol +atn_137491_spotted-seal_trajectory_20180418-20180526,2018-04-18T04:45:00Z/2018-05-20T19:26:36Z,"MULTIPOINT (-165.0651 63.6222, -165.0595 63.6399, -164.4277 60.0415, -164.0013 63.365, -161.5203 64.6676)",0.0,0.0,deployment,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv new file mode 100644 index 0000000..c7fe607 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv @@ -0,0 +1,6 @@ +eventID,occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,minimumDepthInMeters,maximumDepthInMeters,dataGeneralizations,bibliographicCitation,occurrenceRemarks +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,present,HumanObservation,255021_spotted_seal,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,0,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T06:09:20Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-18T06:09:20Z,63.6399,-165.0595,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-29T07:05:19Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-29T07:05:19Z,60.0415,-164.4277,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-05-13T20:07:00Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-13T20:07:00Z,63.365,-164.0013,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-05-20T19:26:36Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-20T19:26:36Z,64.6676,-161.5203,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml similarity index 100% rename from datasets/atn_satellite_telemetry/data/dwc/137491/eml.xml rename to datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml diff --git a/datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/meta.xml similarity index 100% rename from datasets/atn_satellite_telemetry/data/dwc/137491/meta.xml rename to datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/meta.xml diff --git a/datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip similarity index 62% rename from datasets/atn_satellite_telemetry/data/dwc/137494/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip rename to datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip index 985a8d1696b769be6fd71e8b5dcbce726457d5ce..87522ec9f025b4f09375b078e6326f1165616ac6 100644 GIT binary patch delta 1334 zcmca;_{&f_z?+#xgn@y9gF(ZOKe{`{>B2W4FPM>m!FKWjafkZU^Zwq49RyfER4=@* z_+`n4PUDkh<|nVlHHC36;GV%D9r#weTTN)|NrsR0y%b}x%QTPkN4V7u-H~+u($d? z%lUnu)9kWun$F0KJfZgG_ul&Qj}xOV7i8G4OqM^U#yUkISTw%dV!A}ioK;c_Vv;&{ z?EdW>`*_nCwf4CYYqs~7ZmnE5@6`)6x4G&Q#9fyt1WINJ`YxFqlV%k(qk-wGchKWV z1NTZ%k8bWvpL}s9p&fS`*&e%F=ZfB*o+&rk&^FjaHF8$k`E+|&un0rKrLnQXz=xTE zp_-q8!3h{H=9Bvw`Rl_1`yZJJ)UChr-(Z*e1Rpa#&c-*F@8(u-zy59$)4QjuxFpk^ zVq~m0oxOJ{{yyi1?J>K9es2g}FT^2|_DHh+-?QHe75!>4@rK$@uUVQ1?dN*t*s?ZV z`{C62Va8LgO+B+~tHCMrEke6LX$wx6su8OE<-F304Z8D_vahutk;?6KtoMxCn>%BA zmsaS~Cu=i4_$!)zTa>xg=(Tlv^VG1-ysS%eBLw)booTsguyz&S{aLF%HgdjS8`835 zPGW2Ihk2gf6;l_!aqo&1IMs4@>&}A>=Qg`ZUd@@Uo#Xs>iU@zb?=+>3@{9|dYwMN^ zM>)?~F*U60txL4_&#>0oUoE>N%?{<(|M`BuGhtfIjOCL{US7#cJ$qpBh0_m?p%QVq}VkNO+qZPvB;;)Lfp2R;{y^s5VhJAC&~>_k4!%hgYtgSV|+D-ytY zf1_^wjcYTVszb#}qHbN;Zc_e5FmuU*K*?EYg*WE7Nd;t!3cTpzW!s*--d9~n^~Rro z<1Ra|HijOV>lW62;n$-_i?*!Ft~mHucORjzn@&Gn5a=Oz`W2hCr1bYqweJI7(Ux9+Fl$blu>1^77@4P8-w(t;5Wg^sb9HI}=uE zs#j<+DRZjg`PL~l^)p;Qa90Lb@a%W{P{?;(P2uEh8P?#=LkAoKe%qGYB{1)O{j%g< z`(c5^kF0-n+sQDN@n)_p^s`N(k delta 1288 zcmexmc+pTgz?+#xgn@y9gW*dYU$p(sHF}SLJbgw62HVLwjOLRhIO|i-J9-~>5MX^! zz3{){mn9oIjZc=DpS&8=6vmw=Sf#m8wp4Mq^rV$D>fdi$At) z^m4|LXbzj6YoA{?3!bZbeQw>tM*FD!ipvUx*8Tp~f1SygU#0Kio60%w4|g89vUB0~ zf3?oh2(y^PF1cC6cnrL3fgem3Hbv;Z{kF0DBeFI2P|I`SdlZhi4W z`^}@WN#BLy(_dAeo^nLRz3@`eM_$xWU|OTN+MJnz;WZxvgA>E#Tt?UWX$SLeTL`qh z=l&wgW_y!iamS{Vo2ORh?#kUY+hW6AZ}C>gVC8NDS1y&g$9{jYo^)9)m${^TqBHl6 z4T?MmCHemUw2!E0R*RWqto`(yrHRmfE-}ZJx#`&tr_K*8o^oyKnO(gGr_8qq@BUIO zIAN+rsPdQjN-H*KzfaCKYj5SfB~;%$X-oBW1AWodRbD5xFFr6=6#cd+bF0zp?DXcT zVViYXm*z$YY`=D<^`_CGLR8?V*EtM^Nsvps~jUOSaHCnH-me&q#y`w4k{ zz4Zmr|KFIWu8r?Z2& zPn(0ctz9b;z!o zPuKTJXHdQIXu@%qotGO!mvp;@wO{!4=*yNZtF$XlJ=Qq6jMM(_m1Px|u6drR@R4`( z`m*24QvN{Lgof9(FBWd%b6RV2rR=%Vw>f9RCMkS4_v;tWzYTG>rT5=8R+t^Yp8laL zs_br`w`z9dFP^yisG<*T2TRRg82?xhU|i9ybmfJTgi7HgUga6zZ#ga3<&nFZ#WCwp zp4^3*tXk>P0v|f`9HzB8N;9nx;uDi_>Rh|6TE|gxm*639m4oIR4(#^&&fJ&&OetUj0QTSypS{;wd+n>GhK)mkfq_AQ!Kp!NqWPR%HINzuqfZM1LmGH$<>g`_ zBql5@WMOS<tpNU z#b@K`<7}!{^{l~tj(#8fs8uyIgTDIwRAinY<|{@rStq@f_1u$(FNJ=tOMJQwZr;>m z^zp=+9NrIl4>NR?xop23+JZE=-tF(cySs`eb*no!?yVu$yOSM=Y-$g{bhlT<+NWKNh-}lZe@n{bS{Ebk$1P(zL#59dh=`7X1yJnTW7p?7jt{J=MeDq z?hN>1&Gl}h#q|~)yt|q;ZxIlDHgMwVZ&Yq#6meU_cD%AxjWAo9h zH0Qot`(pF@vbWE2F(#-k+POsR(#(m%un*^9g(tbUCoiPRrSJ`jI}tu7ip#g5>BLVk zfKYtB(@sIi?#H`+y4-oIKq2&&bP?l`x9;WhSFRZ=&{V^gb_&YVMyfnU&?W};qHgV$ z#TptXfSr~) zA7D=J;(c)7rPm%UJg?woUC3bEKh<(D-^s*I#|9QI0r6Sl{uxb(%Pfj6akr3rkql{Q zaq{=Z&OB?xuwm0t4otN^kUA@V*aH zrg9lmVS@3B&OKqz@8c2{6&+VT7hC5g#tHlb`4=YP~{#mEr&&%j2_$4bkYQ766Dnbn`;z(p>z zrS_u?o}?UO3s3i+CkKOg=&p3VY$xbR1?Y*N?YsTee$zGD0VgbRJ{7OoIU)@@aSCHov~8-E2g4kQ`+HY z@lCsy&TTPB7E#TskK6B~hp#DoD}p>(e|t)9%4fE@<}+h_XgTAx;H+bg3ZTa#-JH4P zu$$t0y5o@EUf))_h01=H_y%k8@aO1HJ;KS^Z+ft5XU?axvmEbXO*o`84~@k`7rz+i z+;l}CATtEi10w$kkYdnYtyn0tT})5_{8rhb;h~n zB9<_I@}aSP{^{?wwCO#o5ngY6LW2v5@WlbWHe*%#eJ(iWb_E_X?JW!Q2X?Ai!Owvd zJD@_joxqk=blVYsEMkyh!CpGlIQJVB$q(#7iBO-~V2$dg!!AWh$U1&x)irB+{s+_f zz{IiJIZU`!nE5~_2Z|_riBcLbrTZ~Kcg|){-z`5(NzDLR!MR+>R68&t(4Y3P$Ja_ z`xts#O!p&}AuT;nP&G9JqL)TaDt^SPQ$gHTxIK1%rZIPd`sv{Os=t!%RdBD9&D*rD zGM|@;&*SZu-vn;q)1PFyA(M$!dR69)c7E`P!o`#7_EHh79#W#)J6$I5pY znR~mu#Xk-kkl`YD8}wF+CwVWj2bn%Ff2&5W4uXYpE>qrNGz1jo(*226Hf^1GAunPw z;88K}5M-Ob)%3N6E5FYEQS42BF3vj%Qr4fzjT2L($(p3!DAtK81<=Qc`U>+aWOSE) z_JZI?vmF)mu#YrnW35ywC+^!#CDq_RE>7)%lP^^n{B2#6KrI3XzN8%)9X4{y7%BGd zP%!3?q55#wS3-CM*3Rrm@zb;wy6U&A=~9EloavJ-9oj)c)T4tTvBUBRS`MBVOsOJ; z7|-ZTH;)n2uj0jD#j4qV2sFMtpAnlbd8%Ql17}Ur%ru|)JR`21<^HVZbN{p-7b+I6w7Rwd* zaa|?0!80sCc30u4W9MMH*zJt?#B|OQt_w%%5*DM5*YBq54moo&nJ;-Pd_MaqBP_~J zOTQ9A42OD>P}BH_3yG{^9Ru;F<)%dF z{P}0s!fVw5F@^-Dx-dL({w<7O*fYz;k#QfFblpH%v;|5mdB0e35C0HNF}^HplAu{L z&WV$@2Sd%W@q5X?eJObv_V9@iq2IC8OM#d3?zP8dNG zmaTRK*|BFYKbK5oBFOjYY_$!^P1fIBWtDU+&!ez1Eg~Z1*7mQ`*GGb;-}bb0u5(gG zA91-ZT2cfFjyJ40CDi*)UY$4Q9)xPM$Sk#B%#sqgW_$W3{MzW)su&d8QTeJ#?`T4x zLk4e-57c@rDXbkTx@w$F+lfyytkp6{;Qi#C%lx8J>U{Pi#KYCRM}n&Cp>q10B&Ia- zlD|txBcA2mY<_fq{m53VQ0}92f6bz=X5mA*pqNwRiSXVMFHty%jo>M?o4-)U27?x5 zKED1Ri+1-i{-7k1pq}G-dk@BP^jSH)marv~^6Yzfj^pfBUEio1W#e*tLxG+dSJcZq zVMH+0^($30k?#OSr{bh)E1UT;9`j48!*_<)!ta}%1~IOyOMeY`|8)4dEPVJpBu-q6 zFqE$IIQV@W>sa}Au)$7b;Iy>ck<>?cr%cNSI$8{IMwaI`Idc7l!iIUG6Io0z2GurS z6^WRx_?pMqH&u0NKRfGWEX4Bu`BR&3ep;V1&2FiYv%~TPp<*n`HT~-> z%GKvl9~Q0WV;S%rt5YdDl$Zlz974BlH!)>=Nh<>=Ik!hf*q_0Qnl@~6+CO*JM6YBG z5&l+YJ@Gqz5#5$;C>-$CtW+lbllX_C62C{hJxm{d3IF}!F*a}S_S9k4!VN^)y2zQL zkDyPY6ETicr$_&_@WK~?US^17IV*B{FPX)pHQJqs;NJY2hY^48ifUUQ_6_(C^nrse z%V>X*vAq2q%=ejppbnx!*gR$>jOk-&jR2}mEmy?Z+|;2u^4t!8FOdi&;Eb654`(DX zT1=bLl*i|*#%@74PUR{SsktNOfR-`k=k)E*#GK+3RjUo&@o(PKS-5vB94LG2zgBB_ zuI2Qw&ivJ-1NWcF^y6@x86)w@-%~h^(gR_i3Y+mTycjAuDM4Ow5ljs|r$zYvyvuh# zAP*a<4p|=^+Ur9;LE4{HSE8w4J@d6YB89uP?&tCkBEBC}97W_UL zwN2PjuhFzF2W>&yyDyz4Fn!Rf2HTjx zGtlpPN4H$ADs2+~m>Kw+BI%&(?_c$-BRhLLztotoi7GY%#xv$Bmq2VfO^16v40|Y{& zdfkr^U)La{9x+C8&|{8^$E6@)T^|l<@gmL1S@h!iqUSEGOSgHsO?wS zq1<{JS)Y|Q3(b7?ULB;IzVENhE9LHaGBdHZq}Ai_MbX@s`Fo(=HyNkd;DG$YrkYeM zy3|OUC}(6lyD|2FGri0kS-aJunN`Q>5pb0g?iqQm6r*p|YAKb&(=Umy`snedrZdoBvmSCX+#@^NFq z`PN4Dd?tT|w*BYA>7%n$dWa;9VXhFp_*$YrFg4zE>D}IC9?Zzx=JG zr!5Yv`C$BG9z4~UbOTn6R|vbx@?#m{t5Z(Wj!zP+)b5;qZ&TuSTpP1vw=;;8vy1Al2fekKw4~ zme|DxdtF)RU77pT=(4G5AkBc-&CkfsOtyTn{Irjf44>`p?*tPGTTpyT_;e^t^qVzT zutMd*MT}jwhi+zuL6d+ZzW+}JNDTEAwOrd*d;{dNsDt(lWd;)5~AmTGd0izY*G zQt-w6J3_f$}*Vv=!!0Jx-3E}Tk>eXG{;gVqCG5_JVv zPpvW99fgyS`VVJ87^>`AxzZJ%^$3ZIC&@&k*T=%Gmoq|6VCIh4Cai}Kv9raMap-rS z6FxAox7{{6dvo%PnQ&>3l49NDR7**ArU<)xmWo~7cj1eQC5-glMsU71t)nUSdxfe; zLd(H@6N38E))Wp-d8Up^3gWU?&E9Sq2dlrW+2$ByDpHU=?(p%`p|bm zGMezwW#K#A$JCQE;%z#@Yd8-spS}L}!oSTb$j{RoY;i1<-pbsR<#cMFw3{58D>l*C z!-#8{lpsJk;p-$B$>OkZts2B=&p7VzV+^4;Yojm*ZBT{KDMF4?CjXZ~L( zy$2hO%)*1yE#$NiIFPNs!G!CVR%gIeYofpvse+_>d z!zMTLLM44-n6#149WB<I$DQBac zBe0D3SNtrjDP)&Nay;X#tbn^g0o^sM0eH({MOKc_i8devnZ*QAaw3b&(#BA zjhPTVcsod2Sc^i(;o;NZw}4;W%@c%L&v;rZ691V>g*o!iT8YUu)VgkZY)AEf!+bqy z=6K`qsn}+2r9~`3pVSi1GB3$KN}$U{`y(~+P|gRkeGEaHI${|mcf-vPEVsVTd6O6i zb#deL;=8DAUyM|`TwJ-5w-y^Tk90#hSaE;p7bvTGgz||8DZY63tntg+5rWXq=+75k zoNDUg^UOq*JN>i@ojwE3lPyY8$1}1Dik1V~hs-8=JLIcIO#w1^K%Zzb41HD?v zBY*jrJ*dG*5=n>QIo1o0x{HjEj=MXFX`_%G5{{uufE(HQhL$6YU0yajlnOyB!;NT) zw^Luoimp5)!bs4@3OEv7>E+UwG{Shf@_OMBCx*;3r-xVaZ`gIk!&LJZYz*MK;Nq@h z5_M?K9(})IJ+X1iuP5Z*ugl`2bK9Q@Z_p+^;7eeC^PNB`KDk8iOCRE{Y`Ff#O`tR< zt(5;ZQ~LOfS8c(F^$_`E0^3x6YL{41E#oJDgj2rf_AR@H>_??mZAl@<=pBu zjLuWV(eg-)bj!C)oDVq$p4rVwXQO9BP5A9!@k%tfP0V59_`dUfOxCM^9Lnipt97)= z62WTtCPHnll=azIEY8o#o;0bkhWtik{@YF)K_MNLCJ`fVp1)4E24wd1p+B}u_GzX) z4pm>GYhA@_2jn@sHqu{@c_D~dHZ6>!WDbHTa(nt-PY6=twGoy@5!4v^*RP&DdTPp& zP#1QK6U!eNH*O!BR0z%gZLIdY)L#7A_6pmxtuf3Ag+Ym#T-B{XjUdXKUk%hnFx+Fbi#B4rPdyviCe%KEumqIBF zzukG{R%p$1xt*>H$yce9y<|9hm|vs7{(Ps+_SMqBPqG#!S+bgC&$*+V#iIl1(nY6( z95&(EM0?^1sjTG6Gp}8vtMm#$ihW!7htM6)KtbVj zZ|!f-nN*qoaeuacg^8B^aGXlKJw50NrEK?@k(PF;CH+w*&`E@c^{%dXxiOaF^|zT^ z3t8^NeJ-lHi&8kzUOa9qh)(~{s0q&(O?znn?@w!B|B$l{*E{sVjqk$E^-}jy%U-S~ z_@G?VRp#dU;6T(>rv2uewBrV{wl@zxzdg8#UTE__J4I*IXjwa3kOc=^%^l?3UO*5@3vJT3S+3x#)0PhK(b$na z*dGTRbTqaH4!YX)y*ppJft)S0-5ng{C3T$N-e@M}&0lX_`Q9C)=VWDX&rch!kAS5X zLT-@=QD)ipyWO1wp^MwRT=3Ow$RRUxMc-`%3B?)EKK?m9)GL8t~-vnOkb z%y(;5b6>M!I?%rm3t+!nzw75Rw|lbxj(&|s9YupTWVx8j%dakEuXR>zxHO+ihoIDg zJd*BKnZYL(Ts>M$cYV29y| zZpd{ZBg0LxjXul;~3Z(aJ=*5?wKS~+19&@?lBbja%e9}wxlC4=v?LY=DIH$ zrMY^BsOswm2i_e-cLbepp*XI>?hg0nL(aOh)|l@Ompa<~eXmsy?{1=jLDN3?djE9H zIOf2}*OZQtp5jTA^2=naX~K68HbLWtkpSa()5 zb%-=mqAZ*ge0rss$21>uHyqM;cfEAAws3cTyO4O@u$KrE$jcP{|R z8+3gj`|Bj{ufiQWGKB5!^kD2r6WDCS-9Bl@fA_Wh>1RsQ49VN-e=IsG5nFxX80cQeVgJ}?Z zE?31eA&I023&y*v^Ev;J^D%H{?%#}O9;v2{-N$>tLehJ=cXx6*1;mb)B})zqU%ks@ zTBvLBK#}_F#zGhJA!Fkb3R(IVh~`cHUdlM`M&qRbp73PriB$;&dSv1_f~cbNVTHv< zZ;rh`d(DRSpzh7A9f~Xqa_5Vf@yM-G#$qw9mEHFHU)S zc*p}!kd(};O3xto9Ueo;u5khb&C+!jZzYh0m*p>kDaYu+B&)x_6od_cD`yh`Epvr<1Lx+aS8>33_8ljkK;sHw zg=nKM1UorKF6B;*-wfPv5J>d8iLBf}%@eZez;KNOA}xV! zukC|cl_K>~#^nAGlOb;TmI>JST-i+^ot}6oa5EW)FbYTg>sa87e~rF+!4S^(nKA&= zl8hQ(6;qHzXtNn^^@v$tL>PFQa~D@!St>_}RJqi8a9$YmHWZN2S-i7ZVV_L@?T||m zqcxFk_s3;wfLg%vB*Fk?&fZfpO{EtlQso~MG~of8;}Z)L@=#5_+ zxqtpawDa_^2)^e?2MY)<=Y__^P1&$O{FB+_HEk7IYQV|i*3y>i{ z!s-0|gx7?1Pn+L0u+?^eGT5I2`RUhAT=~6@Dk?RlZg3dtov6@%x<#QSjFZ4EtRG@p zD88T+<&$tEzFzlYIiCOs?VMl6*sWkr!A+mnDQ5iXLfTS30Rz&#zw*H!sKj%_sN9C? ztDfeS|HVuCLcKxtRmABM$e%=|#zHURqnTgbj5BNl!8bUT4P+GH=Ge`&b3 zQ(khf08gbM%J$&J$1*Zq?p%mpTj`ru0%XrMTryBfRniAL51{&u^?$;RYMNpQcFNbB z3%}ez#}^+$zc*1mjBK?_4F{fXi6r^Jn!~vpLnx7|teSua^WHG}>4W$hhkkD~*(;W}qol+WVOfC<~f}AY|1H)}uzb-&#PRCvM z+NyfMQX}ETbnI!U()obc;Sd)|((wAYU?XdO!YXv@vxkY#v#JPMO=f>O@EnJ1x@GaZ`;LED4V!7;J*Lc_$eoFo5Ky9INug7> z5DvQNuzRFoHnz8g3h5oEuOai%Y96pg`ErL!=f@e2m~8~k#y370=7feO1>?07zlMI) zHT)E+b&a&QPXXO}8~+wl#)5m(2q~>L*t6AI#amgvMGGvqP?!>X&KV0>{H?TnRB-d~ z`?9Sl0FVGs&06c${CpJ=3n`ox#ib+x;K*XFPD{eeL0|0C@UC|~WBF;DwLh-Gm??Ks ztHF-v6M0GG#c`m}5GC%L&c??mc(jbh#h6!=Pdw68B8-g2f*v(EaM>ydMBAd-6f#TT z%hTCNgc^KTH%*<(mLfnBdy7TLJ{X!mUOzF<|LUk;KSHDu^?Sk|028;H=g@YKE&g#8 z2ey-_AwERbV=+5R2AZp_>+uMHD|67A3- zPF{1J=6woh7voz^Kj&lT+|{$?^qfVB5j>}Hz)KkR(=75`5%f1pXc+$PPVWl$Icj^G zPey0pP_ZDkAVG`s&~Zp>upp^erpf%z*IYJBvPXh1}5g%{9YTAzGXQrxe8NG4+GDdao@hf zRB>xXj5N>_wrOOnX`#~Pk_{vLx;20;N>DAo83 z2$vWn4tRBZARSHIO(oBShMVv}oz`heD!@W$)LonzH z4sw;5|1fW*+qpLbd%600RP&u9L)K48oTqkr-1waS1>-_!rZbTurxS57cUGRyRkt9_ zM;@h<5SC?Ay8B)UG$uAfvpv(}Nbn=zXSsM)jCFDTws%xDa@~&p; zYcubmA_ztEbNjiqIlGMXeVwVgjI}9|6_{;xZVou%>RSpYctcja7NTN?ql7P@b<=x~ zBBC=p8y^*&QDmR?`V;QZ^mR5CtP(VaZ*}B3tyUwmy-bwihT-1K5Jj@RvMw@)J5+v zda?1F&G$!Kpb#T~Sz*5B_KBxw)tsyt02mOimd(g$0!l`}<^)H@?OKVU!Dpt*D3n89 z5>Wt~+!G7uSF<$zG}0mxq*fCu7aELym<&Mez0{Sc6Z#HQxh>TbMs#mOon}4|U zFuS-AO(_4C-LN*TtnNvFbxRcn9QEse*9yGt^+0&W=@7H)gEg@ z+GzuX$*Uyq1hKWSo>ZzN*H*JSDY+<-INNQ#su$1c{%zzJX+`TY<0m3#x-DD2Cst%s z2FCqTD87x{rCIrwo}i3WGMX@VTIC_>^6LX{NQ`zwE~#G5&DLwF{0M^?bLrxo@Z~IC z+G$yCl^mz}fxuu`0Lv@xTDlQBPU`WsLBZo7maXlDr2I*IQ+3Y-icJ{BrU$@n?u^Kc zrfL4uE(q64zQ4b*?S%Y$sLcdx^T>;v#)ZKeI0?gz8a9h&5CbUhqk;<9H(2UG*L5_9 zYH+7JFG7B#G|?-qAi*ZbWSr3JEn=AfAphMJU)A0?6wyvjEt)$y!kh)D|1&YBz}{Bf zVJRQVf}4cZ*1r{KLMxcqeVxFFHIYG2*yOLsRb^k=9rgHf3WNdzXbZOSH~5f8UUMLD zdm&7YyLNh_S^IE0FSlWMO!8~FJAgC*Oe8lHTgm!-kEK&uw~^NAZhY$Aa$z&|8K}T= ztIEn4vtd(7paLZv9dd41haYqE{9Gy`)+72OZIf9A@HI17z}@K@x5_0M^60&nlWfTnl!w z!-+7jc&_w25RS5?X^em;KGQgI7$8ETIcvBm`wJ|TS$w3teop681$uZ&H2g!y=I&~5 z*ryp%KjG!NFS;)CJn~rvvTb-r4^a+w^L3*<*p@j z19wjrm^W+nkrDH`tRzn)Wl3FZGc#AU!Hls(0Tz zlJznuFh|knsy0q+KKKVa7i7=G2Qn1cY8|%6+(;At1O;OahAoaaB6DQPi|%Do7E1hqwlaYmCT@+Ky%vW>fFC-06Q&4st5rj>5Q_{@iyluB&1-YZ#V zou?k}s>G%v4Y}~|AYOjQx$QKuMGZ;f~J z3`w(!oZ*L+cP^EITRJP=+*?YZyonYIJHOMog<@Ku7y2~uoA|c68dz3k4g#$+uUO;b z)9V^%K>kV%osPTTffG$!`OQWCIUg=Ol}40lrL@gwa5zeUIDUM_Lh|4d9)p3$@$ApN zNxw3W)<{7_=GF=*#2G+E(>{TE^wUg!D@D+nA)X3P;xIvi#a|i*=086edwlr>YaQZI z*$~rw1lB+3%J>4w@4r_X4p|HX77oh{_%sIAJQTjYy)^cqg;I3bNLJN@N zAmkzC-ch-A%{QvX|I=OYcV3w_+qR%?!|Pvu1I6UU{=<&)r(+_!nZbaGy1pAW8tvcJ?wrQ=CCk?HwSo+Qkw-X3yQi zxPhY?Cnm41l>HMNwtBgHr+HE+Djee-#{?;q2%c)DF@OtnaC4tCbe;794x)~Muz2UZ z;NQ;~QFh=*9A*A;?oWGq#}TK5z8`TX>Sb!%^2gKkrDgNJ^Q7D}pun|4oz$Ie+d(^3qN!vM~3 zF3_zsr7oxxbN%4`ij3mb0aH(BWx6m2x_8(-@I_LLj~j5{);<`+2fZv{1NDOQE<)P% zB#DcDc_`(j^IlyBEnWr9gy7Tn9XpJP{+;831}+xVwN3N#SDWHY8Ix5qorG^KO=AVL z`I;mB*=id&N{}O;DtW}9sPv1s&-@-{YPKta7J3I?nRkVRVg5^oNcqD5CN<4~Y(RAj zx&mya3~GfWpU$7rdstYa_;G!)xxWxnynUWl;~^bkFWAi zft-Cz*wxpMIJH5FyFAICrTia(HgbO(Gh+l`1%26>e(;=-ChUL@{7-cg$x_ln=M{Z+li(9!bK zH&Occ|M1vg4J5+ys36!mr|4+gcjl)8nWbrzyNzgp*5BFn*kSXGTr_3OjgXO4H4bpY zNsJDEo#)x*>5*bpS~|6ZlujJ?x`GSG z#Qvvl$cqCiY@308--L0iGVgbtNDYwhRh2O2DbDuGF9pGNJKoJ#t$rjC{AvImrE;t% z8%#(j$c{PQYSYx-H*cv{xVDu-wN5$S2lGMB%u&-=D8cw#!bwtz%;;*tTANnJ-f4a+ zi5x7egL{)AiPz!3iYC9<;UoPsM{IS#Xd3XZyq4qPB4PPbFyNFs9z1>v<8v|U1lsGI zKHP9LZydo6!_AmENnuAeN26yKP zh0}It4AX7sKE0uC?pC@pxwTFZoXQ)XEKK0w`majdSBZ7|6W?)lep?@F3pta6{qC=rf^=Q7ta(LUv<9pi-4 z@^3#V@ql|X;gE$i0Tr0DC1tN#G8C;3x}mF_WlJl(hu>O_ijkl!yjnRd{XWCs!tCEp zA$76Cp0B>%M36FcH$Z7-e4~HOMYAl&?ge0M`$g zE4l0?$g(4bfC)plCxk$YslrY@Oc|R={e-R7sdfA^{SNvo_$km-&~Um=Gbc6-%dm2p zq0{l>*kAIE({L&8kRnU~O%EY7-%5A@XcORL*X?H%X7NI`HrZ#%BiFv{vH1Dp(20KH z#UyF_zq7vqyTZa~-|Ru+;(46drp0UY5Z@DfRK7>0F%wVju%m|4_eHO`U`3E@N{)%y zmGOQ1qnaSIPcZkNzZIAKkhI{A=dW79dtr3Mk$*VqN4Qg!<64AWY4R(X=LKKST2}O8=NKThf>i#i70rZtoe3%2#{hq)(+yZ8FE&30sIX!sM*^@F1Sa}; z5)5g>+@HeDZaM)#tAbC32xiK<1KudmaU2yFy6l7!?9iM2qSy}!)Y{=&)YJtm=ZA3PNX{J>iRwr+`KKnXwl$-E;?p8tz69}t14N}=OA zDox-aa-wnMAfu!b&;bda%z>qea+8RkW#Z+MJ@VQ$cm@%t^Jz7VLNk z$ZH^%d5=Gg-0t&dW4tOis+>QF12J=PCz^gPXp6b}Yh3lN<^T4Ot2x!nLQb^PnxQUE zkc(4uL&^K17)2{^&wKX{Lr*5UZ;aRK03QzBxV!T8a#=zl(BY?W9iXn;1(o->D94d@ z08%kj4U~z3-^Ue`14b`#iqAL`hv2c^xIx=m_eW#FiibT@D}y(FM9-#d^Y@vpZGDGFdRh#*z-t6LQg>Vw8^ zR>;y$BNhkoIkPSVO)7GS8})3SHEb{)eHw{`>?F_!+Wd(SUe%qNAyTNvQwX)$sA>}GlPm-AzWT+G}VX!gfs z0TVRPletd{25!O#Z+3$}4k3oI!$Jl}kw5sY)q$A=)sOEZ>U~bTUP>T@M0s$(#b?Vr z!ni&jw8(ZaB;NsO16{d&^{D^n8R`?{UoNXf{3DFu&ZG)W0O+Zjv)U8b~8>rgM!$g}_MFW*iT$#m3?$Mm?lX60oERMSIY%dJmfcMgEmZ`48+Ji~h!i+%Bay=j^w%N66s<0&uT z001q+qA>=f-#aQ~qP;U{NfI!e0A5Bx24r;pO5r~)2 z%jsN3st82MRkKO2=n>$)8Nk<*DEmvzm3xOn<|WQbTm0iEA@}Wcs*XNVOhML!?qHnY zo*QgHxTTpnqqd+bqDel_l~{5>5><}tN{QrT0+4fD!^biKv);e~+}rL3KAp*T__BS& zN0R7(%7lN;A41r($#K#fnB=tkXh5lHl;h9?i;kI21u0%hF^V8ptqg%^9H1W3Ko!4i zkiu#cN+2W+^l<4x+>ge7>lMvkrkoN=acswbUkAq_9c5znG~DXo#uO`t01|0bb1c1*H$;v*uWtxMs_#ua-xO*8x#A>rLu$JJyQf({}+r4!{-epEgd(j$==dfzhHBzwL&E7Fa~Z82~`J`d}0eg=%< z=zc4C0Mp3z(i6`UbccijT%X#w(s9mjK48`h|6$CqXB>3y+L_~@G>kmo`G$^x5=b{B z&W}(K0K%FC-Zp?Yx-AG;F}@p|GbsOhxIiJ-BVfuojjtFukoK3YwkpRPnuG38>!LJu z_B?T(OcO-X2IN*Yp-Axl-C_QGlww5gS@S7#%By=sY&^Pf{L~y>59AsBh}t`Hz=&%X zfvXz%I|9QN8haGBeTNkja4V__k{3DQXk~y`OCK~OD*#P^$ z>1!SMSzy5Y1Ay*goxFDF-F4d(k_&>XB<&yXAe#>(06)k%A;Vg1d)+Y`XeGyQ&8Y{- z?v-krvt%kYf_9p40rdgpU8-aJuY7(lgi1c`AyuOdc+OlhD5cDR{R$AwxhgE6-09xo zF^zh>zjfH`FG3y^ttsQOYL8w6W(%5-mqH8NsNP)59AG*>l_J+1 zn|J(jfDA%qtm5LT{A)`V8^Ne)s2~%)TAhE;8qlAbe`3Gy)m|cp2Q|m_hdkFeDBqOQ zcwqr6XxjYEISwI_P9yyQWYzuO^N__pR{kVAboM8q7gwslzKdzN8&2FDU7H6B@^};c zEFZ*o`r)JC%zj4xc@hd&^vNb%NjEBN>vu%JSgW4I$GlR!OZ-?0MtYVCAe8S5j~>Sn zb4k|%`}hgoa5hf9A{t}0B=xjHf}LV)PpFs3oq9|p8C{yAlt_vOEOJ8p*i_&Cb{EwH z!$1EIN1xr$zrXm9Pd_5pLSOmFR>n{q&_l|aU0fsxsp#A@*vPf|(`R_E%FQZa>NzJA zK(F>AfQA{&I%WDhfX+$z zV%_eJN#cF4v3o6&`8I*ugv@B@?R2s6%-1x!Grt)ZWFZTH+Be9SQO)g#0)os&lGdAF zOL5)avuMD=ce&`XF|X4};upKG$)4+_<(SO#bja8w0JF;kUNE%z_yO18W3F=V$_d7o z&b@!qQ#!mheAL}<&BXo<7+;hns|`^G>gFoQZc#XeFgyZ&Cm+wcUuiY59myd-^p&4~ z*px6;=6W&M@d538`wbD15{YQjG3A%t#5Q0dY=+H0L7y2>FjxQ zj0Wc@T$MVv^+UKwV)NZ|;6H;ofws9+JL0tLG&Wftxb+T2n_`CF_GSq}$2AUt69PZk zc%Ze7+8PwX_t3TgN#st+9GQJ=+I3Rixa&Mr>JQ?U*Nm>GRBr_&Y)1u5kRgxDNkkNI zYTb`&UhWwK9V!;8+^PFd@#t8WIby{a3p7A9BM6fFv)y5Gh&2Ghm8wzy$O*`AKt~D0vogPeErk-< z#tZKhANsXX?^wc{zKNb~({Ryio6;9{H$7@CS@7G0@TX8$0FtNM_v zl8>*NX^_g6!h1RIDJb>SKE&#m2o>PRsW0HE2z0$*=vD9}6qMt*ridw(|#1tYg(WB@GM(g<02{g;saOqp!@#pw+B zo!9mI3Y%Y}1PN-w`l_#d^PbDMz)#CYrFX_#m1_;6fm3mx>62*q?obp|c=MaS%4&cZ z_ltgjk3NVe6kuWwtt6781T-^@iTP`cXmyiJkK?T()&2Yho{(i3S!QC$0-W!McRXvM zzXT9{#)NCO@-mH@6ktL!7qa3J+3?iQ_dx=oaD72PpU&UEobp-lQQ`0JZ`~iClKyHnF+h^K{bZGvxrRou`Ux{x4Hpg?cXbu%<_H1@H$~FdnjdI4v>u&e<$Hn zTn7L3X-&`^HA20nuI)LfG=X1_GcQCV2KCYad)m}2HpyP)A=AXt| zYbgpU_3I;mIq*X8Vm}#v)xKk&(;}bbY=OpDIf1je$xKVDv{FOXS*)fSFq#(7p5}52 zF^(Pns(fr81-P44uty!EI_C618mHI8MDVTxje!0pl`e^~_z+f3u;YX>rQ2BuTg=7> z4E|#&O|vugT7n(AzQs@G#`kkA@$VCP?`mcN;bMbql5jb7eWkT~|4B)GZgLr}G~03i zc!)ov49~r9@N*8wbi7AQ;Ywd*$cE`kQwf-Y0ux2NbayB?n6*z|<)gR%k?XQS1p#Be4 z*Bwvw_y0>}MDoU!-6b{F#p5bRfgq7rXgY|FJ`9I z-hJPV>%ueF&l;obr+7|I$s2$btZJtteAuz6f{K@mPoQG)nw*VVGJ?{|6US}tKYB>R zRZQ6NHI)g`^=n(lX~sqBCPg3Nc{yD*(d1_{27HSw&3Edxpw`cpyNk!t&|A7^x2qj=S>Q2cq%QQ;0maeVa?I|B z#}T(tM|$e~J~hbU+npWH3J-^gE?BQ34H)mK!;%i5ntHCK-*39W$|kG;h;-5*=Be!* zP)o)*mrK-?LdE9-NLq%(M$%0CTxdCfix&2&+s272fRZ;}ivBC0P(G=}00 zg~&6djpGRG=eJb5bSetEbp=KyPFXdu%QY)IeK+VXpuVeUKVqD#k7uoVkb}@@`d>Yi zyVF6&ux7EVyO5c~N&xn#kHy9AVd2%&rs&xb4)bb*B1)TL*XA^$B)Rf- zp))`_F7DMv%!g-FuCn0H-Knsc2*>atGU;=bUGA?hKJ|sU<7v@{yl0(lJ^%=A(-{@MX zW~plhpdTQooD}N}5YXeHh;G>(XXLdB)XWFti+6On|9?r%93Olx0q7W~cK&B?Tf5&{ z`Beu#3ILfjtE{}Csc+?dIsFNH5p4$nmxeWf{2sD%-JGqcTMM8cub?VyKTzS)*Dy4- z6RMygN%^Xn*(?9p@~gjf*~Bz%Mv)#Ic3Y$|f6XDdpW1qkqpo7vDmAmQAb_5Il-)L} zQJ{uto@q~w>k)afQ!c3s=V46q-=Pg8}wPClhVP=*bfCMEDnhp~Ac_ydne`#K?0l(s=5$EQN~?x1YCo#5}bP zfzs&0Ea~|;`D@xA5zea4 zFZSYTNvc{LnUw7x-XLvv z9;rFvvc}!!)lc<9s^(2g&1}MQBd9nDr?Bd^&XCFgaMF|$eZKtB5=2k+J&aYCbBl|- z!nS2AYMp+!9~fM^Vjt{&LAhCnvaY*Uk=t6$go#nGujVW*ZHxOQ+&Au19m!t69J=$( z)}LjB$KD+6?)EH*!>?O`4S?F(V_f2j-0zPqCjndhHk`defXl)LfqDZqZ|)t{pH%@~ zz_>G z`|255mnblAD*rrkzFk@QRenN9Ya1ZC3sPCCqm1Q5t5T^JXx$}z0Ed2Kk5msB;I#x6$K-i-7iHQzUQdAz+QTN`r4=SH34Rb!Kr#q$6 zQbUDaz#9~Q(c!avk%{Ry$TzcYgGAj)>|@5*b86Mg>41!Jd6N;@G;l17v2AV|WmXe1 z=f_3nOSMqj_3_{85DvY2lI;4Gn52ZvMur1MA^KIH&mjQnF_phYO;&q*fC0~o{&0HU zqV`@2MPw&;nATNh(dt@`3awPV8lL3o`7Ck<+_p8X%9tTwPt0nGWP)sPw?kTfD!QO95w6xntuO8Vm>^WT@?xOZ8=z@5O39{+fLsF2zy=JtY#mtZ_Y1$^nq z+#oXG9xXr+)pJ4iSXB1lWC7wwaMkM!!+jyZl0Vz1+**mqKK+&1Ff3EI_$m2-<2B>+ zOtFGDrr68@)v@A=O+F_4>)UW|Jfy(-4y~UPefSA)oiqLDtTG{j{|YV7AcoeV(pGGb)EUi_j=^SQ-XJTO56vcBbqU6f*Pg@MmD!&@ zjq$FuZCZIyM=Nb(FKFV{o8S3b73>bV6vb7wmtAY(MOA^Q7mUZuwu+3G$hDxag40tJ zFV85_`x2~($(Kj&W$=c*_)zFjBCG8k=b12K!u^=PacE>?b!nygkGvl{oT5bT^}2;R zIOCMF8lHtCeJg0}EM41{v??J79LUD*7q2}qB%zRkHBowT=&)(X0={mQbsm<7 zo(wn>ZVyT?Y0-R%Pl!pOQ0Q*`<_NsE9{b=tihC~@Iy|T4QB$w_+2?(@vTpLmgE$|2 z`zm;Haw@Ugj*3Rhls1?NSy^chk-vFNV92Q$7GpO5U9StQY<9GM!k9nqtTf9BsQ1@m zFOwx}YAM>|B(9sWH7mhg(z0t49Xge#&wzArF(o}Ox~n-q@DldJ))k)xIcb82z)ImaCbvh zdv_$;tV6+`#Lk>wVL$PYZiqDl&%*pA`IKSfaQ*#UMTrW64P7aBf=mbYv%|`LYp@9; z7SL-W4Fx?4G|;V0U&n>iRugW4O*O%(oHfLWRsJ!ieS>J~^m~F)B>vSP#)Khrp}jw_ zk-7l?7M2flZh!|IXX;KYQFdi=B5a|n1X9~Hf!3>;*Ddp~&&!Z+-ax}&@8isss1F-v zO5Akk7?jU<&>z-d_}cxaSYv#V=Dy9ET*QsjhTGb+(i1fVWGljLBw4*H+Rai0b@I|_ z)Yk)orA|Kj>+6M9ExqXKK3wa!bnJld!B;~ZQuPuX)%>5Yd;dF9J})QQ%_9)wb`|!K zGq+yK=Z-#H*aMas-F^OwCy2Li%hWZw+S(*PLMueJDz@Fdo@TZAK9;~8TqdtyvqJ-H zZp|AYW8hAHhS-}oM(-*|b~ph6!GwG6=sCZi*L)x$oMlgCih95wCnE_S`U-cHr9e6m zVp=oEhTAli9x5dP=aqW-#*NzH(`4X+=PwR+`eAjk#PB4qLeethoO!x-+c|Q=w|$-~ zE!FM80UksTHYW6*{xUEq6#Rc~eReWw2rX;xC-bhh@Cvu^JZtLWj+*2iz;~Tdf*#VH)jC^zA9JrXHWbXKGSwszk=ITG5wM88-^qUr z;k#I)GrJoH8(3*Fqx)BBt()wB9^WoSR5;$HjYzXEHukf|tb2+jaamsLHG}x##PyD7Fs&L`ZB4${`(3OJU8+L{ zW4A>t{7vWxc-HAeRF@RNI7Xs;#DEo=i6(&?Mg8FTVjPki@`{4isPm4$9>J7uDxrTJ zaVS_$;taBgZ1MQWHe=>U~CJ@cS^X zaylpSC`Wzp6S^$9i0v)(Y3^G|OS6!wm#17Q8Qs4gP`tRN@`bnsrDMF_EG0Ih6fIf7Y|F&`ZZ^Dl_elqK2R#kU%=u9_TXeR zy4)|uP#P(-H+~u}h^&J*|kg2FgrY20-pL8v(a;kABgC55(Vkrb{qQFv#~Z zQu9Izxq`k8O#Y1Q8yru1x~E}kD21TtzB?OnLg0uj^?4$Dl^)Mn>WMg>ejCns+HF4X zYx0a??qBH&^3EC}g^T?YdLwIX3z9G+JzqrM*f*aLalPB(&WdYP|1s_>0nX!A&WIJ6vXi?r2f z-Nu`6c!Uy+cs(%+CV<68u!*&$btBFaNP0wi$zGvh7%fa-Jq)?&?$lYtBcyEV=dk-t zerE^}BR*>|jrSt#PZ7~DCk#sB$8iG>Q}GU^o!g0s8h=o{g_M&d64*X#llm8brq>{b z0?C4LzomNjXe2=>FtTWz*|MRqp_E9uYFB1mxJ<#8`2>kF8E8tfK7kNnU(?W(KzW@! zFJc=WUlwSm)&Z7qIRCeC6m)A4i-uWjizegp0y^LJszTHIN`c5y!8t)j}rjOY-Q0BnIplk!e8uYpJaux^#g zi@d<{Kz?QcXOWEg1_2ilxpt4R^yTeHXendBYz3~Yrh*`!o<0xth5$^>&Ep0W zrWDmVLn}m=6&~l`ZRnzk7kn+g3mhIH zK_s<)y?k>95?rQQlqUfo2xDg%YKK`V4ZS51}ZHIRU&8RPVy!Dk*pFvESJ9Z3m_L1hN_)#zI@-+TwI9LUjiUQ7JD`OgB2 zzfS+9&K~~#%|8E#vj>$DS(EhO)Z<_MkUgHV>|u{z+F2ViTbZB*{9h@mznRovTv*~^ zKgfvvjG0&oG9l1uqr@5Z;8hNANoA!vs9eH75CBwI6DH8(D*-Y1Z6AT)E(`6nGd!$b&Pi7GWdqZyJ_7C+7a17`cYwriSw!`ctOr4^SRUIpeMH ztrzM}7k@qCC#QOfaL-+=%3FVIV2#YZi__Ge{~F8>P)$&|$;d6-&$>*RMC!d3<(;+dfbayeD3C42gnWtz~4-c`p&W zUMLh7I%0Vwu(bgRxrZm=%3IYtmaM4;Zf)aIPtg009HO3Uzs(!VQ4NXIzi1logJBw* z7)W~W`4o(A@ekjDcA+ z;!MeX#Euk{b{;gLYOc|ar=Yds7_xHT8TtJu|5$b0kKD5~(wk725{-kTx_Rknz{Su$ z7^ug_W``8iP~FEDr}Y$en+HV2uR+DQnycwnsC7=cRYV;J62CBW8r%pZ%Rn}cGJCftv3ef{M^>; zpwhdJ`|?vDVw|KlH|j87fhE4)$?$-k9Mktl&se6qCn~uyTWOJfczD^WU6~Q+lhX(9 zuX786Io6`z*~9QKyW(GA(YOC58Z{4IE5ilnWhaL=Wd_r3_wF{m$`0nK^H;>{7%C$J z1d5DHjk!rSlSi&`Y;6%?Q<~Exd!;@OAQm?LO%j2*v|p5~Qs0GrKF({tl*iifAf=5q z*5X&PS)1ab-_nUCRk2y`Jwatrod4-lD1(S8iW9UjF8SlaI-AddJrKX;%lp+ub9@b{~?dO zrcxD~!9^rlIqS8+nbcMOm#z`u30hLqrtwgpYqt!M6i#FpJ?;TPHZOi6t}JT!gyrv( zNVs~0NU>Yl68h9M%=49m@tHwdMh2@b7sg!2*$Xt|nl|C>&R;p2q(2N@HCQ*M&3xOT z7X}f2;VYC^h&d5^#2_P&)X;}p!nz`CS2RtomT0}{umbVZ!#Gw`vDkkIqWJBM{Fz{egO9u2ud!YsLf zzQj=beKme~H1j_MzxrD*D{rr#TYleWF4Zw^RgU9k2@N!}L!d+3ficXZ@$M!5JHd$W z;uD3Xw)5$WP|Hk48lxU|gYi(ghOG#=Cmm?~YwA9WCO6A}kfZ_DJn^$#Wb%R{;;NO& zYg)|Z*{(xCapnu%aPp469XZ$?^v6Pvy(_HzX>Ux`v6IVcx# z%_TT);nH=g$Mr!~pq*8UbrCwoY>cr#9fx)mEhb&XRe2oSu8eW{7sCj~<_iJ=Vx7tk z)h?V%KnwY+90JZ;)r30(u=&iuCfMdVy4P5xcmlX@f~ z2tS`Po%U0EI?eEU=1{UedyTW$Pk}T@R(OVuC9K~u1V5X_gw@67*9I$s{0ee~8t3&&zijg@SSh5G5ph$`}&=z>76^(F=bhhcbg8mA1K(P|FS_ z&oozPBUnwXfYu#wL09MOQEMQ{PX9I_-V%CT1eQc!3^2r+6F4fK{C0Y#et|^Uar1mSA!nsY?8$=M@EjMR9r6 z%~Q)C(N%5J{RnYo1#?*H|pyUjB+Sk2p`e#`0*Cv+Y3>Z6sG-e4~`@L+3+h~Q287%6Vl3cx^w@5 zAxsjpnx9vN_~GApuIgM|3CSFa9BzB!9oG zOV%nn2^DsI*m&ZmwL1=jUSiw?T)HQ{P@=Ry2y)yeEC zH$8UqNL{RXZ1*+oj$C-wt_Kf^=xb{Eg+-ID8rtn^?yKA&&`QK>g(>j~i0;1T;nJ9+ z&oU}scn(wgyU4&C)^OzdLf}M69&Q}j8o(>mA#dzacz5sU(J3bckSFu#{$3wG4-PjK ze6E_rCc@KD)S8*iQXZ3yH3nriT+S2n|k~A9zbOLh$~~a_3Gte z3vc@bRcW$i7l>loMqdQwwvb%cfZgq4+?h&Y-c2puZihrx822c&$~nxz=ut}*y&Zn% ztsepBGrrkY_5p6yAuz$b;tOd;Hga|^8+<{=I}G_?K779KxBCcpW;-q>kYFkipo7NaN&*nx0zrM zy13~z%$$IC8=EB=3;uxCOmZ=-i<J{uV(mZ|5-TFeq6=YdYa=4>GnSw2s{}!WZj? z$g(MSz7a4AM=*K^_?N=3Wae2xehy2gOy)M)Wzp=ra94{uhC-5$Zcf&{E%#Ex_$JdH?^Ttdqg3Iz#yX=v20qj!$kjVn z2?HmRPmyzMy$rA3I&MGldKzXq&4`M_C#|Xc$ky#)1k6o!z&%O`_agF0zd`YH^<Np~=jWF(=xJwY2a+UC*e)i2| zMOCG?uK&e}s_uXu)9rz-H(O~#47Ty2f5ZeYIq6qM-5vHl;IGHBbQ=sHZiBhRpSv$b zrII2bZ7uihhwHuhWopQkK%ZIV$E~$fz6plZo;1ggpEv;}3OaQiJYNvMlgtG9Z_mJG zCbRcJ^W+38_r~)Ca+~huJ2Za`H+9CAcU`yUok-x$GjOCV)=OM2MpeU%lg-im`NDV% ztYy;`oUk$OQMZB~knlZMMzp)dw}FW??d-31$ri?)?_imoC&5ve{*MeMzVm(52=M}{ zTeB@lWRF^~07!tyrKdCB>-kVLsSV1Kedq6`2|2y?6L%mX77Xjsio)mBvO4O z&1E+Sbn5 z;>jp(ND4Ay6YNm)>wFfbQbMY1a0{!)iBEm>gqq#MtG?e#{j2S)p}I9c-8ISX8EII7 zfk9bU!=-jMMX-<}j@Jvz8hsGvwNBcfq?mjU{g1$xMVZjNeE|7lDEztG?I%>B3JF?G z?yiXFMJ7)TD{)&Fxo4=N_vTL!IG{(7N{EX|3VYQ+8Sj(y&+Gki;^f8d4kD=foq_eN zLM1fU@Q5E$-Y@rUgC@*EvQAvDeY%J1L2@gg(rHDHGr9pwk*(EEyBd4OuXc(za;;_P z$yYozDiRu*s*@!!@Qs{DrIV%_)qAz^utVmF_CW6OP`l}`Oo#YeM z5MdQLk_Xw&f%DY#DoFV0p=iMf-z|nr^;uKqRUfhs&v_BQ1*g*7b6GHb)m^9Z)8-!* zva&phaO#>LwJ}Mw@ClO@$jEyhz&2TT;FG>*R9X8D*w)!R%3D%PpAq8DVUpXoBf0t| zlzdMe>kl+k(1It3DC1oIqn1dP(mVghaAvS7wij#K#Sk|ecmh$?gR`V$@w$>Xa2agrxn20u^H};@Ag-c^ezCoYIZoskGpC81^81It}fUm$>|`G zp64&wm9+HvqF!g7Mo%vc{cZ1<>6<1uKkX+IXe5&mwD5LUcaNpRe0K3W&8j%MRRadD zSaq2mVMcJjSvnZqWcn0@EX2dF8NiCU&)zn?x!MJ%ylx5S4<>B$O;ScQcI_5zc*8KjS4t5Nk~9C;H_L&6(Aa&2P~pP^wXrzIr88 z+brXi8pYp@P5&{cGd3D-OD&L}avm%lpMl^bxF~AQa#H(#!N4S((`eNb)*?YB;8TDX zW8=_8ehfVF=dH&!TkQWfoYN~t#t}{2eKmnRCn;R181{Y!C$f)ngsKIlb0uCauyio# zutuTFrx#8Tnjf{=yM2hzmLs%!DE6>qThywM9L!fm3#NSv%|i3>@-dTB&|@V{o@>$3S!xCkJf7e*7=iTqC3Z1c}0mgrJz!S z14#sU%!V&^oEoN?L#e}U2ImV9JpPBOrq+8r=qDvy$;M8Zv%ErAN)Whs+S)~3N|~O( z-qd&)=no0}ggwWnV=Zi9@}%h`JW_Nlo%m)QP`;SP`$f;t*DMBO+6j6L9b64z-tcag z>G%!f_7l6sC-prHV>MgUtM}iL9=0~H57(L9`G+GWC%R|9E8}m0C!sd(x3Jm3#wZ08 z*WWG&Pv$##BzBlz5nl=>4dYn} zj?EN5j6?|mPHEcd^JksQ%&i=BGHE-CxIrw;I60` zmGWtZZI3_g59T#n&KJ27{1z4#HK44uaaTXAs(mQ7(RFj1+6JtXxOkR;EK}3XKl0=S=yDA{x}HGqsh)-YC7%A;NKrw0ZDgOTJ3IaBy{tBO8Q&ScA5;Jr}1a5hskp!0H4=f{XO3}9?8=ZxLkK98>tS}1+Xws`>|SI z{X6vB=rJPoe6#Bmx~t1)oRE1aG3*oV&}w22bw!HNgnItnF1<0}%6#wWu_L`p|AdOo zbIpTA1+Iqpe}eeL^lTdv zV&Sd)*x(H-7X*P=7;*N_NvI*nmjGWS^F)4@VFW0<997xx)ANKWw zk@UQE0UGPwIWJyUBY#NWwmsSYgn8V%Uh!e$r?Y9fs zO!OyYM$kK$MV0b-GZ5th?{#hSJ_jNNsuNwj;58t>7IBQmc5IwYgv$F7^Zu!AIT%z$ zb0q2h7<)Y?5Kr!$3tqhsK*d>H>a%ZlI$mH8bkGQR!*)G&JvQhvyF`DK`mTLFcq~)| z@ys)5>bS$3D&VQEu=G4QdRNEQoPvv>ID>f7DslfA5g_&8H%4!N!+!->i@a_y5S%6N zC+n5>)q@DJfXO}jY2Ff00ga+94I38EQ(x&p25Efbc{ByEbG*WKy7IDJ^QUte@!x7< zX0hx4QA--(Kk32UfZ;jgQG_UXTnMhce0}kLcUlp051iK=UnxN$w5UUIe6Ld$l4mlP z^1;V)5mFn!L(9-_B|j>LRFRmKdKb3`j<8R@y#YDB$4)IC&Z?rKk$uB{EwRjTbt!UH z?S#mh?IyEQ_r3-~2Dsz22SqEhV(0-cVt$BCB`I=j6%F}Q2=HNA9O<1N_{*kHTxu7; zB3u#l#?^zhx0Y@Et(@I>TTS5K$f zd1Z!B3ZzYYERiFLHxBd0pcSi?@#-4zpF>AC^(@PZtb`Jrsyb^+g8ze%wwoFOKT|Ug z>ph1D>s2k=o(n(%)0kW0ckci}Qleiq&b@`~r~;v1dbjv~G-ScqbycW#|De4B>Kzvi z(xL2TKeyH7I1i0N@11>ov<4$g(*ruuV>vFr!54Ns$Xbfs3`drPK^{J9>~VDaP91$Z zc1zt!f6Lm!p-O^E7h2T#x-qmW^R%c}bp5rzXPLz>BE`&^MEE5kdL|a#sM!$o5J^(z zAv$V$7W(bpNhJWf)Ae?LxH7t%zqXwtMclM|W91`!P5^bSR~et3P=?y~n2~p{6=mxM zre(&%mYO8Fk2ftG5U!+#SQY<5B}A6~Z$<8gS&|Sp12|!1ReEvgfAh8uzZnuiAdH5k zxl0KDV_KEo?RW<)YIKUVB_3OvJD&sO`u zTynr>XRIS8uLwJ(e~-9}T^!tX=G)L_bY~~SR8{B~2UEnC&C3G&h(Y_mrNbM$e>wr! zVbcj^R^6os-)N@-r)5-a=JfC~q5YrSJ@F#tn7tJp41)`k7D{&8I*$ASG&P;io#cI8 z=yO$B_rEO35XA2D)-&r;LoNlRF1+XzJ&$cJiy1Tm6r`)-l3vXRgL9whQ1%U$Vygv0 z+ot)YXQ(^1zvdyett}I*{@=+7lw(>w%R(A>si^?rh|e#7((caqSJxL$gsNAAHZF!L z?HbXar*?;1Ai?p+Q>LlvSfJ!srctLf*^&0bv4|4q)U!^7OEc{gMWa%H zAY%J+H#%m+&(MjFM62QcV#(tPZoum*mLp$va#}TRJ*6D-jgbuLt5+|*>p9oS9x8^q;E5t*NQV=;BeE$HYkg^O z2nIMDE@6G_s;2#p?LeQbVQp{lI=DfD^MxF_3)6y+jmGFd7;X58ZW z5sQE)ymW|%O*{Gr3=`~Y@}P z^*xT-1$&bhiwCm|1DN$VRA|P>1s6W_OI0Ki1clPOo^&GAdP??gVX}`yTR31u7;6;f zQ@4XYNkpHmyY|-hPJT^Hh<>N>GcJZt4uSg6f{1p{cb(cdMEDR#J}|7rQr}4Pejh~l zXdqDrOzFr{5wqE|i8fyWTqzOuE;s7;2$A4KS8eYBsWNDzXq}T_lwa%KV_o3|LJy-EmsI?|zvAWG4DGvHWf@ z;!bo;=#RkYMjyl_6TdF}YMz3IW?U$&)O*}b<`|qmN^2J#3!jc;Js*w=xe+F}v=aqu zNVg60$}#lXVFYAZgm%D|yrBu)!xhep50h2F?^IHGU~jlkq|^41G>Vu14@$c~`OS_> z=IW#SJ^x7tUWRW7ZPsj$%nS5dhcAUpW2)zN)Y5~!R*}@{GlPh!+4AD2*_DyK zd#gy3x-%@zrKN#rk^2QK^y2$drF|a9pl6OIVVV+Hwpds0uz{&Syfzn%0*0T_n9`G#BDbG?JG zo~A0zc&91Oqo~o;=^9K{*)3q=%=r9H(R@Q$J8b(ymxKKz9A9Mk!zcA)BFiU$r!*Xp zSS*$6p#o#~1?(AaHaWU|VnjuG)6;HsR8JV$hi$7q#{=LK=D~G2Scx=i{u>!0#b#Gr zCmh+=By3K?DGT*14Lcb*ndPX;dcK26fu-{LPa>PSJSt@Fp^RMmKUAKC-{)L47zv^_dWMlfK`E)VEvJI4a- z8Fv55+_+bHE`!j4UZ~1$piR#_Ecd!6YO(!<TkH9;1+!g)TVKR?JjS-`-^9;U$Z!1QxJ$);Yl?~M?cFdD-f(|vS-3Ov;JRaJX21TBLyGeVtG}5Im;V+DU(b*AV?(#$Q(u1eiZ{yaK zDq0)A-%+kI4+)8TsE!OokQjY)L>2DDiEl=#6bo0lPkl_h?$TTfDHdc|s@||gN*SFW zFX6=b*fh4ZaG0tf7FMZgy^Bb0&%Mj*fk?B+3^@8nEVo=d`;@h4fq#vjXsa=M8*|R- z-y~c`QTe^vGiHOSEFvx)&#iqsjgJ}6aSNv(Za zC<-%w4XB11p$jm@S=%m@`Vv^VPpv+n1n)yPA)4cEQ9Jgx4EZ2ALRCD+w7gczA@gM; zdv+}9kogSa`_qmIHu<60o-Yk+7!4E4Xjp=1aBYJNx;q7kA=+V>932V%6R>36 zmtUPa{RY7}_LMP@SK5;Y118EV9j~~*AdOs!*(@ebn?-&rSLB&-V;3J%j}{PEBkOru z2KE?KHUh&%=8dEcx}E;hP#iph*&s|BWZr^aWAQz zh(6p*hH2v9aQUA8g&ND_Fm%dC;M_Odi{wzC=-i{-o8F6*&^RGhphX_+vlxP^lp`r5 zHWsA#)b_$R$E3pE1H%CavGKE+sAbG6v1ImY0nK2fiZIV=@Z?(~;imi(=tJ?#qo3tr z#>I!h(icioy&W)pD=|lTU&;uES-~E9shyc88395-jGx9f&-^+s?4uF)=ot18mWhtH zhET1gaKaL{l;Z$}{f%ZfID?kOHsi~TIWZpg%oUa5sEyBlD|*OqUw7cXIZM3B9#Xlm zII*%k+pF_}@sEJdzGr<&q%+w`h5AxvVdvf!e-Wm7)M;%;(vI|I25f9Sa}xe*^PKlK z9RHWgtwUg|j1hua9YnJkA4ijau|yf_OL@qIS8er0k zUgv~%6sBeQ8+;c*1ln~SoY(yiTegJWNW3YZ)X}SG0q#X+dW>pY9ciR0&)N?WyFaN4 zk1bm!vz74yC!m}{!nW9j8yS_wvR(GXRVds^?-Z~< zpsIA8?ncjZp-E*di?|b^4QqJTpDXr81JgVt30Ljo5kvIehH+lPGX%S#b&&|roP$$i z%NJW@VANSO*MeuSiBg_##JTjCX%<4ce1#nr7obDbEqmU6cMlgz2{*W`8=eViQ_+1P zrh-q~IC)UerhXBYMkYE*(|YUCk+8YoN#+nXWaNYx~c$QmWk( zCqk{Ol;=OHwJPUFI8Oa4vMyxFde=F&8boHK|II>BYbexBk@ul;VT8~zZ;uY52tI*f z#&le~8Wa-Y+pfoG(KuP8LjeHtIyP-4xBxup3&D=17GWMsEs+J1$drCOvvO`td^|+x zek8AYD4`H-**GFR9^s?ZotUhbmTa3E!<`k7Ik6f}+3)iKw`ZC;B^h^H*b$teby^b6 zh?C#UDb2XsEwq2;96Z>`pSzhTNPs42?2GdOX6?NC$1M$=s+)4B1D+~xg5>QWRoSI6 zDChSU?*QdNTldz~Qx4|zAj#tUFhrFwC1LZsL*5TMuIf%m-l4uGd?zYVfNE;s*!890 zmnY<#a)f$O1&0m_67Hcuxa^_kH)!$*(WJR;BZnq!(&{9HJ)aY7D{2^om0vFUcsk)D zIf330H~*2f*&zw^j!U3da!CXU;SX-q3$A`VPBXrCWtN-eLH(XE`8GL=;MtR}50DxxroeOQgI8i5X>dZ_9Ib(PyqDXG?=!!Z@|>(-Vlug172kYQPUM;q=AK-|`b7v%cf3IWjy|X8;f_lHlmN z1!Mj(72{z?JV^aSGq;mSCdDE(#k&TXIEM-(oNf}Ij`l1I1UsUrQlxPa!! znl{YZbnDzR=NoS(LM%f0r4_-|$xgtRgMVTq1vV{(&>ywH+&sSz7vwbs)v^wS4fzn{ zWc@%o>LTL*+-~aCu@(!;f|I=ax6<%iwi?=tY!W+j26( z{UtrQe7vQf4yWd4*DvD8khL-(>dyBeAcI7LNX3Ljwa`;qlL2?BL!#$YuzxL%Ci~L8 zijWQGOBDsF1p-n|q)2kuvc+MBjgpmO4q3<==k)k<`KryGomKpZ#rX7wdK1 z1ni{_ADS4^SDw?@;KpP2UaC&yU)Zx-%OY*E=~ydr{9>pD%Z_p0J0Rs$zw(GCk7D-h zT;E;+?^L+PkJ2aoXR#?%3!(4e)v3l4Y`=(4meNQV&)hmpEK193Qj`=kFD%-M<$TI% zU-9ncN`Y=kjjEQIr`TgU{ExVeGv%VdP#>0Hfp^HbPKOCZpTWBN##bffb&1W63 z$`|Tz*qNsM$WcAHKe7xl%kgF!j)GRx|Nu329*UD4r}StoF*1`N0W zXa69Vs(Vt$YOa3}9n_pK5ohcf8R4{}C}BpRNArJE(K|`sIAzbnQs0lot}cI>RIqwEu}bRaRx9CgS25 ztWn(a#FsvjSd*!MJtY$I(%dSQ-%((RRLk5dAnnXXvv$lL@dJ^MLVwBK8NDa@^Ib~U zvZ80-3GK1FJ%K%Y$NGY`eq()CJ-3`*V9)C9`vp(>DX}8nwrg)h70_pFo)wL0sZ%qG zaflJA=&(?eTNfl1oSAc&eb*mA4bM~Agt25eN?JxU%`7e#RUY-aY=1Pu0Y1pHjsH3~ zbsrn&lcLYep--Zp(@Mp!?L0Wc9E|3V$#2iHr+gnp#j^fM;wx-WB3!S;_F2K|cPy+4 zi!B>`w76xXdWi?b$BNe;G}_0N_*gnIu-2GgOKLo9Rt|LXq%yu)NMWp*%s*d#?d`3? zGl#q*zo~eM-yk2IQCYj-=dJ3f&6bDPxm5m!g1ZcPoL?OECq1T=#=bks#!!kAzd?>g z+e_l8@zM?Czz5s>nm$Q{LZ0v~FW??BvU#7mmva6%d9bw9 z<5{d?zu67ce&rPE%+c@11qBv2#O2FmW|^g^CZ0aJZ({?~AG@wh+%Lux2Yq_I?E4aa z4eh&h%(F$5<+rFFzKq8@a-I%dm|HuoN%q4`j}%H+*UnJNeWj9qxH zuhliFCd*T}`2OI@;e)(CBQ}4qnO|4J73RCCQbh`A!J?RM8I z(sM5y7VAS^k#4buGl*v^(7Am}`8va?z-x z{Z0Fyh11L|ro)Rvr(9Bpd-L_0Yw8*jlf&qq(M6mSCdY_pk0ni(?{QW$d^vwNLG+r5 zh~0~Fu8BX+$})qWm|xwrtsosbwrsZ+FyAFIK(92x&FT74J`X3S`n_ZR4bCjjl4VAX zT#M4MVXIX$r&Ls%hV&r9PMtL~P4@SLM1?`aWo>l6%PgN_XxdoU2mOyjtkP8w?}+9>9YBbqx}oN@kycVU`Sp#A-bYG+ho@jj06 zNM)gkoviv~w(a3ZMpPHmPFd$uy`vv0cr#_c<;PX)jRO}+TJ@tUSeOE`ez3;QOQ88U zIHRuZat>e}XovMJGv)^NSPzzB?l0lKWHjo&3bc1OsT*Yqbl4s2(-7976CWS#kyS3%4{q0_I4Oxw#{d9db1A*`F( zQNBk*_xE4RP5*QW$}(?j;;cQQ3j95NNoN|PW>t>C-0h`yclkR82 zBIGW~?QhtL8NI)wwdPT!NwXo?Q&GM=E@#2Z_1!91JFn$x#Jy2+3W}5I@e{4~v3+q?4!@1~c^|>3PWLI-nn~!sBpSYl9af9XZ)ia;H6z%Eu=o79OG7$+p{~^z{ z&d9`F>MsbES(+e@@z1Yt9#$TzwQplQ#tfWbV zk32s#GdlWf%9phK*PHc%;r3zstslJiUdri52Qc-HJ*@uEt;R(vWiBG&)5eEcju$Aa z_lz_be~t>)esAK}4r<%gBf6>^%H4YA2FGEFrD)8k;#nWOUK{^OO+Nvv`+sd1tztQp z4=VyS>O>+dEez>iQ~Qfq3=A0v>U%c1Cs|Pt>DAwJIQ2*I${&i4?-b>Y{7Snj82UVV ziS^0!N<{=27jl2RPs(^*Ubw7^33PXNVRBshbD=bJW%qumN`&aM_IJ;SKb5)X3>8;k z&z(%JU`@3&YGuGQFz?&L`E)v~PNLx_iuCa->yW*Vst46W z3g^z8Dp6y&T!E=8u2<@n5PXE|PLsS7 zXY^S&aoI46UflUQU5#zsw;&6=_v7%_ak=gL_eR&Mi1(>nr>&Z21sE5fsPjo)an2ku zchh9l96eDo{gjh0y`v~#f(i9#{p1PxTlwC~SlrrS&0|g*{B=xpAS`dD7-d~k2TrHk_IJ=Y-2EXB0FO&BTJ^q zPRK;|Ft%)i8jK}_WY4}#LY8bzNcd$W|<1p11S<_1^o(eeQkEJ>Tb# z`<#2u=bZc8LXl%FaX5Vt`-k)Sfd->2yV^a-B(uu#*e>bCldBQTs+_>tXVWR%!}Qvvhp4j{iX592#!!Tgv&+bk%Lt9LetrAs zRTwL((~R?H0~f>Qxlb{W-d?M7s42$GM(i}XfT#Kzu9;&Y{I$oqLqq#|5PP0wzwVgd zd!9;mt4EX&e+YG;XSrgo4#=vNO|*c~=h)ZGPNblvDTzek(4y{TgTyT~ON=JR^qcxn zC{UeN-fsN`q6g3ZEDj9dOn@eblt)<%kqn1jGWgANgTpMnJw5g?Rqq0Z#xC(-LR=G@l8fi3#1DZ{PC+6F z%C>cqv_C>QKUg^^Z6kTOb$aH#Z4srI-Cvad@(d=oePNkb)i*TcB3HQ+N)gYwv3iTC|ssnuV9oUH^eEC_@;Y`>+~}CyayDHH**DHbMCRh zz6HT}grDE#;7Qu$5tDA^2^CcaCPPeLQ5AKvCob7Ym+Z%1M>qH)ANby=$5QaG8AOK;P9xy>d zv54-$unBidLNiN5N*ewirz$dYX9Z_uAk2XO8m`GF#q;tC(znQZ6$<}>82wUdeW$zE zxEt_^TSZ$-s0yKZ+dF_F(f}~aB+F%~S2IPIocCg3%^Q5U@KWU{#MD8;+7U+4hShg1 zoDe*?y?O0pzCbQAU(e1@gQLZ}EFOB~>|3K7T}IRoQB(yqBX_DE9eOYSUaQ>F~aK+v;ty%K6b* z1Y+vkE8DU)-`09Htzv;A%csZ`%nXb8$T~&49OtycaJNFO(^OQHrp25q^{(zk!&>gK zipjbax^+I|!a!dlr%8-oTbE<2s|HqzurV=;-}XV5aO{5=;p(XPL>TTbN!zmin- zy&RL)&>@{NL$Z@?UKoYk0{X1$mkXuy3Sr|{$Mc`HESdPgy2EQEma4*MJ9V2#2lmc4 z&enbPw{s|QkKxsjHk>-bn~6LKTK(2e+8OlX*|`WFuQcc`PCmH^mVU99L8}9sv;Qd- zD7P>kL^-P`L{`;}ZzucJelHJBqMQ(hz`w|-0CvpT{;oFn)HJ8w6faCuy~a}0W|rr7 z{m`ryea)BZ!i&TyG@)ZpO?a@qutmR98~7_=M+RPC$V6=ve=K;mId%V}EgbRq$k(Ot z$2w^`!av#{Qiwg%Mhq+tm7=w*;i7I;O`!Ri91@8Npq2jf=O|* zNwh91aOIGr>4O8h(b1IS&W*qQbPGb`V|TI1yB}q>euOS;6xZA(^~Vau8Ki@wc@RQg zGJxBhqANg9={|Q5*xH%2q3M5#9q9LNd}wERPtlVab>aTiUCzz0+&XMVhOd7%jP^UEUgQB&6<)PIgP7Buv#&VO$Cg#<%cbK z_53wMqy7?y<1e*7j!v(rpgZZ7n9^X36cfJB zdeWV*JVbR?8EO+popj5xw|8!OGAp(8ZDP~v)T;Hy9$GODa9azW(;E|mx3Tw$zi4zc zI@ISM_T%#?ja+U{Bn{^eR;R z%stksOaFrhCHN{qBdHzBtIKn!O}$zD4`( zL$pEbs^9IF1}3h>IP=;`){XKj34*yJoET4IB=`%B>m_l$iSmtJ*w z<9&sfOdGs2eU)ZZr6;ad3u(s`(MBmLh?rtG6G$+ZcytJ=v;K!4}k?yiBp{-KUAIeB?GWqDPZQv)WaAg}1? z9_;QD2z3nz{!=Q+W|hUk7XWx53Iyo>qjNeo$4s3D@c&5py1EAW`@8$Ny8kb|KT+L3 qlFc!hiT?(7e+Kzy8vkcg?W6xBH4?$V_}fE&+6`#{0GHg~vws1&;B939 literal 0 HcmV?d00001 diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv new file mode 100644 index 0000000..019999d --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv @@ -0,0 +1,2 @@ +eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol +atn_38553_bearded-seal_trajectory_20110618-20120314,2011-06-18T03:00:00Z/2012-03-11T01:09:51Z,"MULTIPOINT (-163 66.64, -162.994 66.62, -163.014 66.617, -163.135 66.6, -163.123 66.601, -163.096 66.605, -163.083 66.625, -163.08 66.64, -163.001 66.662, -162.988 66.644, -163.001 66.644, -162.988 66.646, -162.978 66.665, -163.029 66.652, -163.01 66.629, -162.881 66.58, -162.937 66.537, -162.825 66.559, -162.824 66.548, -162.981 66.631, -162.983 66.639, -162.998 66.632, -162.947 66.583, -162.848 66.561, -162.942 66.603, -162.94 66.61, -163 66.597, -162.873 66.593, -162.829 66.527, -162.779 66.528, -162.656 66.505, -162.697 66.431, -162.769 66.457, -162.784 66.475, -162.779 66.501, -162.824 66.508, -162.924 66.56, -162.906 66.593, -162.942 66.603, -162.96 66.615, -162.957 66.614, -162.97 66.611, -162.933 66.609, -162.991 66.614, -163.019 66.625, -163.039 66.616, -163.005 66.626, -163.006 66.611, -162.988 66.621, -162.996 66.618, -162.991 66.634, -163.013 66.611, -162.962 66.612, -162.97 66.606, -162.981 66.628, -162.954 66.615, -162.949 66.611, -162.892 66.628, -162.903 66.625, -163.081 66.504, -163.059 66.527, -163.036 66.508, -163.019 66.518, -163.038 66.525, -163.048 66.532, -162.988 66.627, -163.002 66.634, -163.072 66.636, -163.082 66.631, -163.072 66.63, -163.059 66.617, -163.172 66.7, -163.152 66.74, -163.6 66.842, -163.624 66.86, -163.661 66.861, -163.65 66.937, -163.93 66.988, -164.349 67.031, -164.584 67.042, -165.046 67.083, -165.827 67.429, -165.951 67.524, -166.001 67.563, -166.067 67.594, -166.111 67.624, -166.456 67.724, -166.485 67.726, -166.589 67.754, -166.746 67.83, -167.802 68.531, -167.901 68.614, -167.235 68.814, -167.21 68.799, -166.734 68.875, -166.703 68.88, -166.442 69.014, -165.98 69.275, -165.986 69.283, -165.892 69.309, -165.82 69.322, -165.812 69.32, -165.751 69.341, -165.787 69.346, -165.385 69.399, -165.368 69.416, -165.219 69.43, -165.189 69.436, -164.969 69.543, -164.92 69.629, -164.257 69.682, -163.637 69.818, -163.632 69.824, -163.637 69.835, -163.663 69.83, -163.604 69.85, -163.621 69.834, -163.666 69.825, -163.661 69.836, -163.643 69.857, -163.635 69.849, -163.63 69.858, -163.589 69.867, -163.604 69.87, -163.589 69.875, -163.606 69.857, -163.596 69.863, -163.605 69.858, -163.571 69.869, -163.599 69.874, -163.526 69.768, -163.568 69.779, -163.647 69.816, -163.673 69.827, -163.654 69.831, -163.61 69.85, -163.61 69.867, -163.098 70.028, -163.085 70.03, -162.602 70.184, -161.647 70.381, -161.378 70.453, -161.425 70.456, -161.502 70.42, -161.553 70.445, -161.522 70.415, -161.58 70.4, -161.573 70.403, -161.595 70.409, -161.614 70.396, -161.632 70.398, -161.67 70.386, -161.767 70.405, -161.77 70.407, -162.431 70.349, -162.562 70.311, -162.621 70.287, -162.645 70.275, -162.748 70.234, -162.93 70.114, -162.963 70.084, -163.008 70.07, -162.965 70.08, -162.938 70.082, -162.982 70.082, -162.968 70.086, -163.647 69.829, -163.702 69.814, -163.661 69.822, -163.712 69.842, -163.711 69.757, -163.72 69.756, -163.631 69.734, -163.638 69.748, -163.615 69.755, -163.609 69.755, -163.605 69.761, -163.638 69.711, -163.611 69.706, -163.635 69.706, -163.644 69.693, -163.754 69.68, -163.905 69.691, -163.947 69.667, -163.917 69.628, -163.877 69.6, -163.875 69.6, -163.968 69.605, -163.757 69.613, -163.881 69.688, -163.9 69.7, -163.899 69.696, -163.935 69.728, -163.942 69.748, -163.677 69.72, -163.677 69.717, -163.628 69.749, -163.585 69.78, -163.644 69.774, -163.644 69.767, -163.66 69.756, -163.556 69.766, -163.596 69.775, -163.629 69.785, -163.651 69.8, -163.654 69.798, -163.651 69.802, -163.655 69.83, -163.668 69.801, -163.599 69.744, -163.643 69.735, -163.638 69.736, -163.52 69.729, -163.641 69.696, -163.644 69.702, -163.622 69.679, -163.628 69.669, -163.626 69.669, -163.615 69.668, -163.649 69.666, -163.635 69.669, -163.672 69.655, -163.688 69.656, -163.625 69.667, -163.638 69.665, -163.67 69.668, -163.642 69.669, -163.642 69.664, -163.64 69.67, -163.739 69.672, -163.646 69.678, -163.631 69.68, -163.628 69.656, -163.67 69.675, -163.653 69.675, -163.667 69.663, -163.686 69.67, -163.647 69.675, -163.672 69.685, -163.678 69.685, -163.663 69.685, -163.637 69.688, -163.647 69.694, -163.59 69.699, -163.633 69.697, -163.637 69.676, -163.666 69.69, -163.66 69.687, -163.666 69.668, -163.61 69.658, -163.603 69.659, -163.568 69.653, -163.565 69.65, -163.567 69.644, -163.652 69.741, -163.653 69.731, -163.651 69.732, -163.653 69.737, -163.635 69.743, -163.625 69.747, -163.619 69.741, -163.635 69.732, -163.7 69.724, -163.643 69.732, -163.641 69.732, -163.65 69.725, -163.639 69.706, -163.645 69.704, -163.656 69.7, -163.64 69.698, -163.663 69.698, -163.677 69.678, -163.668 69.708, -163.665 69.707, -163.665 69.72, -163.714 69.721, -163.711 69.725, -163.622 69.711, -163.642 69.699, -163.821 69.642, -163.686 69.686, -163.689 69.684, -163.684 69.684, -163.643 69.69, -163.672 69.689, -163.629 69.689, -163.65 69.689, -163.66 69.681, -163.691 69.686, -163.653 69.69, -163.676 69.689, -163.633 69.697, -163.672 69.68, -163.717 69.671, -163.696 69.668, -163.661 69.674, -163.652 69.693, -163.658 69.681, -163.689 69.686, -163.654 69.694, -163.638 69.691, -163.644 69.634, -163.694 69.659, -163.706 69.644, -163.754 69.677, -163.689 69.696, -163.68 69.701, -163.669 69.711, -163.655 69.712, -163.656 69.688, -163.663 69.689, -163.693 69.692, -163.665 69.689, -163.669 69.678, -163.66 69.674, -163.675 69.686, -163.643 69.676, -163.653 69.665, -163.66 69.662, -163.832 69.671, -163.833 69.714, -163.824 69.712, -163.819 69.711, -163.811 69.713, -163.817 69.71, -163.665 69.641, -163.7 69.64, -163.712 69.638, -163.663 69.675, -163.678 69.681, -163.692 69.68, -163.677 69.736, -163.685 69.746, -163.7 69.751, -163.624 69.758, -163.681 69.689, -163.715 69.692, -163.698 69.676, -163.696 69.678, -163.701 69.685, -163.695 69.677, -163.694 69.688, -163.712 69.685, -163.687 69.689, -163.709 69.684, -163.642 69.666, -163.65 69.669, -163.691 69.682, -163.672 69.682, -163.668 69.693, -163.708 69.688, -163.726 69.682, -163.694 69.684, -163.669 69.687, -163.662 69.696, -163.662 69.686, -163.673 69.685, -163.683 69.682, -163.68 69.683, -163.687 69.682, -163.705 69.668, -163.699 69.68, -163.69 69.68, -163.657 69.691, -163.63 69.687, -163.632 69.693, -163.638 69.691, -163.682 69.704, -163.688 69.698, -163.666 69.688, -163.687 69.68, -163.696 69.683, -163.693 69.678, -163.704 69.686, -163.704 69.676, -163.664 69.682, -163.691 69.684, -163.673 69.666, -163.699 69.683, -163.702 69.687, -163.691 69.677, -163.694 69.697, -163.72 69.682, -163.755 69.674, -163.757 69.683, -163.75 69.816, -163.715 69.678, -163.862 69.693, -163.856 69.698, -163.857 69.692, -163.865 69.691, -164.088 69.688, -164.081 69.69, -164.09 69.686, -164.094 69.691, -164.073 69.694, -164.087 69.632, -164.105 69.635, -164.094 69.633, -164.14 69.637, -164.132 69.63, -164.153 69.61, -164.134 69.607, -164.151 69.603, -164.163 69.596, -164.2 69.597, -164.211 69.594, -164.168 69.602, -164.16 69.608, -164.178 69.605, -163.734 69.749, -163.736 69.752, -163.138 70.054, -163.173 70.041, -163.18 70.038, -162.403 70.169, -161.314 70.423, -161.298 70.43, -161.263 70.438, -161.012 70.454, -160.972 70.456, -158.767 70.965, -157.374 71.244, -157.235 71.228, -156.734 71.43, -156.446 71.46, -156.283 71.478, -154.494 71.198, -154.595 71.122, -154.668 71.055, -154.613 71.05, -154.597 71.066, -154.575 71.094, -156.058 71.356, -156.197 71.355, -156.556 71.414, -156.625 71.406, -156.842 71.383, -157.014 71.358, -157.451 71.25, -157.974 71.162, -158.309 71.154, -158.298 71.154, -158.324 71.148, -158.292 71.15, -158.234 71.156, -158.281 71.165, -158.25 71.165, -158.327 71.155, -158.324 71.151, -158.329 71.157, -158.325 71.17, -158.568 71.1, -158.342 71.152, -162.084 70.489, -162.198 70.501, -162.447 70.493, -162.583 70.501, -162.61 70.503, -163.578 70.299, -163.614 70.302, -163.624 70.287, -163.644 70.284, -163.66 70.278, -163.72 70.265, -164.038 70.241, -164.12 70.205, -164.113 70.205, -164.113 70.193, -164.093 70.19, -164.112 70.189, -164.142 70.178, -164.149 70.175, -164.156 70.171, -164.174 70.168, -164.25 70.133, -164.239 70.122, -164.237 70.127, -164.248 70.125, -164.223 70.125, -164.254 70.093, -164.312 70.098, -164.315 70.081, -164.344 70.065, -164.341 70.071, -164.452 70.068, -164.392 70.068, -164.273 70.099, -164.249 70.108, -164.245 70.103, -164.226 70.109, -164.234 70.116, -164.269 70.1, -164.296 70.085, -164.292 70.09, -164.246 70.093, -164.29 70.102, -164.272 70.078, -164.225 70.214, -164.141 70.243, -164.047 70.246, -164.01 70.257, -164.241 70.152, -164.271 70.106, -164.335 70.058, -164.316 70.049, -164.411 70.022, -164.403 70.025, -164.417 70.025, -164.673 69.916, -164.822 69.875, -164.838 69.874, -164.859 69.871, -164.879 69.864, -164.503 70.011, -164.472 70.005, -164.462 70.015, -164.46 70.025, -164.47 70.035, -164.506 70.04, -164.547 70.042, -163.699 69.87, -162.371 70.231, -162.31 70.228, -162.167 70.245, -162.141 70.484, -162.1 70.461, -162.459 70.499, -162.627 70.503, -162.639 70.512, -162.755 70.513, -162.811 70.516, -163.676 70.451, -163.844 70.433, -164.024 70.374, -164.042 70.354, -164.066 70.345, -164.034 70.322, -164.118 70.285, -164.145 70.289, -164.256 70.22, -164.33 70.067, -164.356 70.066, -164.367 70.052, -164.399 70.031, -164.41 70.02, -164.437 70.074, -164.378 70.051, -164.377 70.041, -164.351 70.048, -164.746 69.979, -164.814 69.968, -164.881 69.942, -164.982 69.93, -165.292 69.869, -165.476 69.895, -165.509 69.903, -165.546 69.912, -165.683 69.995, -165.735 70.005, -165.849 70.009, -165.922 70.012, -165.914 70.025, -165.887 70.028, -165.863 70.035, -166.043 69.941, -165.936 69.867, -165.926 69.847, -165.808 69.651, -165.873 69.622, -165.888 69.601, -165.878 69.487, -165.798 69.351, -165.818 69.328, -165.773 69.279, -165.773 69.272, -165.597 68.941, -165.539 68.898, -165.455 68.866, -165.315 68.863, -165.252 68.871, -165.134 68.884, -165.248 68.885, -165.231 68.893, -167.053 68.395, -167.165 68.392, -167.24 68.385, -167.28 68.377, -167.368 68.342, -167.409 68.318, -167.398 68.309, -167.434 68.318, -167.446 68.339, -167.464 68.37, -167.661 68.15, -167.701 68.076, -167.716 68.064, -167.876 67.946, -167.853 67.909, -167.755 67.855, -167.331 67.717, -167.298 67.728, -167.307 67.724, -167.295 67.732, -167.266 67.745, -166.433 67.601, -166.32 67.551, -165.916 67.3, -165.901 67.154, -165.865 67.12, -165.825 67.106, -165.857 67.096, -165.918 67.072, -165.878 67.082, -166.069 67.135, -166.061 67.149, -166.179 67.179, -166.165 67.183, -166.187 67.195, -166.406 67.244, -166.518 67.252, -166.601 67.239, -166.684 67.243, -167.062 67.167, -167.053 67.161, -167.43 67.255, -167.424 67.281, -167.414 67.316, -167.342 67.423, -167.288 67.456, -166.994 67.689, -167.015 67.702, -167.074 67.855, -167.03 67.877, -167.031 67.911, -167.119 67.893, -167.119 67.903, -167.259 67.942, -167.312 67.958, -167.409 67.955, -167.426 67.958, -167.466 67.979, -167.502 67.951, -167.637 67.974, -167.96 68.211, -167.786 68.267, -167.787 68.278, -167.266 68.562, -167.233 68.553, -167.248 68.554, -167.223 68.544, -167.216 68.552, -167.183 68.545, -167.169 68.564, -167.183 68.558, -167.189 68.557, -167.205 68.553, -167.165 68.556, -167.168 68.547, -167.157 68.55, -167.17 68.552, -167.164 68.552, -167.182 68.555, -167.17 68.561, -167.168 68.564, -167.163 68.567, -167.167 68.557, -167.167 68.558, -167.183 68.543, -167.168 68.537, -167.177 68.531, -167.164 68.531, -167.166 68.563, -167.192 68.548, -167.15 68.544, -167.124 68.541, -167.121 68.535, -167.092 68.519, -167.085 68.523, -167.113 68.512, -167.173 68.555, -167.128 68.559, -167.085 68.557, -167.053 68.55, -167.032 68.533, -167.043 68.534, -167.005 68.506, -166.997 68.515, -166.918 68.518, -166.944 68.505, -166.966 68.502, -166.984 68.495, -166.981 68.492, -166.961 68.502, -166.98 68.505, -167.02 68.5, -167.012 68.506, -167.02 68.507, -166.995 68.512, -167.033 68.489, -167.005 68.508, -167.008 68.532, -167.044 68.527, -167.081 68.522, -167.079 68.525, -167.1 68.545, -167.104 68.543, -167.038 68.531, -167.062 68.528, -167.067 68.529, -167.007 68.527, -166.992 68.54, -167.09 68.542, -167.09 68.54, -167.11 68.538, -167.121 68.537, -167.1 68.54, -167.17 68.522, -167.129 68.536, -167.09 68.534, -166.956 68.637, -167.23 68.545, -167.132 68.538, -167.12 68.545, -167.117 68.542, -167.014 68.524, -167.011 68.516, -167.021 68.511, -167.051 68.53, -166.975 68.526, -166.825 68.527, -166.84 68.532, -166.756 68.562, -166.796 68.584, -166.818 68.594, -167.153 68.513, -167.117 68.512, -167.127 68.517, -167.134 68.507, -167.133 68.508, -167.134 68.509, -167.098 68.494, -167.087 68.497, -167.068 68.496, -167.035 68.513, -167.033 68.51, -167.034 68.502, -167.048 68.506, -167.038 68.493, -167.019 68.495, -167.044 68.482, -166.97 68.492, -167.061 68.496, -167.123 68.446, -167.107 68.465, -167.125 68.485, -167.114 68.486, -167.044 68.499, -166.996 68.505, -167.049 68.546, -167.094 68.493, -167.147 68.48, -167.149 68.482, -167.194 68.473, -167.002 68.424, -166.996 68.423, -167.001 68.425, -166.999 68.432, -166.978 68.432, -166.982 68.424, -167.013 68.299, -167.002 68.286, -166.997 68.278, -166.978 68.264, -166.962 68.245, -166.956 68.236, -166.716 68.224, -166.719 68.228, -166.718 68.233, -166.729 68.243, -166.729 68.248, -166.738 68.258, -166.799 68.306, -166.962 68.384, -166.985 68.391, -167.145 68.496, -167.103 68.53, -167.099 68.534, -167.109 68.539, -167.116 68.535, -167.122 68.536, -167.133 68.539, -167.135 68.539, -167.137 68.479, -167.152 68.474, -167.174 68.468, -167.182 68.457, -167.199 68.449, -167.208 68.441, -167.228 68.429, -167.554 68.16, -167.544 68.139, -167.508 68.069, -167.502 68.074, -167.492 68.052, -167.473 68.041, -167.48 68.032, -167.199 67.684, -167.284 67.427, -167.285 67.366, -167.287 67.339, -167.791 67.016, -168.194 66.906, -168.234 66.896, -168.639 66.766, -168.85 66.653, -168.853 66.6, -168.81 66.566, -168.538 66.385, -168.447 66.374, -168.433 66.366, -168.025 66.018, -168.514 65.697, -168.587 65.456, -168.672 65.406, -168.681 65.381, -168.662 65.358, -168.655 65.295, -168.632 65.263, -168.572 65.179, -168.665 65.063, -168.737 65.025, -168.73 65.006, -168.753 64.98, -168.755 64.965, -168.747 64.918, -168.758 64.739, -168.742 64.732, -168.732 64.695, -168.624 64.626, -168.394 64.443, -168.43 64.302, -168.447 64.227, -168.459 64.196, -168.481 64.17, -168.476 64.073, -168.463 64.044, -168.495 64.035, -168.469 64.005, -168.568 63.893, -168.708 63.714, -168.682 63.643, -168.513 63.552, -168.487 63.519, -168.373 63.38, -168.261 63.179, -168.433 63.044, -168.509 62.941, -168.526 62.919, -168.758 62.886, -168.823 62.855, -169.054 62.793, -169.059 62.792, -170.217 62.72, -170.227 62.722, -170.219 62.718, -170.236 62.704, -170.254 62.685, -170.344 62.684, -170.008 62.475, -169.978 62.449, -169.975 62.452, -169.869 62.461, -169.892 62.462, -169.864 62.471, -169.844 62.477, -169.86 62.519, -169.859 62.513, -169.832 62.499, -169.821 62.479, -170.279 62.354, -170.292 62.351, -170.344 62.349, -170.365 62.372, -170.518 62.565, -170.512 62.578, -170.508 62.605, -170.493 62.628, -170.441 62.668, -170.406 62.737, -170.392 62.75, -170.382 62.792, -170.236 62.87, -170.221 62.872, -170.227 62.869, -170.187 62.835, -170.183 62.869, -170.098 62.882, -169.746 62.835, -169.534 62.804, -169.45 62.799, -169.417 62.815, -169.227 62.838, -169.122 62.868, -168.79 62.882, -168.76 62.878, -168.747 62.879, -168.702 62.894, -168.675 62.902, -168.626 62.926, -168.481 62.881, -168.522 62.847, -168.406 62.782, -168.399 62.788, -168.416 62.788, -168.267 62.791, -168.26 62.77, -168.234 62.773, -168.199 62.758, -168.224 62.753, -168.178 62.798, -168.2 62.795, -168.168 62.806, -168.169 62.804, -168.573 62.669, -168.605 62.654, -168.846 62.506, -168.853 62.471, -168.87 62.468, -169.198 62.326, -169.578 62.316, -169.708 62.311, -169.742 62.314, -169.767 62.307, -169.914 62.254, -170.194 62.205, -170.292 62.245, -170.34 62.309, -170.37 62.332, -170.403 62.351, -170.479 62.398, -170.483 62.395, -170.496 62.398, -170.669 62.437, -170.797 62.519, -170.747 62.522, -170.75 62.522, -170.79 62.438, -170.784 62.436, -170.799 62.428, -170.803 62.429, -170.816 62.435, -170.777 62.52, -170.777 62.525, -170.766 62.535, -170.732 62.537, -170.712 62.531, -170.702 62.529, -170.667 62.526, -170.632 62.482, -170.78 62.41, -170.773 62.405, -170.807 62.309, -170.905 62.274, -171.095 62.232, -171.159 62.198, -171.209 62.17, -171.287 62.11, -171.594 61.942, -171.625 61.912, -171.144 61.638, -171.054 61.515, -171.266 61.414, -171.259 61.386, -171.254 61.346, -171.634 61.145, -171.664 61.141, -171.847 60.937, -171.842 60.725, -171.711 60.671, -171.684 60.702, -171.778 60.719, -171.793 60.763, -171.672 61.111, -171.621 61.136, -171.65 61.139, -171.722 61.154, -171.929 61.156, -171.906 61.181, -171.99 61.118, -172.037 61.106, -172.172 61.099, -172.133 61.071, -172.135 61.078, -172.164 61.064, -172.135 61.068, -172.176 61.051, -172.225 61.067, -172.437 61.022, -172.58 60.938, -172.545 60.951, -172.543 60.949, -172.556 60.95, -172.435 61.007, -172.453 60.996, -172.407 60.931, -172.307 60.886, -172.101 60.756, -171.9 60.768, -171.917 60.78, -171.661 60.749, -171.519 60.749, -171.464 60.77, -171.522 60.776, -171.439 60.805, -171.494 60.775, -171.524 60.766, -171.48 60.762, -172.201 61.009, -172.133 61.001, -172 60.912, -172.031 60.878, -172.019 60.886, -172.022 60.887, -172.085 60.9, -172.018 60.86, -172.032 60.865, -172.039 60.852, -172.038 60.848, -171.873 60.953, -171.773 60.945, -171.968 61.006, -171.998 61.024, -172.056 61.064, -172.363 61.087, -172.368 61.054, -172.368 61.084, -172.485 61.232, -172.514 61.201, -172.529 61.191, -172.534 61.185, -172.57 61.186, -172.573 61.186, -172.576 61.19, -172.27 61.253, -172.26 61.255, -172.276 61.242, -172.283 61.248, -172.316 61.246, -172.34 61.25, -172.294 61.265, -172.304 61.261, -172.274 61.259, -172.387 61.221, -172.482 61.227, -172.728 60.996, -172.732 61.012, -172.874 60.975, -172.367 60.925, -172.313 60.933, -172.083 60.96, -171.862 60.913, -171.901 60.939, -171.841 60.966, -171.757 60.982, -171.768 60.973, -171.77 60.957, -171.828 60.857, -171.835 60.829, -171.994 60.771, -171.915 60.796, -171.742 60.78, -171.746 60.729, -171.779 60.717, -171.794 60.703, -172.019 60.705, -171.886 60.704, -171.965 60.666, -171.965 60.637, -171.912 60.624, -171.794 60.627, -171.994 60.495, -171.905 60.504, -171.865 60.509, -171.946 60.627, -171.963 60.649, -171.934 60.675, -171.926 60.682, -171.976 60.656, -172.041 60.683, -171.786 60.842, -171.593 60.894, -171.546 60.898, -171.633 60.883, -171.633 60.884, -171.636 60.887, -171.638 60.891, -171.815 60.941, -171.852 61.026, -171.86 61.033, -171.844 61.047, -172.037 61.083, -172.076 61.067, -172.074 61.064, -172.068 61.055, -172.059 61.056, -173.014 60.796, -173.023 60.777, -173.014 60.769, -173.049 60.771, -173.049 60.774, -172.609 60.827, -172.608 60.81, -172.612 60.776, -172.6 60.78, -172.635 60.791, -172.618 60.771, -172.524 60.76, -172.573 60.76, -172.731 60.759, -172.734 60.78, -172.687 60.796, -172.728 60.808, -172.75 60.819, -172.733 60.815, -172.753 60.818, -172.749 60.81, -172.77 60.818, -172.778 60.831, -172.719 60.821, -172.764 60.825, -172.754 60.85, -172.782 60.843, -172.783 60.846, -172.784 60.847, -172.778 60.846, -172.754 60.886, -172.756 60.885, -172.747 60.896, -172.79 60.883, -172.818 60.886, -172.835 60.893, -172.49 60.996, -172.453 61.008, -172.282 60.973, -172.243 60.974, -172.264 60.949, -172.273 60.953, -172.287 60.963, -172.27 60.985, -172.266 60.988, -172.095 61.036, -172.03 61.036, -172.033 61.029, -172.049 61.027, -172.064 61.03, -172.105 61.039, -172.108 61.042, -172.087 61.082, -172.172 61.018, -172.371 60.951, -172.353 60.952, -172.431 60.912, -172.538 60.907, -172.592 60.868, -172.237 60.998, -172.236 60.998, -172.364 61.029, -172.351 61.009, -172.332 60.992, -172.378 60.971, -172.406 60.981, -172.386 60.987, -172.331 60.97, -172.341 60.945, -172.368 60.966, -172.3 60.924, -172.338 60.967, -172.392 60.951, -172.362 60.968, -172.37 61.034, -172.332 61.029, -172.343 61.034, -172.177 60.968, -172.363 60.933, -172.246 60.915, -172.276 60.921, -172.278 60.929, -172.283 60.927, -172.279 60.957, -172.6 60.953, -172.79 60.933, -172.924 60.889, -173.103 60.806, -172.729 60.811, -172.521 60.89, -172.55 60.875, -172.558 60.879, -172.519 60.898, -172.603 60.889, -172.565 60.894, -172.577 61.012, -172.552 61.006, -172.366 60.936, -172.328 60.93, -172.331 60.92, -172.219 60.914, -172.22 60.88, -172.239 60.896, -171.893 61.033, -171.993 61.091, -171.987 61.074, -171.921 61.083, -171.99 61.091, -172.193 60.917, -172.092 60.819, -172.07 60.816, -172.102 60.817)",0.0,0.0,deployment,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv new file mode 100644 index 0000000..a89bae2 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv @@ -0,0 +1,1219 @@ +eventID,occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,minimumDepthInMeters,maximumDepthInMeters,dataGeneralizations,bibliographicCitation,occurrenceRemarks +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T03:00:00Z_0.0_bearded_seal,present,HumanObservation,137079_bearded_seal,2011-06-18T03:00:00Z,66.64,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,0,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T04:07:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T04:07:02Z,66.62,-162.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T05:16:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T05:16:18Z,66.617,-163.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T07:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T07:03:35Z,66.6,-163.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T09:11:19Z,66.601,-163.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T11:13:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T11:13:42Z,66.605,-163.096,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T12:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T12:50:52Z,66.625,-163.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T14:14:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T14:14:40Z,66.64,-163.08,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T00:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T00:08:08Z,66.662,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 6 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T01:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T01:46:52Z,66.644,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T02:17:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T02:17:16Z,66.644,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T03:25:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T03:25:37Z,66.646,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T05:06:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T05:06:44Z,66.665,-162.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T07:08:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T07:08:49Z,66.652,-163.029,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T00:07:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T00:07:22Z,66.629,-163.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T03:16:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T03:16:21Z,66.58,-162.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T04:53:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T04:53:44Z,66.537,-162.937,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T05:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T05:04:36Z,66.559,-162.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T06:38:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T06:38:36Z,66.548,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T00:19:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T00:19:43Z,66.631,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T01:19:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T01:19:38Z,66.639,-162.983,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T03:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T03:01:07Z,66.632,-162.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T04:47:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T04:47:17Z,66.583,-162.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T06:27:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T06:27:31Z,66.561,-162.848,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T00:02:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T00:02:33Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T01:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T01:03:38Z,66.61,-162.94,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T02:17:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T02:17:13Z,66.597,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T04:10:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T04:10:21Z,66.593,-162.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T05:52:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T05:52:14Z,66.527,-162.829,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T06:06:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T06:06:27Z,66.528,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T07:45:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T07:45:44Z,66.505,-162.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T01:34:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T01:34:03Z,66.431,-162.697,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T03:33:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T03:33:52Z,66.457,-162.769,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T04:23:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T04:23:32Z,66.475,-162.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T07:13:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T07:13:31Z,66.501,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T08:53:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T08:53:26Z,66.508,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T13:42:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T13:42:55Z,66.56,-162.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T00:32:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T00:32:04Z,66.593,-162.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T03:07:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T03:07:08Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T05:51:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T05:51:21Z,66.615,-162.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T06:51:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T06:51:41Z,66.614,-162.957,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T07:10:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T07:10:49Z,66.611,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T08:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T08:51:08Z,66.609,-162.933,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T00:09:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T00:09:16Z,66.614,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T01:18:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T01:18:26Z,66.625,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T02:41:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T02:41:14Z,66.616,-163.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T03:29:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T03:29:42Z,66.626,-163.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T04:41:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T04:41:52Z,66.611,-163.006,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T05:04:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T05:04:57Z,66.621,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T06:26:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T06:26:11Z,66.618,-162.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T07:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T07:22:06Z,66.634,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T08:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T08:06:03Z,66.611,-163.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T00:38:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T00:38:51Z,66.612,-162.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T02:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T02:03:51Z,66.606,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T03:09:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T03:09:42Z,66.628,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T04:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T04:20:01Z,66.615,-162.954,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T05:25:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T05:25:22Z,66.611,-162.949,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T06:24:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T06:24:28Z,66.628,-162.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T08:06:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T08:06:47Z,66.625,-162.903,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T00:53:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T00:53:46Z,66.504,-163.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T01:08:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T01:08:26Z,66.527,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T02:18:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T02:18:56Z,66.508,-163.036,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T03:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T03:33:11Z,66.518,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T04:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T04:29:26Z,66.525,-163.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T05:36:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T05:36:11Z,66.532,-163.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T03:03:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T03:03:22Z,66.627,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T05:00:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T05:00:08Z,66.634,-163.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T06:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T06:45:07Z,66.636,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T07:23:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T07:23:57Z,66.631,-163.082,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T08:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T08:36:02Z,66.63,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T09:04:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T09:04:12Z,66.617,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T00:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T00:29:26Z,66.7,-163.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T03:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T03:09:48Z,66.74,-163.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T17:38:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T17:38:47Z,66.842,-163.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T18:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T18:06:09Z,66.86,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-30T02:06:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T02:06:33Z,66.861,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-30T04:36:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T04:36:27Z,66.937,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-30T10:05:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T10:05:17Z,66.988,-163.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-01T01:02:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T01:02:21Z,67.031,-164.349,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-01T07:50:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T07:50:05Z,67.042,-164.584,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-01T15:35:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T15:35:51Z,67.083,-165.046,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T07:42:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T07:42:23Z,67.429,-165.827,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T12:06:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T12:06:46Z,67.524,-165.951,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T13:32:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T13:32:11Z,67.563,-166.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T15:24:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T15:24:00Z,67.594,-166.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T16:51:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T16:51:50Z,67.624,-166.111,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T00:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T00:42:52Z,67.724,-166.456,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T01:09:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T01:09:17Z,67.726,-166.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T03:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T03:14:13Z,67.754,-166.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T07:19:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T07:19:08Z,67.83,-166.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-04T10:27:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T10:27:18Z,68.531,-167.802,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-04T13:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T13:22:06Z,68.614,-167.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T00:48:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T00:48:34Z,68.814,-167.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T01:15:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T01:15:53Z,68.799,-167.21,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T05:46:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T05:46:44Z,68.875,-166.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T07:07:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T07:07:39Z,68.88,-166.703,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T13:16:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T13:16:41Z,69.014,-166.442,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T01:45:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T01:45:55Z,69.275,-165.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T02:05:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T02:05:39Z,69.283,-165.986,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T04:37:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T04:37:29Z,69.309,-165.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T06:18:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T06:18:21Z,69.322,-165.82,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T07:08:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T07:08:44Z,69.32,-165.812,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T09:40:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T09:40:17Z,69.341,-165.751,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T11:20:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T11:20:44Z,69.346,-165.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T00:54:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T00:54:05Z,69.399,-165.385,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T01:01:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T01:01:21Z,69.416,-165.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T04:54:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T04:54:31Z,69.43,-165.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T05:05:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T05:05:05Z,69.436,-165.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T13:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T13:02:46Z,69.543,-164.969,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T20:22:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T20:22:52Z,69.629,-164.92,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-08T12:40:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-08T12:40:55Z,69.682,-164.257,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T02:34:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T02:34:30Z,69.818,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T05:23:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T05:23:26Z,69.824,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T06:57:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T06:57:06Z,69.835,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T08:01:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T08:01:24Z,69.83,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T10:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T10:51:51Z,69.85,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T14:09:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T14:09:09Z,69.834,-163.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T15:51:15Z,69.825,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T03:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T03:51:31Z,69.836,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T06:34:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T06:34:13Z,69.857,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T07:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T07:13:38Z,69.849,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T12:21:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T12:21:32Z,69.858,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T13:59:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T13:59:06Z,69.867,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T14:02:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T14:02:19Z,69.87,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T15:15:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T15:15:43Z,69.875,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T00:11:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T00:11:33Z,69.857,-163.606,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T01:49:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T01:49:20Z,69.863,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T02:56:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T02:56:55Z,69.858,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T03:27:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T03:27:49Z,69.869,-163.571,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T13:15:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T13:15:14Z,69.874,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T02:11:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T02:11:32Z,69.768,-163.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T06:30:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T06:30:41Z,69.779,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T09:19:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T09:19:42Z,69.816,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T11:59:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T11:59:25Z,69.827,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T13:37:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T13:37:28Z,69.831,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T17:42:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T17:42:31Z,69.85,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T18:41:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T18:41:42Z,69.867,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-13T13:29:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T13:29:37Z,70.028,-163.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-13T14:09:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T14:09:22Z,70.03,-163.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-14T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T05:10:23Z,70.184,-162.602,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-14T21:56:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T21:56:00Z,70.381,-161.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T11:28:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T11:28:11Z,70.453,-161.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T13:07:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T13:07:28Z,70.456,-161.425,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T15:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T15:02:20Z,70.42,-161.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T16:25:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T16:25:24Z,70.445,-161.553,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T17:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T17:03:38Z,70.415,-161.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T00:50:28Z,70.4,-161.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T01:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T01:32:28Z,70.403,-161.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T02:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T02:32:28Z,70.409,-161.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T03:06:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T03:06:58Z,70.396,-161.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T04:17:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T04:17:28Z,70.398,-161.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T01:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T01:06:22Z,70.386,-161.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T02:17:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T02:17:01Z,70.405,-161.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T06:13:20Z,70.407,-161.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T14:32:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T14:32:02Z,70.349,-162.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T16:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T16:08:51Z,70.311,-162.562,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T17:45:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T17:45:06Z,70.287,-162.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T18:11:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T18:11:09Z,70.275,-162.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T19:32:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T19:32:36Z,70.234,-162.748,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T00:27:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T00:27:32Z,70.114,-162.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T02:43:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T02:43:18Z,70.084,-162.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T03:28:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T03:28:15Z,70.07,-163.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T04:04:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T04:04:15Z,70.08,-162.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T05:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T05:07:15Z,70.082,-162.938,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T06:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T06:07:15Z,70.082,-162.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T07:09:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T07:09:55Z,70.086,-162.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T00:51:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T00:51:20Z,69.829,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T03:03:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T03:03:50Z,69.814,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T04:11:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T04:11:20Z,69.822,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T08:29:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T08:29:50Z,69.842,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T12:28:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T12:28:03Z,69.757,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T13:17:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T13:17:09Z,69.756,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T03:13:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T03:13:16Z,69.734,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T05:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T05:41:26Z,69.748,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T06:39:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T06:39:56Z,69.755,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T07:22:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T07:22:41Z,69.755,-163.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T08:09:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T08:09:11Z,69.761,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-21T12:05:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T12:05:51Z,69.711,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-21T13:46:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T13:46:00Z,69.706,-163.611,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-21T15:21:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T15:21:15Z,69.706,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T00:08:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T00:08:54Z,69.693,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T04:08:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T04:08:05Z,69.68,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T11:52:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T11:52:21Z,69.691,-163.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T13:52:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T13:52:57Z,69.667,-163.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T01:32:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T01:32:47Z,69.628,-163.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T06:48:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T06:48:48Z,69.6,-163.877,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T07:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T07:06:03Z,69.6,-163.875,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T08:31:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T08:31:13Z,69.605,-163.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T11:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T11:41:00Z,69.613,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T00:10:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T00:10:03Z,69.688,-163.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T01:41:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T01:41:51Z,69.7,-163.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T02:51:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T02:51:36Z,69.696,-163.899,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T06:36:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T06:36:50Z,69.728,-163.935,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T08:20:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T08:20:12Z,69.748,-163.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T13:12:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T13:12:12Z,69.72,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T14:56:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T14:56:47Z,69.717,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T02:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T02:21:25Z,69.749,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T06:24:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T06:24:49Z,69.78,-163.585,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T11:23:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T11:23:44Z,69.774,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T13:04:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T13:04:26Z,69.767,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T14:14:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T14:14:49Z,69.756,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T04:29:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T04:29:07Z,69.766,-163.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T06:16:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T06:16:26Z,69.775,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T09:26:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T09:26:49Z,69.785,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T12:52:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T12:52:06Z,69.8,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T16:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T16:06:53Z,69.798,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-27T00:42:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T00:42:15Z,69.802,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-27T02:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T02:14:06Z,69.83,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-27T03:11:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T03:11:21Z,69.801,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-28T03:26:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T03:26:35Z,69.744,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-28T04:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T04:03:51Z,69.735,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-28T05:22:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T05:22:01Z,69.736,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-29T12:18:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T12:18:23Z,69.729,-163.52,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-29T20:02:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T20:02:45Z,69.696,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T01:53:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T01:53:52Z,69.702,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T04:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T04:47:02Z,69.679,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T05:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T05:22:07Z,69.669,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T06:03:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T06:03:17Z,69.669,-163.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T07:03:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T07:03:27Z,69.668,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T00:07:45Z,69.666,-163.649,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T03:13:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T03:13:57Z,69.669,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T07:42:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T07:42:40Z,69.655,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T09:02:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T09:02:22Z,69.656,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T13:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T13:36:04Z,69.667,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T01:18:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T01:18:30Z,69.665,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T03:15:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T03:15:30Z,69.668,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T04:31:07Z,69.669,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T05:13:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T05:13:58Z,69.664,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T06:42:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T06:42:09Z,69.67,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T02:27:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T02:27:23Z,69.672,-163.739,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T03:11:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T03:11:08Z,69.678,-163.646,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T04:06:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T04:06:38Z,69.68,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T14:54:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T14:54:19Z,69.656,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T01:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T01:09:48Z,69.675,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T02:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T02:00:42Z,69.675,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T04:31:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T04:31:10Z,69.663,-163.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T05:21:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T05:21:24Z,69.67,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T06:16:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T06:16:19Z,69.675,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T04:21:21Z,69.685,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T05:45:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T05:45:49Z,69.685,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T07:26:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T07:26:17Z,69.685,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T11:06:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T11:06:32Z,69.688,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T12:58:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T12:58:21Z,69.694,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T13:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T13:33:49Z,69.699,-163.59,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T14:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T14:33:26Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T00:58:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T00:58:31Z,69.676,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T04:21:21Z,69.69,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T05:20:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T05:20:19Z,69.687,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T12:47:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T12:47:47Z,69.668,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T15:58:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T15:58:19Z,69.658,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T17:42:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T17:42:10Z,69.659,-163.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-06T00:00:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T00:00:25Z,69.653,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 6 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-06T01:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T01:38:40Z,69.65,-163.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-06T02:06:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T02:06:40Z,69.644,-163.567,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T04:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T04:33:23Z,69.741,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T05:24:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T05:24:22Z,69.731,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T06:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T06:53:55Z,69.732,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T07:10:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T07:10:55Z,69.737,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T09:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T09:38:40Z,69.743,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T10:25:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T10:25:10Z,69.747,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-08T01:45:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T01:45:33Z,69.741,-163.619,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-08T03:22:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T03:22:23Z,69.732,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-08T10:03:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T10:03:23Z,69.724,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T00:04:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T00:04:58Z,69.732,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T01:16:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T01:16:31Z,69.732,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T03:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T03:24:48Z,69.725,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T06:47:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T06:47:37Z,69.706,-163.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T07:10:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T07:10:20Z,69.704,-163.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T08:01:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T08:01:20Z,69.7,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T09:36:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T09:36:35Z,69.698,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T10:26:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T10:26:05Z,69.698,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T04:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T04:13:56Z,69.678,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T05:59:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T05:59:52Z,69.708,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T06:45:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T06:45:48Z,69.707,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T09:14:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T09:14:52Z,69.72,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T11:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T11:46:33Z,69.721,-163.714,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T12:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T12:49:55Z,69.725,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-11T02:59:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T02:59:33Z,69.711,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-11T07:14:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T07:14:21Z,69.699,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-11T18:14:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T18:14:48Z,69.642,-163.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-12T14:46:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T14:46:19Z,69.686,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-12T15:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T15:08:55Z,69.684,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-12T16:25:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T16:25:21Z,69.684,-163.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T04:14:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T04:14:44Z,69.69,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T12:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T12:55:34Z,69.689,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T17:54:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T17:54:16Z,69.689,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T18:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T18:07:01Z,69.689,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-14T06:47:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-14T06:47:14Z,69.681,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T02:09:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T02:09:24Z,69.686,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T04:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T04:46:52Z,69.69,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T12:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T12:34:32Z,69.689,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T14:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T14:09:46Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-16T06:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T06:08:45Z,69.68,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-16T12:37:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T12:37:44Z,69.671,-163.717,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-16T17:02:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T17:02:18Z,69.668,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T07:19:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T07:19:25Z,69.674,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T18:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T18:20:04Z,69.693,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T20:32:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T20:32:27Z,69.681,-163.658,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T22:46:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T22:46:07Z,69.686,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-18T16:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T16:13:38Z,69.694,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-18T17:18:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T17:18:15Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T00:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T00:02:43Z,69.634,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T04:49:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T04:49:42Z,69.659,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T06:07:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T06:07:54Z,69.644,-163.706,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T14:10:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T14:10:48Z,69.677,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T09:08:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T09:08:38Z,69.696,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T10:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T10:12:46Z,69.701,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T11:38:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T11:38:32Z,69.711,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T12:06:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T12:06:52Z,69.712,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T07:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T07:06:53Z,69.688,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T08:48:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T08:48:04Z,69.689,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T16:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T16:50:54Z,69.692,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T17:45:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T17:45:54Z,69.689,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T20:02:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T20:02:14Z,69.678,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T21:30:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T21:30:56Z,69.674,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T03:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T03:29:55Z,69.686,-163.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T05:10:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T05:10:29Z,69.676,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T06:44:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T06:44:54Z,69.665,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T07:04:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T07:04:18Z,69.662,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T03:56:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T03:56:30Z,69.671,-163.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T16:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T16:23:01Z,69.714,-163.833,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T17:33:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T17:33:56Z,69.712,-163.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T19:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T19:43:17Z,69.711,-163.819,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T21:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T21:07:36Z,69.713,-163.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T22:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T22:33:49Z,69.71,-163.817,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-24T07:07:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T07:07:27Z,69.641,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-24T08:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T08:53:27Z,69.64,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-24T09:25:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T09:25:30Z,69.638,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-25T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T16:45:07Z,69.675,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-25T17:49:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T17:49:47Z,69.681,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-25T22:59:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T22:59:37Z,69.68,-163.692,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-26T07:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T07:02:20Z,69.736,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-26T08:43:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T08:43:55Z,69.746,-163.685,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-26T10:51:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T10:51:10Z,69.751,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-27T00:43:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T00:43:42Z,69.758,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-27T10:04:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T10:04:20Z,69.689,-163.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-27T12:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T12:03:00Z,69.692,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T04:38:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T04:38:52Z,69.676,-163.698,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T06:21:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T06:21:05Z,69.678,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T09:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T09:48:01Z,69.685,-163.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T10:12:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T10:12:16Z,69.677,-163.695,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T11:50:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T11:50:56Z,69.688,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T12:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T12:07:36Z,69.685,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T04:23:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T04:23:52Z,69.689,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T07:54:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T07:54:54Z,69.684,-163.709,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T09:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T09:19:26Z,69.666,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T10:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T10:01:01Z,69.669,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T04:28:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T04:28:16Z,69.682,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T05:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T05:32:28Z,69.682,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T09:01:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T09:01:06Z,69.693,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T10:09:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T10:09:41Z,69.688,-163.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T11:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T11:33:26Z,69.682,-163.726,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-31T00:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T00:24:48Z,69.684,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-31T08:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T08:39:37Z,69.687,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-31T12:59:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T12:59:16Z,69.696,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T00:30:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T00:30:29Z,69.686,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T02:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T02:09:46Z,69.685,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T03:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T03:43:17Z,69.682,-163.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T06:45:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T06:45:01Z,69.683,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T07:12:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T07:12:04Z,69.682,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T08:09:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T08:09:57Z,69.668,-163.705,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T09:48:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T09:48:12Z,69.68,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T10:06:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T10:06:57Z,69.68,-163.69,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T07:58:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T07:58:57Z,69.691,-163.657,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T09:40:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T09:40:52Z,69.687,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T10:56:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T10:56:57Z,69.693,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T11:20:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T11:20:42Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T00:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T00:41:30Z,69.704,-163.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T02:18:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T02:18:07Z,69.698,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T05:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T05:39:01Z,69.688,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T07:20:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T07:20:03Z,69.68,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T08:32:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T08:32:12Z,69.683,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T09:03:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T09:03:57Z,69.678,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T10:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T10:49:16Z,69.686,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T12:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T12:49:48Z,69.676,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-04T02:14:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T02:14:56Z,69.682,-163.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-04T08:57:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T08:57:37Z,69.684,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-04T22:39:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T22:39:59Z,69.666,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-05T02:05:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T02:05:44Z,69.683,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-05T10:23:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T10:23:09Z,69.687,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-05T19:01:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T19:01:41Z,69.677,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T06:34:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T06:34:11Z,69.697,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T07:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T07:52:15Z,69.682,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T08:54:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T08:54:36Z,69.674,-163.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T09:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T09:34:14Z,69.683,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-07T09:15:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-07T09:15:50Z,69.816,-163.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T04:04:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T04:04:27Z,69.678,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T07:30:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T07:30:16Z,69.693,-163.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T08:44:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T08:44:44Z,69.698,-163.856,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T09:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T09:20:10Z,69.692,-163.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T10:15:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T10:15:04Z,69.691,-163.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T01:22:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T01:22:57Z,69.688,-164.088,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T03:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T03:53:55Z,69.69,-164.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T04:54:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T04:54:40Z,69.686,-164.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T07:16:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T07:16:53Z,69.691,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T08:53:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T08:53:14Z,69.694,-164.073,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T02:54:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T02:54:12Z,69.632,-164.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T03:41:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T03:41:02Z,69.635,-164.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T05:22:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T05:22:51Z,69.633,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T07:05:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T07:05:49Z,69.637,-164.14,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T08:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T08:34:21Z,69.63,-164.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T11:14:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T11:14:32Z,69.61,-164.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T00:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T00:34:50Z,69.607,-164.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T01:19:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T01:19:22Z,69.603,-164.151,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T03:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T03:15:32Z,69.596,-164.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T04:50:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T04:50:43Z,69.597,-164.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T05:53:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T05:53:29Z,69.594,-164.211,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T13:06:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T13:06:36Z,69.602,-164.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T16:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T16:01:07Z,69.608,-164.16,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T17:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T17:15:32Z,69.605,-164.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-12T07:52:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T07:52:25Z,69.749,-163.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-12T08:30:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T08:30:40Z,69.752,-163.736,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T06:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T06:34:50Z,70.054,-163.138,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T07:30:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T07:30:20Z,70.041,-163.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T08:13:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T08:13:05Z,70.038,-163.18,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T19:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T19:02:46Z,70.169,-162.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-14T20:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T20:33:23Z,70.423,-161.314,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-14T22:13:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T22:13:11Z,70.43,-161.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-14T23:52:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T23:52:41Z,70.438,-161.263,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-15T06:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T06:48:01Z,70.454,-161.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-15T07:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T07:42:11Z,70.456,-160.972,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-17T02:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T02:20:01Z,70.965,-158.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-17T23:07:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T23:07:30Z,71.244,-157.374,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-18T00:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T00:27:05Z,71.228,-157.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-18T15:37:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T15:37:55Z,71.43,-156.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-19T01:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T01:03:35Z,71.46,-156.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-19T03:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T03:07:01Z,71.478,-156.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T05:39:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T05:39:40Z,71.198,-154.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T09:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T09:51:31Z,71.122,-154.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T11:31:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T11:31:18Z,71.055,-154.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T12:45:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T12:45:28Z,71.05,-154.613,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T13:02:32Z,71.066,-154.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T14:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T14:25:16Z,71.094,-154.575,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T00:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T00:42:11Z,71.356,-156.058,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T01:28:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T01:28:02Z,71.355,-156.197,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T04:50:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T04:50:51Z,71.414,-156.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T06:23:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T06:23:45Z,71.406,-156.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T09:39:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T09:39:45Z,71.383,-156.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T10:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T10:55:34Z,71.358,-157.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T12:58:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T12:58:33Z,71.25,-157.451,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T17:34:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T17:34:06Z,71.162,-157.974,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T02:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T02:48:06Z,71.154,-158.309,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T04:49:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T04:49:54Z,71.154,-158.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T06:09:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T06:09:56Z,71.148,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T08:05:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T08:05:34Z,71.15,-158.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T12:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T12:25:31Z,71.156,-158.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T14:07:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T14:07:32Z,71.165,-158.281,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T15:37:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T15:37:45Z,71.165,-158.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T16:45:07Z,71.155,-158.327,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T17:18:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T17:18:10Z,71.151,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-23T00:06:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T00:06:34Z,71.157,-158.329,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-23T04:08:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T04:08:23Z,71.17,-158.325,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-23T12:10:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T12:10:45Z,71.1,-158.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-24T05:46:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-24T05:46:01Z,71.152,-158.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-25T22:21:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-25T22:21:18Z,70.489,-162.084,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T01:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T01:23:07Z,70.501,-162.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T04:47:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T04:47:46Z,70.493,-162.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T07:14:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T07:14:38Z,70.501,-162.583,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T08:01:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T08:01:56Z,70.503,-162.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T01:35:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T01:35:00Z,70.299,-163.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T02:44:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T02:44:50Z,70.302,-163.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T04:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T04:27:15Z,70.287,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T05:24:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T05:24:12Z,70.284,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T07:07:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T07:07:34Z,70.278,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T09:22:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T09:22:45Z,70.265,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T15:18:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T15:18:43Z,70.241,-164.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T00:09:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T00:09:33Z,70.205,-164.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T02:24:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T02:24:10Z,70.205,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T03:30:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T03:30:30Z,70.193,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T04:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T04:11:43Z,70.19,-164.093,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T05:12:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T05:12:11Z,70.189,-164.112,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T06:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T06:51:08Z,70.178,-164.142,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T07:20:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T07:20:30Z,70.175,-164.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T08:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T08:23:25Z,70.171,-164.156,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T09:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T09:02:07Z,70.168,-164.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T02:08:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T02:08:12Z,70.133,-164.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T03:48:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T03:48:43Z,70.122,-164.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T06:44:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T06:44:34Z,70.127,-164.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T07:08:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T07:08:36Z,70.125,-164.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T08:29:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T08:29:36Z,70.125,-164.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T00:17:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T00:17:46Z,70.093,-164.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T01:24:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T01:24:34Z,70.098,-164.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T03:05:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T03:05:42Z,70.081,-164.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T04:45:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T04:45:38Z,70.065,-164.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T05:03:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T05:03:44Z,70.071,-164.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T08:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T08:10:17Z,70.068,-164.452,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T09:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T09:47:02Z,70.068,-164.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T01:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T01:24:18Z,70.099,-164.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T03:16:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T03:16:13Z,70.108,-164.249,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T07:58:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T07:58:23Z,70.103,-164.245,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T08:10:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T08:10:13Z,70.109,-164.226,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T09:34:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T09:34:35Z,70.116,-164.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T15:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T15:20:01Z,70.1,-164.269,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T00:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T00:08:45Z,70.085,-164.296,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T01:03:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T01:03:21Z,70.09,-164.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T02:41:57Z,70.093,-164.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T04:20:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T04:20:36Z,70.102,-164.29,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T07:47:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T07:47:49Z,70.078,-164.272,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T00:31:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T00:31:26Z,70.214,-164.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T03:56:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T03:56:15Z,70.243,-164.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T05:35:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T05:35:57Z,70.246,-164.047,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T07:18:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T07:18:20Z,70.257,-164.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T16:11:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T16:11:31Z,70.152,-164.241,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T00:21:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T00:21:07Z,70.106,-164.271,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T03:46:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T03:46:32Z,70.058,-164.335,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T05:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T05:08:47Z,70.049,-164.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T06:52:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T06:52:55Z,70.022,-164.411,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T07:22:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T07:22:40Z,70.025,-164.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T08:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T08:37:00Z,70.025,-164.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T02:05:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T02:05:06Z,69.916,-164.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T05:23:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T05:23:51Z,69.875,-164.822,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T06:29:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T06:29:21Z,69.874,-164.838,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T07:10:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T07:10:39Z,69.871,-164.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T08:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T08:12:01Z,69.864,-164.879,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T00:12:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T00:12:18Z,70.011,-164.503,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T03:34:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T03:34:18Z,70.005,-164.472,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T04:24:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T04:24:44Z,70.015,-164.462,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T05:14:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T05:14:37Z,70.025,-164.46,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T06:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T06:06:22Z,70.035,-164.47,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T07:47:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T07:47:10Z,70.04,-164.506,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T08:40:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T08:40:02Z,70.042,-164.547,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-07T05:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-07T05:45:00Z,69.87,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T04:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T04:51:51Z,70.231,-162.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T05:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T05:14:55Z,70.228,-162.31,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T06:31:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T06:31:25Z,70.245,-162.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T19:32:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T19:32:32Z,70.484,-162.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T20:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T20:42:54Z,70.461,-162.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T00:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T00:33:11Z,70.499,-162.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T02:57:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T02:57:24Z,70.503,-162.627,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T03:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T03:12:01Z,70.512,-162.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T04:54:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T04:54:13Z,70.513,-162.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T06:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T06:23:07Z,70.516,-162.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T17:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T17:01:07Z,70.451,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T20:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T20:17:48Z,70.433,-163.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T00:31:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T00:31:49Z,70.374,-164.024,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T01:35:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T01:35:53Z,70.354,-164.042,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T02:45:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T02:45:29Z,70.345,-164.066,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T04:24:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T04:24:13Z,70.322,-164.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T06:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T06:07:55Z,70.285,-164.118,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T07:51:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T07:51:45Z,70.289,-164.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T13:02:32Z,70.22,-164.256,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T01:54:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T01:54:17Z,70.067,-164.33,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T02:30:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T02:30:02Z,70.066,-164.356,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T04:12:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T04:12:50Z,70.052,-164.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T05:47:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T05:47:36Z,70.031,-164.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T06:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T06:10:17Z,70.02,-164.41,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T00:31:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T00:31:30Z,70.074,-164.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T03:44:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T03:44:13Z,70.051,-164.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T05:21:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T05:21:13Z,70.041,-164.377,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T07:02:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T07:02:37Z,70.048,-164.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T00:29:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T00:29:13Z,69.979,-164.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T01:46:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T01:46:11Z,69.968,-164.814,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T03:53:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T03:53:43Z,69.942,-164.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T05:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T05:33:21Z,69.93,-164.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T12:28:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T12:28:12Z,69.869,-165.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T15:51:15Z,69.895,-165.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T17:41:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T17:41:36Z,69.903,-165.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T18:37:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T18:37:53Z,69.912,-165.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T00:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T00:15:05Z,69.995,-165.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T01:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T01:51:13Z,70.005,-165.735,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T03:36:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T03:36:45Z,70.009,-165.849,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T05:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T05:08:51Z,70.012,-165.922,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T06:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T06:48:13Z,70.025,-165.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T07:04:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T07:04:21Z,70.028,-165.887,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T08:00:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T08:00:16Z,70.035,-165.863,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T00:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T00:07:48Z,69.941,-166.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T04:10:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T04:10:52Z,69.867,-165.936,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T05:07:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T05:07:23Z,69.847,-165.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T13:50:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T13:50:42Z,69.651,-165.808,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T14:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T14:59:21Z,69.622,-165.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T16:15:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T16:15:03Z,69.601,-165.888,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T20:36:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T20:36:05Z,69.487,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T02:07:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T02:07:56Z,69.351,-165.798,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T04:57:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T04:57:44Z,69.328,-165.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T11:27:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T11:27:46Z,69.279,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T12:04:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T12:04:10Z,69.272,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T01:47:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T01:47:12Z,68.941,-165.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T03:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T03:04:22Z,68.898,-165.539,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T04:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T04:12:46Z,68.866,-165.455,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T05:46:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T05:46:28Z,68.863,-165.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T06:46:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T06:46:05Z,68.871,-165.252,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T07:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T07:27:15Z,68.884,-165.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T08:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T08:09:30Z,68.885,-165.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T09:08:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T09:08:13Z,68.893,-165.231,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-18T21:06:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T21:06:28Z,68.395,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-18T23:21:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T23:21:47Z,68.392,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T00:09:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T00:09:54Z,68.385,-167.24,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T01:03:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T01:03:52Z,68.377,-167.28,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T03:30:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T03:30:48Z,68.342,-167.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T05:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T05:04:51Z,68.318,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T06:45:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T06:45:16Z,68.309,-167.398,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T07:40:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T07:40:46Z,68.318,-167.434,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T08:27:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T08:27:16Z,68.339,-167.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T10:08:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T10:08:31Z,68.37,-167.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T01:26:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T01:26:36Z,68.15,-167.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T04:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T04:50:52Z,68.076,-167.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T05:33:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T05:33:55Z,68.064,-167.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T11:17:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T11:17:40Z,67.946,-167.876,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T14:04:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T14:04:09Z,67.909,-167.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T17:55:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T17:55:10Z,67.855,-167.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T03:58:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T03:58:17Z,67.717,-167.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T04:29:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T04:29:40Z,67.728,-167.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T05:13:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T05:13:37Z,67.724,-167.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T06:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T06:51:07Z,67.732,-167.295,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T07:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T07:44:22Z,67.745,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T01:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T01:33:11Z,67.601,-166.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T04:07:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T04:07:00Z,67.551,-166.32,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T13:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T13:41:00Z,67.3,-165.916,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T20:56:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T20:56:49Z,67.154,-165.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T00:17:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T00:17:27Z,67.12,-165.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T01:27:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T01:27:33Z,67.106,-165.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T02:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T02:46:02Z,67.096,-165.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T05:13:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T05:13:14Z,67.072,-165.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T06:03:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T06:03:39Z,67.082,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T00:14:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T00:14:18Z,67.135,-166.069,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T01:40:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T01:40:00Z,67.149,-166.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T03:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T03:59:21Z,67.179,-166.179,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T04:03:01Z,67.183,-166.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T05:02:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T05:02:59Z,67.195,-166.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T12:16:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T12:16:22Z,67.244,-166.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T13:58:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T13:58:42Z,67.252,-166.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T15:58:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T15:58:38Z,67.239,-166.601,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T17:41:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T17:41:20Z,67.243,-166.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T01:59:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T01:59:27Z,67.167,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T02:04:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T02:04:07Z,67.161,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T18:53:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T18:53:48Z,67.255,-167.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T20:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T20:20:10Z,67.281,-167.424,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T22:00:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T22:00:30Z,67.316,-167.414,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T03:16:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T03:16:10Z,67.423,-167.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T06:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T06:38:11Z,67.456,-167.288,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T15:15:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T15:15:42Z,67.689,-166.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T16:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T16:21:25Z,67.702,-167.015,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T00:43:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T00:43:29Z,67.855,-167.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T01:08:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T01:08:00Z,67.877,-167.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T02:24:24Z,67.911,-167.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T04:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T04:22:30Z,67.893,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T06:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T06:07:52Z,67.903,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T11:42:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T11:42:26Z,67.942,-167.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T12:47:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T12:47:55Z,67.958,-167.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T00:32:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T00:32:30Z,67.955,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T01:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T01:10:36Z,67.958,-167.426,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T02:15:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T02:15:46Z,67.979,-167.466,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T07:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T07:36:02Z,67.951,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T13:13:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T13:13:21Z,67.974,-167.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T00:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T00:18:22Z,68.211,-167.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T03:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T03:45:00Z,68.267,-167.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T04:03:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T04:03:31Z,68.278,-167.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T14:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T14:04:36Z,68.562,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T15:41:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T15:41:17Z,68.553,-167.233,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T16:26:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T16:26:40Z,68.554,-167.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T17:30:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T17:30:38Z,68.544,-167.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T18:56:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T18:56:52Z,68.552,-167.216,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T19:08:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T19:08:41Z,68.545,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T00:10:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T00:10:15Z,68.564,-167.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T01:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T01:54:43Z,68.558,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T02:10:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T02:10:32Z,68.557,-167.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T03:03:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T03:03:04Z,68.553,-167.205,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T04:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T04:37:00Z,68.556,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T05:28:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T05:28:22Z,68.547,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T06:23:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T06:23:03Z,68.55,-167.157,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T07:58:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T07:58:32Z,68.552,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T09:44:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T09:44:16Z,68.552,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T00:39:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T00:39:24Z,68.555,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T01:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T01:41:26Z,68.561,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T02:41:57Z,68.564,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T03:36:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T03:36:34Z,68.567,-167.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T04:34:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T04:34:07Z,68.557,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T05:17:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T05:17:26Z,68.558,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T06:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T06:18:36Z,68.543,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T07:38:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T07:38:19Z,68.537,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T08:00:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T08:00:31Z,68.531,-167.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T09:18:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T09:18:59Z,68.531,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T00:49:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T00:49:31Z,68.563,-167.166,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T01:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T01:30:26Z,68.548,-167.192,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T02:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T02:07:01Z,68.544,-167.15,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T04:03:01Z,68.541,-167.124,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T05:07:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T05:07:25Z,68.535,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T06:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T06:44:12Z,68.519,-167.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T07:15:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T07:15:10Z,68.523,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T08:56:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T08:56:10Z,68.512,-167.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T00:19:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T00:19:00Z,68.555,-167.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T01:21:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T01:21:14Z,68.559,-167.128,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T02:04:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T02:04:06Z,68.557,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T03:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T03:41:30Z,68.55,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T05:26:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T05:26:25Z,68.533,-167.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T06:33:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T06:33:41Z,68.534,-167.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T12:22:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T12:22:54Z,68.506,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T15:07:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T15:07:44Z,68.515,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T03:03:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T03:03:09Z,68.518,-166.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T05:00:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T05:00:07Z,68.505,-166.944,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T08:22:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T08:22:18Z,68.502,-166.966,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T12:11:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T12:11:58Z,68.495,-166.984,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T13:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T13:13:56Z,68.492,-166.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T14:57:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T14:57:05Z,68.502,-166.961,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T15:21:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T15:21:31Z,68.505,-166.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T01:20:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T01:20:28Z,68.5,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T02:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T02:49:16Z,68.506,-167.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T03:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T03:03:00Z,68.507,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T04:42:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T04:42:32Z,68.512,-166.995,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T07:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T07:53:27Z,68.489,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T13:08:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T13:08:43Z,68.508,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T00:47:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T00:47:53Z,68.532,-167.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T02:31:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T02:31:45Z,68.527,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T04:21:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T04:21:16Z,68.522,-167.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T06:00:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T06:00:43Z,68.525,-167.079,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T07:38:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T07:38:23Z,68.545,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T13:31:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T13:31:47Z,68.543,-167.104,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T00:26:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T00:26:03Z,68.531,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T01:18:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T01:18:01Z,68.528,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T02:17:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T02:17:38Z,68.529,-167.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T03:54:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T03:54:20Z,68.527,-167.007,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T05:34:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T05:34:44Z,68.54,-166.992,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T00:21:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T00:21:54Z,68.542,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T01:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T01:11:39Z,68.54,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T02:03:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T02:03:24Z,68.538,-167.11,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T03:31:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T03:31:15Z,68.537,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T05:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T05:06:09Z,68.54,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T06:52:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T06:52:10Z,68.522,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T07:16:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T07:16:55Z,68.536,-167.129,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T14:13:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T14:13:12Z,68.534,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T00:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T00:08:55Z,68.637,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T11:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T11:18:22Z,68.545,-167.23,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T13:58:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T13:58:34Z,68.538,-167.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T15:40:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T15:40:34Z,68.545,-167.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T16:20:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T16:20:51Z,68.542,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T00:55:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T00:55:21Z,68.524,-167.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T02:45:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T02:45:22Z,68.516,-167.011,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T04:16:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T04:16:37Z,68.511,-167.021,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T12:49:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T12:49:01Z,68.53,-167.051,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T02:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T02:12:01Z,68.526,-166.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T03:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T03:50:53Z,68.527,-166.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T04:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T04:14:13Z,68.532,-166.84,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T06:36:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T06:36:46Z,68.562,-166.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T12:38:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T12:38:15Z,68.584,-166.796,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T13:38:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T13:38:05Z,68.594,-166.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T00:04:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T00:04:33Z,68.513,-167.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T01:22:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T01:22:13Z,68.512,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T03:04:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T03:04:40Z,68.517,-167.127,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T04:47:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T04:47:26Z,68.507,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T05:15:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T05:15:35Z,68.508,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T06:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T06:24:38Z,68.509,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T10:46:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T10:46:03Z,68.494,-167.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T12:28:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T12:28:51Z,68.497,-167.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T13:48:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T13:48:03Z,68.496,-167.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T00:14:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T00:14:16Z,68.513,-167.035,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T01:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T01:51:15Z,68.51,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T02:53:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T02:53:05Z,68.502,-167.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T03:00:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T03:00:15Z,68.506,-167.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T04:37:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T04:37:04Z,68.493,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T05:14:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T05:14:29Z,68.495,-167.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T06:39:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T06:39:34Z,68.482,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T12:15:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T12:15:49Z,68.492,-166.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T13:19:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T13:19:17Z,68.496,-167.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T00:56:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T00:56:40Z,68.446,-167.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T02:41:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T02:41:45Z,68.465,-167.107,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T04:31:07Z,68.485,-167.125,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T06:16:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T06:16:01Z,68.486,-167.114,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T13:05:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T13:05:22Z,68.499,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T00:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T00:34:21Z,68.505,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T01:13:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T01:13:40Z,68.546,-167.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T02:53:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T02:53:11Z,68.493,-167.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T03:54:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T03:54:41Z,68.48,-167.147,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T04:07:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T04:07:41Z,68.482,-167.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T05:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T05:50:11Z,68.473,-167.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T00:49:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T00:49:43Z,68.424,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T01:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T01:50:53Z,68.423,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T02:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T02:04:51Z,68.425,-167.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T03:28:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T03:28:37Z,68.432,-166.999,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T04:00:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T04:00:52Z,68.432,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T05:22:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T05:22:37Z,68.424,-166.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T00:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T00:28:23Z,68.299,-167.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T01:41:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T01:41:08Z,68.286,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T02:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T02:08:08Z,68.278,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T03:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T03:05:08Z,68.264,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T04:46:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T04:46:23Z,68.245,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T05:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T05:28:23Z,68.236,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T00:17:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T00:17:08Z,68.224,-166.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T01:02:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T01:02:08Z,68.228,-166.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T02:00:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T02:00:38Z,68.233,-166.718,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T03:36:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T03:36:38Z,68.243,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T04:23:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T04:23:08Z,68.248,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T05:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T05:14:53Z,68.258,-166.738,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T01:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T01:28:50Z,68.306,-166.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T07:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T07:36:04Z,68.384,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T08:05:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T08:05:29Z,68.391,-166.985,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T13:53:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T13:53:49Z,68.496,-167.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T00:10:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T00:10:25Z,68.53,-167.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T01:33:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T01:33:40Z,68.534,-167.099,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T02:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T02:49:55Z,68.539,-167.109,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T03:50:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T03:50:10Z,68.535,-167.116,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T04:29:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T04:29:10Z,68.536,-167.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T05:27:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T05:27:40Z,68.539,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T06:09:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T06:09:40Z,68.539,-167.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T00:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T00:24:38Z,68.479,-167.137,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T01:30:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T01:30:31Z,68.474,-167.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T02:29:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T02:29:01Z,68.468,-167.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T03:09:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T03:09:04Z,68.457,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T04:09:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T04:09:31Z,68.449,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T05:06:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T05:06:31Z,68.441,-167.208,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T06:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T06:23:01Z,68.429,-167.228,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T00:18:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T00:18:08Z,68.16,-167.554,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T01:05:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T01:05:19Z,68.139,-167.544,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T02:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T02:49:15Z,68.069,-167.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T03:02:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T03:02:50Z,68.074,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T04:24:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T04:24:37Z,68.052,-167.492,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T05:27:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T05:27:37Z,68.041,-167.473,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T06:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T06:11:43Z,68.032,-167.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T01:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T01:03:51Z,67.684,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T10:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T10:30:26Z,67.427,-167.284,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T12:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T12:14:14Z,67.366,-167.285,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T13:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T13:07:52Z,67.339,-167.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T01:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T01:53:55Z,67.016,-167.791,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T07:14:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T07:14:50Z,66.906,-168.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T08:02:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T08:02:51Z,66.896,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T17:49:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T17:49:44Z,66.766,-168.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T00:39:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T00:39:05Z,66.653,-168.85,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T03:14:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T03:14:05Z,66.6,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T05:09:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T05:09:53Z,66.566,-168.81,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T14:29:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T14:29:57Z,66.385,-168.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T15:15:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T15:15:58Z,66.374,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T16:09:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T16:09:35Z,66.366,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-25T05:18:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T05:18:45Z,66.018,-168.025,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-25T14:46:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T14:46:54Z,65.697,-168.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-25T20:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T20:07:55Z,65.456,-168.587,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T00:18:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T00:18:17Z,65.406,-168.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T01:46:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T01:46:57Z,65.381,-168.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T02:42:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T02:42:07Z,65.358,-168.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T07:00:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T07:00:48Z,65.295,-168.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T08:38:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T08:38:37Z,65.263,-168.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T14:10:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T14:10:09Z,65.179,-168.572,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T00:17:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T00:17:18Z,65.063,-168.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T03:18:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T03:18:46Z,65.025,-168.737,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T04:58:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T04:58:58Z,65.006,-168.73,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T06:35:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T06:35:04Z,64.98,-168.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T07:25:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T07:25:15Z,64.965,-168.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T11:23:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T11:23:35Z,64.918,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T00:47:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T00:47:32Z,64.739,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T01:36:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T01:36:15Z,64.732,-168.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T03:09:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T03:09:49Z,64.695,-168.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T06:59:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T06:59:22Z,64.626,-168.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T18:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T18:33:22Z,64.443,-168.394,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T00:36:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T00:36:13Z,64.302,-168.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T04:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T04:51:13Z,64.227,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T06:39:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T06:39:41Z,64.196,-168.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T07:58:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T07:58:16Z,64.17,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T13:34:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T13:34:05Z,64.073,-168.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T15:14:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T15:14:35Z,64.044,-168.463,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T16:02:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T16:02:17Z,64.035,-168.495,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T18:21:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T18:21:52Z,64.005,-168.469,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T02:21:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T02:21:35Z,63.893,-168.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T12:30:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T12:30:14Z,63.714,-168.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T15:03:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T15:03:02Z,63.643,-168.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T18:18:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T18:18:19Z,63.552,-168.513,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T19:49:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T19:49:53Z,63.519,-168.487,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T00:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T00:52:15Z,63.38,-168.373,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T05:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T05:51:46Z,63.179,-168.261,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T08:42:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T08:42:24Z,63.044,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T13:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T13:12:37Z,62.941,-168.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T15:52:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T15:52:12Z,62.919,-168.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T23:57:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T23:57:47Z,62.886,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-02T02:41:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T02:41:10Z,62.855,-168.823,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-02T12:10:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T12:10:31Z,62.793,-169.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-02T13:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T13:03:01Z,62.792,-169.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T02:11:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T02:11:24Z,62.72,-170.217,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T03:33:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T03:33:19Z,62.722,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T04:11:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T04:11:49Z,62.718,-170.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T05:15:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T05:15:15Z,62.704,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T07:32:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T07:32:57Z,62.685,-170.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T11:49:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T11:49:08Z,62.684,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T04:10:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T04:10:22Z,62.475,-170.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T05:56:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T05:56:27Z,62.449,-169.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T07:14:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T07:14:31Z,62.452,-169.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T12:27:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T12:27:54Z,62.461,-169.869,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T13:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T13:17:30Z,62.462,-169.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T17:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T17:27:05Z,62.471,-169.864,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T18:49:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T18:49:00Z,62.477,-169.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T00:07:45Z,62.519,-169.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T01:01:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T01:01:45Z,62.513,-169.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T03:16:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T03:16:45Z,62.499,-169.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T05:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T05:17:30Z,62.479,-169.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T00:45:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T00:45:17Z,62.354,-170.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T01:18:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T01:18:04Z,62.351,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T03:23:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T03:23:10Z,62.349,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T05:02:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T05:02:23Z,62.372,-170.365,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T00:53:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T00:53:34Z,62.565,-170.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T02:19:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T02:19:55Z,62.578,-170.512,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T04:17:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T04:17:23Z,62.605,-170.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T06:05:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T06:05:35Z,62.628,-170.493,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T09:33:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T09:33:01Z,62.668,-170.441,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T13:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T13:38:11Z,62.737,-170.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T14:26:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T14:26:58Z,62.75,-170.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T16:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T16:08:08Z,62.792,-170.382,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T00:58:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T00:58:03Z,62.87,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T01:15:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T01:15:18Z,62.872,-170.221,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T02:09:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T02:09:18Z,62.869,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T03:07:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T03:07:47Z,62.835,-170.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T06:03:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T06:03:34Z,62.869,-170.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T09:11:19Z,62.882,-170.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T00:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T00:23:25Z,62.835,-169.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T05:29:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T05:29:56Z,62.804,-169.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T07:25:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T07:25:51Z,62.799,-169.45,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T08:48:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T08:48:37Z,62.815,-169.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T14:57:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T14:57:43Z,62.838,-169.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T18:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T18:44:22Z,62.868,-169.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T03:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T03:48:13Z,62.882,-168.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T04:41:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T04:41:21Z,62.878,-168.76,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T05:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T05:09:51Z,62.879,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T06:49:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T06:49:21Z,62.894,-168.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T07:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T07:14:06Z,62.902,-168.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T08:29:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T08:29:51Z,62.926,-168.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T01:32:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T01:32:39Z,62.881,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T04:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T04:17:48Z,62.847,-168.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T13:44:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T13:44:07Z,62.782,-168.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T14:37:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T14:37:47Z,62.788,-168.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T16:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T16:19:26Z,62.788,-168.416,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T00:07:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T00:07:18Z,62.791,-168.267,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T06:06:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T06:06:00Z,62.77,-168.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T07:45:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T07:45:47Z,62.773,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T13:37:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T13:37:40Z,62.758,-168.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T15:52:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T15:52:11Z,62.753,-168.224,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T00:22:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T00:22:02Z,62.798,-168.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T01:37:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T01:37:23Z,62.795,-168.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T02:33:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T02:33:24Z,62.806,-168.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T03:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T03:14:14Z,62.804,-168.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T03:02:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T03:02:30Z,62.669,-168.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T04:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T04:44:22Z,62.654,-168.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T14:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T14:04:22Z,62.506,-168.846,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T15:46:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T15:46:04Z,62.471,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T16:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T16:46:02Z,62.468,-168.87,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T04:49:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T04:49:26Z,62.326,-169.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T11:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T11:22:07Z,62.316,-169.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T15:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T15:34:14Z,62.311,-169.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T16:17:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T16:17:29Z,62.314,-169.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T18:01:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T18:01:02Z,62.307,-169.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T00:46:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T00:46:09Z,62.254,-169.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T12:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T12:51:46Z,62.205,-170.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T14:33:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T14:33:25Z,62.245,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T18:42:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T18:42:06Z,62.309,-170.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T19:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T19:49:15Z,62.332,-170.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T21:31:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T21:31:14Z,62.351,-170.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T03:31:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T03:31:59Z,62.398,-170.479,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T04:03:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T04:03:55Z,62.395,-170.483,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T07:42:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T07:42:35Z,62.398,-170.496,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T16:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T16:50:28Z,62.437,-170.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-19T03:03:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T03:03:58Z,62.519,-170.797,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-19T05:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T05:18:36Z,62.522,-170.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-19T07:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T07:08:47Z,62.522,-170.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T04:56:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T04:56:42Z,62.438,-170.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T05:28:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T05:28:27Z,62.436,-170.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T06:45:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T06:45:42Z,62.428,-170.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T07:02:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T07:02:57Z,62.429,-170.803,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T08:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T08:44:12Z,62.435,-170.816,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T00:44:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T00:44:43Z,62.52,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T01:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T01:17:50Z,62.525,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T02:32:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T02:32:53Z,62.535,-170.766,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T03:31:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T03:31:23Z,62.537,-170.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T04:33:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T04:33:38Z,62.531,-170.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T05:10:23Z,62.529,-170.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T06:20:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T06:20:53Z,62.526,-170.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T00:36:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T00:36:01Z,62.482,-170.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T04:08:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T04:08:59Z,62.41,-170.78,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T05:49:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T05:49:11Z,62.405,-170.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T09:42:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T09:42:44Z,62.309,-170.807,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T14:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T14:25:59Z,62.274,-170.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T00:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T00:33:21Z,62.232,-171.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T01:30:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T01:30:22Z,62.198,-171.159,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T03:45:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T03:45:10Z,62.17,-171.209,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T07:15:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T07:15:13Z,62.11,-171.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T20:15:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T20:15:19Z,61.942,-171.594,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T21:25:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T21:25:39Z,61.912,-171.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-25T16:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T16:01:01Z,61.638,-171.144,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-25T21:49:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T21:49:25Z,61.515,-171.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T03:17:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T03:17:34Z,61.414,-171.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T04:13:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T04:13:26Z,61.386,-171.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T05:49:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T05:49:13Z,61.346,-171.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T23:44:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T23:44:51Z,61.145,-171.634,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-27T01:27:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T01:27:56Z,61.141,-171.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-27T14:29:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T14:29:22Z,60.937,-171.847,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T05:08:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T05:08:52Z,60.725,-171.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T12:39:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T12:39:46Z,60.671,-171.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T14:27:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T14:27:22Z,60.702,-171.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T15:05:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T15:05:41Z,60.719,-171.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T16:00:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T16:00:46Z,60.763,-171.793,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T06:59:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T06:59:09Z,61.111,-171.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T12:28:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T12:28:13Z,61.136,-171.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T14:51:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T14:51:39Z,61.139,-171.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T17:51:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T17:51:14Z,61.154,-171.722,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-30T00:47:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T00:47:08Z,61.156,-171.929,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-30T03:43:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T03:43:02Z,61.181,-171.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-30T14:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T14:42:52Z,61.118,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T00:38:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T00:38:33Z,61.106,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T01:45:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T01:45:02Z,61.099,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T02:25:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T02:25:55Z,61.071,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T03:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T03:11:39Z,61.078,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T04:57:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T04:57:50Z,61.064,-172.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T05:00:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T05:00:50Z,61.068,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T06:35:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T06:35:20Z,61.051,-172.176,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-01T00:36:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T00:36:20Z,61.067,-172.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-01T07:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T07:00:42Z,61.022,-172.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-01T21:40:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T21:40:32Z,60.938,-172.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T02:22:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T02:22:11Z,60.951,-172.545,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T06:12:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T06:12:45Z,60.949,-172.543,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T07:33:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T07:33:15Z,60.95,-172.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T18:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T18:27:03Z,61.007,-172.435,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T20:16:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T20:16:40Z,60.996,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-03T03:37:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T03:37:22Z,60.931,-172.407,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-03T17:18:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T17:18:27Z,60.886,-172.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T01:23:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T01:23:16Z,60.756,-172.101,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T06:30:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T06:30:25Z,60.768,-171.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T07:00:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T07:00:01Z,60.78,-171.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T21:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T21:02:07Z,60.749,-171.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T01:13:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T01:13:18Z,60.749,-171.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T02:29:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T02:29:35Z,60.77,-171.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T03:40:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T03:40:57Z,60.776,-171.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T04:10:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T04:10:02Z,60.805,-171.439,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T05:50:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T05:50:07Z,60.775,-171.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T06:11:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T06:11:07Z,60.766,-171.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T07:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T07:02:43Z,60.762,-171.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-07T14:59:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T14:59:56Z,61.009,-172.201,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-07T15:53:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T15:53:35Z,61.001,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T03:24:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T03:24:06Z,60.912,-172.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T18:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T18:46:33Z,60.878,-172.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T19:36:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T19:36:36Z,60.886,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T20:55:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T20:55:23Z,60.887,-172.022,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-09T20:14:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T20:14:54Z,60.9,-172.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-09T23:54:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T23:54:32Z,60.86,-172.018,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T00:38:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T00:38:41Z,60.865,-172.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T01:37:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T01:37:56Z,60.852,-172.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T02:36:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T02:36:53Z,60.848,-172.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T21:59:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T21:59:38Z,60.953,-171.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T23:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T23:39:01Z,60.945,-171.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-12T23:59:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-12T23:59:26Z,61.006,-171.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-13T01:44:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T01:44:14Z,61.024,-171.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-13T03:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T03:50:54Z,61.064,-172.056,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-13T22:32:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T22:32:37Z,61.087,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-14T02:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T02:42:54Z,61.054,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-14T10:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T10:12:37Z,61.084,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T00:33:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T00:33:43Z,61.232,-172.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T01:55:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T01:55:03Z,61.201,-172.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T02:14:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T02:14:51Z,61.191,-172.529,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T03:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T03:07:48Z,61.185,-172.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T04:44:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T04:44:33Z,61.186,-172.57,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T05:31:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T05:31:03Z,61.186,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T06:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T06:24:18Z,61.19,-172.576,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T01:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T01:15:05Z,61.253,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T02:53:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T02:53:04Z,61.255,-172.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T03:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T03:20:04Z,61.242,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T04:20:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T04:20:49Z,61.248,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T05:01:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T05:01:42Z,61.246,-172.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T06:05:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T06:05:04Z,61.25,-172.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T00:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T00:54:43Z,61.265,-172.294,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T01:25:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T01:25:45Z,61.261,-172.304,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T02:44:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T02:44:52Z,61.259,-172.274,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T07:25:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T07:25:06Z,61.221,-172.387,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T16:43:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T16:43:31Z,61.227,-172.482,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-18T05:59:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T05:59:48Z,60.996,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-18T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T06:13:20Z,61.012,-172.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-18T12:17:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T12:17:42Z,60.975,-172.874,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T04:22:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T04:22:42Z,60.925,-172.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T06:41:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T06:41:13Z,60.933,-172.313,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T13:49:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T13:49:23Z,60.96,-172.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T22:09:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T22:09:03Z,60.913,-171.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T23:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T23:48:06Z,60.939,-171.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T06:00:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T06:00:39Z,60.966,-171.841,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T11:58:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T11:58:12Z,60.982,-171.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T17:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T17:20:06Z,60.973,-171.768,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T19:41:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T19:41:46Z,60.957,-171.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T01:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T01:58:36Z,60.857,-171.828,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T04:00:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T04:00:49Z,60.829,-171.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T13:27:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T13:27:08Z,60.771,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T16:50:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T16:50:02Z,60.796,-171.915,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T19:31:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T19:31:28Z,60.78,-171.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T22:20:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T22:20:17Z,60.729,-171.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T23:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T23:25:16Z,60.717,-171.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-22T01:03:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T01:03:16Z,60.703,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-22T17:13:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T17:13:17Z,60.705,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-22T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T20:47:29Z,60.704,-171.886,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T00:53:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T00:53:18Z,60.666,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T02:22:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T02:22:34Z,60.637,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T04:01:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T04:01:29Z,60.624,-171.912,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T06:37:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T06:37:11Z,60.627,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T20:47:29Z,60.495,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T00:50:28Z,60.504,-171.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T01:22:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T01:22:43Z,60.509,-171.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T15:14:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T15:14:07Z,60.627,-171.946,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T18:57:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T18:57:40Z,60.649,-171.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T20:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T20:34:32Z,60.675,-171.934,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T22:09:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T22:09:59Z,60.682,-171.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-25T01:12:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T01:12:57Z,60.656,-171.976,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-25T04:58:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T04:58:52Z,60.683,-172.041,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-26T00:56:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-26T00:56:18Z,60.842,-171.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T02:24:24Z,60.894,-171.593,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T03:25:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T03:25:03Z,60.898,-171.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T04:31:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T04:31:48Z,60.883,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T05:01:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T05:01:48Z,60.884,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T06:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T06:16:03Z,60.887,-171.636,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T07:18:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T07:18:18Z,60.891,-171.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-28T16:09:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T16:09:15Z,60.941,-171.815,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-28T23:49:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T23:49:34Z,61.026,-171.852,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T00:22:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T00:22:49Z,61.033,-171.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T01:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T01:33:22Z,61.047,-171.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T15:57:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T15:57:01Z,61.083,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T19:44:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T19:44:01Z,61.067,-172.076,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T21:15:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T21:15:39Z,61.064,-172.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T23:46:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T23:46:36Z,61.055,-172.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-30T02:44:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-30T02:44:23Z,61.056,-172.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-05T08:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T08:17:50Z,60.796,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-05T12:30:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T12:30:12Z,60.777,-173.023,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-06T07:34:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T07:34:57Z,60.769,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-06T08:51:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T08:51:16Z,60.771,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-06T09:15:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T09:15:16Z,60.774,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T02:51:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T02:51:53Z,60.827,-172.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T05:45:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T05:45:57Z,60.81,-172.608,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T07:17:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T07:17:06Z,60.776,-172.612,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T08:30:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T08:30:21Z,60.78,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T09:04:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T09:04:32Z,60.791,-172.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T10:17:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T10:17:02Z,60.771,-172.618,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T02:26:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T02:26:57Z,60.76,-172.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T05:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T05:25:31Z,60.76,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T14:12:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T14:12:54Z,60.759,-172.731,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T20:47:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T20:47:54Z,60.78,-172.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T21:00:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T21:00:32Z,60.796,-172.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T01:26:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T01:26:42Z,60.808,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T03:52:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T03:52:28Z,60.819,-172.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T05:12:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T05:12:49Z,60.815,-172.733,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T06:38:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T06:38:46Z,60.818,-172.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T07:55:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T07:55:44Z,60.81,-172.749,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T13:26:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T13:26:27Z,60.818,-172.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T15:06:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T15:06:35Z,60.831,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T01:35:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T01:35:01Z,60.821,-172.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T03:18:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T03:18:09Z,60.825,-172.764,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T05:04:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T05:04:05Z,60.85,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T06:16:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T06:16:05Z,60.843,-172.782,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T07:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T07:28:50Z,60.846,-172.783,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T08:27:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T08:27:20Z,60.847,-172.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T09:09:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T09:09:20Z,60.846,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T00:54:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T00:54:06Z,60.886,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T01:33:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T01:33:51Z,60.885,-172.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T02:13:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T02:13:36Z,60.896,-172.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T03:00:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T03:00:06Z,60.883,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T04:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T04:10:36Z,60.886,-172.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T05:31:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T05:31:36Z,60.893,-172.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T06:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T06:23:27Z,60.996,-172.49,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T08:26:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T08:26:18Z,61.008,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T20:08:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T20:08:15Z,60.973,-172.282,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T22:56:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T22:56:36Z,60.974,-172.243,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T04:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T04:27:03Z,60.949,-172.264,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T05:00:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T05:00:54Z,60.953,-172.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T06:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T06:05:08Z,60.963,-172.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T07:56:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T07:56:53Z,60.985,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T08:05:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T08:05:38Z,60.988,-172.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T00:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T00:23:27Z,61.036,-172.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T01:46:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T01:46:39Z,61.036,-172.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T02:13:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T02:13:39Z,61.029,-172.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T03:01:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T03:01:39Z,61.027,-172.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T04:15:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T04:15:09Z,61.03,-172.064,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T05:53:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T05:53:24Z,61.039,-172.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T06:05:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T06:05:24Z,61.042,-172.108,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-15T00:12:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T00:12:23Z,61.082,-172.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-15T07:36:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T07:36:58Z,61.018,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-15T22:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T22:51:07Z,60.951,-172.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T00:28:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T00:28:35Z,60.952,-172.353,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T04:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T04:14:53Z,60.912,-172.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T07:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T07:16:03Z,60.907,-172.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T16:17:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T16:17:45Z,60.868,-172.592,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T01:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T01:27:03Z,60.998,-172.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T06:28:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T06:28:55Z,60.998,-172.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T15:19:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T15:19:37Z,61.029,-172.364,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T20:10:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T20:10:57Z,61.009,-172.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T21:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T21:49:48Z,60.992,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T01:17:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T01:17:19Z,60.971,-172.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T03:10:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T03:10:46Z,60.981,-172.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T04:55:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T04:55:31Z,60.987,-172.386,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T07:40:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T07:40:59Z,60.97,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T11:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T11:39:37Z,60.945,-172.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T15:07:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T15:07:16Z,60.966,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T01:08:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T01:08:21Z,60.924,-172.3,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T07:19:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T07:19:40Z,60.967,-172.338,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T09:00:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T09:00:02Z,60.951,-172.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T11:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T11:33:21Z,60.968,-172.362,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T16:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T16:58:36Z,61.034,-172.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-21T01:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T01:22:30Z,61.029,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-21T02:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T02:20:06Z,61.034,-172.343,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-22T00:38:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-22T00:38:04Z,60.968,-172.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T02:11:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T02:11:45Z,60.933,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T03:05:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T03:05:45Z,60.915,-172.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T04:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T04:09:30Z,60.921,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T05:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T05:49:15Z,60.929,-172.278,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T06:06:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T06:06:30Z,60.927,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-24T23:08:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-24T23:08:42Z,60.957,-172.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-25T13:58:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T13:58:47Z,60.953,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-25T20:55:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T20:55:47Z,60.933,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-26T01:59:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T01:59:55Z,60.889,-172.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-26T06:42:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T06:42:50Z,60.806,-173.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-27T07:55:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T07:55:19Z,60.811,-172.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-27T21:34:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T21:34:24Z,60.89,-172.521,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T02:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T02:50:11Z,60.875,-172.55,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T04:07:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T04:07:53Z,60.879,-172.558,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T07:55:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T07:55:54Z,60.898,-172.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T08:13:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T08:13:07Z,60.889,-172.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T09:37:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T09:37:07Z,60.894,-172.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-29T05:21:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T05:21:48Z,61.012,-172.577,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-29T06:21:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T06:21:28Z,61.006,-172.552,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-29T23:07:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T23:07:10Z,60.936,-172.366,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-01T03:09:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T03:09:25Z,60.93,-172.328,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-01T04:22:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T04:22:46Z,60.92,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-02T02:59:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T02:59:35Z,60.914,-172.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-02T06:22:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T06:22:25Z,60.88,-172.22,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-02T08:03:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T08:03:30Z,60.896,-172.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T00:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T00:25:59Z,61.033,-171.893,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T02:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T02:14:55Z,61.091,-171.993,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T06:23:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T06:23:29Z,61.074,-171.987,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T08:07:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T08:07:06Z,61.083,-171.921,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-07T04:37:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-07T04:37:13Z,61.091,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-10T06:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T06:29:55Z,60.917,-172.193,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-10T22:53:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T22:53:10Z,60.819,-172.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-10T23:30:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T23:30:55Z,60.816,-172.07,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-11T01:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-11T01:09:51Z,60.817,-172.102,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/eml.xml similarity index 100% rename from datasets/atn_satellite_telemetry/data/dwc/38553/eml.xml rename to datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/eml.xml diff --git a/datasets/atn_satellite_telemetry/data/dwc/38553/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/meta.xml similarity index 100% rename from datasets/atn_satellite_telemetry/data/dwc/38553/meta.xml rename to datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/meta.xml From dab20b5234cb98e51709a762c4a0970cc1f23bf7 Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Tue, 19 Aug 2025 10:48:18 -0400 Subject: [PATCH 11/14] adding instrument info to emof and eml. add error handling for missing file in mapping table. adding accession info to occurrence. simplify geometry in event --- .../convert_ATNnc2DwC.ipynb | 182 +- ...tted-seal_trajectory_20180418-20180526.zip | Bin 6975 -> 7262 bytes ...seal_trajectory_20180418-20180526_emof.csv | 10 +- ...eal_trajectory_20180418-20180526_event.csv | 2 +- ...rajectory_20180418-20180526_occurrence.csv | 10 +- .../eml.xml | 9 +- .../meta.xml | 6 +- ...bbon-seal_trajectory_20140426-20140426.zip | Bin 6394 -> 7162 bytes ...seal_trajectory_20140426-20140426_emof.csv | 6 + ...eal_trajectory_20140426-20140426_event.csv | 2 +- ...rajectory_20140426-20140426_occurrence.csv | 8 +- .../eml.xml | 9 +- .../meta.xml | 13 + ...rded-seal_trajectory_20110618-20120314.zip | Bin 39870 -> 35100 bytes ...seal_trajectory_20110618-20120314_emof.csv | 5 + ...eal_trajectory_20110618-20120314_event.csv | 2 +- ...rajectory_20110618-20120314_occurrence.csv | 2436 ++++++++--------- .../eml.xml | 9 +- .../meta.xml | 13 + .../templates/eml.xml.j2 | 9 +- 20 files changed, 1427 insertions(+), 1304 deletions(-) create mode 100644 datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_emof.csv create mode 100644 datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_emof.csv diff --git a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb index 71e4e15..08033fa 100644 --- a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb +++ b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb @@ -13,7 +13,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 1, "metadata": { "id": "0JvPXasXc432" }, @@ -37,7 +37,7 @@ "import codecs\n", "import stamina\n", "from shapely.geometry import LineString\n", - "import shapely.wkt\n", + "import shapely\n", "from requests_toolbelt.multipart.encoder import MultipartEncoder\n", "from dotenv import dotenv_values\n", "import zipfile\n" @@ -52,21 +52,9 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 2, "metadata": {}, - "outputs": [ - { - "ename": "KeyError", - "evalue": "None", - "output_type": "error", - "traceback": [ - "\u001b[31m---------------------------------------------------------------------------\u001b[39m", - "\u001b[31mKeyError\u001b[39m Traceback (most recent call last)", - "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[15]\u001b[39m\u001b[32m, line 4\u001b[39m\n\u001b[32m 2\u001b[39m namespaces.update({\u001b[33m\"\u001b[39m\u001b[33mgmi\u001b[39m\u001b[33m\"\u001b[39m: \u001b[33m\"\u001b[39m\u001b[33mhttp://www.isotc211.org/2005/gmi\u001b[39m\u001b[33m\"\u001b[39m})\n\u001b[32m 3\u001b[39m namespaces.update({\u001b[33m\"\u001b[39m\u001b[33mgml\u001b[39m\u001b[33m\"\u001b[39m: \u001b[33m\"\u001b[39m\u001b[33mhttp://www.opengis.net/gml/3.2\u001b[39m\u001b[33m\"\u001b[39m})\n\u001b[32m----> \u001b[39m\u001b[32m4\u001b[39m \u001b[38;5;28;01mdel\u001b[39;00m \u001b[43mnamespaces\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m]\u001b[49m\n", - "\u001b[31mKeyError\u001b[39m: None" - ] - } - ], + "outputs": [], "source": [ "# Append gmi namespace to namespaces dictionary.\n", "namespaces.update({\"gmi\": \"http://www.isotc211.org/2005/gmi\"})\n", @@ -76,7 +64,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -95,7 +83,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -324,7 +312,7 @@ "[289 rows x 9 columns]" ] }, - "execution_count": 17, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } @@ -856,20 +844,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 23, "metadata": { "id": "c9G3a6N2bMh2" }, "outputs": [], "source": [ - "def create_dwc_occurrence(ds, output_csv):\n", + "def create_dwc_occurrence(ds: xr.Dataset, output_csv: str, df_map: pd.DataFrame):\n", + "\n", + " # bail if we can't find the file in the mapping table.\n", + " if ds.encoding.get('source').split(\"\\\\\")[-1] not in df_map['file_name'].values:\n", + " raise KeyError(f\"File {ds.encoding.get('source').split('\\\\')[-1]} not found in NCEI Accession mapping table.\")\n", "\n", " filename = ds.encoding.get('source').split(\"\\\\\")[-1].split(\".\")[0] # \"ioos_atn_{ds.ptt_id}_{start_date}_{end_date}\"\"\n", + " \n", + " acce_no = df_map.loc[df_map['file_name'] == ds.encoding.get('source').split(\"\\\\\")[-1], 'accession'].values[0]\n", "\n", " dwc_df = pd.DataFrame()\n", " dwc_df['occurrenceID'] = \"ioos_atn_\"+ds.ptt_id+\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')+\"_\"+ds['z'].astype(str)+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", - " dwc_df['eventID'] = filename #\"ioos_atn_\"+ds.ptt_id\n", - " #dwc_df['eventID'] = ds.ptt_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\") +\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')\n", + " dwc_df['eventID'] = filename\n", " dwc_df['organismID'] = ds.platform_id+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", " dwc_df['occurrenceStatus'] = 'present'\n", " dwc_df['basisOfRecord'] = ds['type']\n", @@ -884,10 +877,10 @@ " dwc_df['taxonRank'] = ds['animal'].attrs['rank']\n", " dwc_df['lifeStage'] = ds['animal_life_stage'].values.tolist()\n", " dwc_df['sex'] = ds['animal_sex'].values.tolist()\n", - " dwc_df['associatedReferences'] = \"https://doi.org/10.25921/wp4e-ph20\"\n", + " dwc_df['associatedReferences'] = f'https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/{acce_no}'\n", " dwc_df['minimumDepthInMeters'] = ds['z'].values.tolist()\n", " dwc_df['maximumDepthInMeters'] = ds['z'].values.tolist()\n", - " dwc_df['bibliographicCitation'] = ds.citation # barking about this.\n", + " dwc_df['bibliographicCitation'] = ds.citation\n", "\n", " # set basisOfRecord\n", " dwc_df.loc[dwc_df['basisOfRecord'] == 'User','basisOfRecord'] = 'HumanObservation'\n", @@ -924,8 +917,8 @@ " dwc_df['dataGeneralizations'] = f'first of ' + duplicate_counts.astype(str) + ' records for this hour.'\n", " dwc_df.loc[dwc_df['dataGeneralizations']=='first of 1 records for this hour.','dataGeneralizations'] = ''\n", " dwc_df = dwc_df.drop_duplicates(subset=['event_hour'], keep='first').copy()\n", - "\n", - " dwc_df['occurrenceRemarks'] = 'This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20.'\n", + " # --- Add Occurrence Remarks ---\n", + " dwc_df['occurrenceRemarks'] = f'This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/{acce_no}.'\n", "\n", " print(f\" Extracted {len(dwc_df)} occurrences to first row in hour.\")\n", "\n", @@ -955,15 +948,16 @@ " return dwc_df, cols\n", "\n", "\n", - "def create_dwc_event(dwc_df, output_csv):\n", + "def create_dwc_event(dwc_df: pd.DataFrame, output_csv: str):\n", "\n", " # create parent event that is a summary of dwc_df\n", " event_df = pd.DataFrame()\n", " event_df['eventID'] = dwc_df['eventID'].unique()\n", " event_df['eventDate'] = dwc_df['eventDate'].min() + '/' + dwc_df['eventDate'].max()\n", - " event_df['footprintWKT'] = LineString(list(zip(dwc_df['decimalLongitude'], dwc_df['decimalLatitude'])))\n", - " event_df['footprintWKT'] = event_df['footprintWKT'][0].wkt\n", - " event_df['footprintWKT'] = event_df['footprintWKT'].str.replace('LINESTRING', 'MULTIPOINT')\n", + "\n", + " ## Convex hull summary of the points\n", + " event_df['footprintWKT'] = shapely.convex_hull(LineString(list(zip(dwc_df['decimalLongitude'], dwc_df['decimalLatitude']))))\n", + "\n", " event_df['minimumDepthInMeters'] = dwc_df['minimumDepthInMeters'].min()\n", " event_df['maximumDepthInMeters'] = dwc_df['maximumDepthInMeters'].max()\n", " event_df['eventType'] = 'deployment'\n", @@ -973,9 +967,7 @@ " return pd.DataFrame() # Return an empty DataFrame if no observations are found\n", " else: \n", " print(f\" found {len(event_df)} HumanObservations.\")\n", - " event_df['countryCode'] = 'US'\n", - " event_df['samplingProtocol'] = 'satellite telemetry'\n", - " \n", + " \n", " # # initialize Nominatim API - not trusted enough yet\n", " # # see https://nominatim.org/release-docs/develop/api/Reverse/\n", " # from geopy.geocoders import Nominatim\n", @@ -984,6 +976,9 @@ " # lon = event_df['decimalLongitude'][0].astype(str)\n", " # location = geolocator.reverse(lat+\",\"+lon)\n", " # event_df['countryCode'] = location.raw['address'].get('country_code').upper()\n", + " event_df['countryCode'] = 'US'\n", + " \n", + " event_df['samplingProtocol'] = 'satellite telemetry'\n", "\n", " event_df.to_csv(output_csv.replace(\"occurrence\",\"event\"), index=False)\n", " print(f\" Created {len(event_df)} events.\")\n", @@ -992,34 +987,82 @@ " return event_df\n", "\n", "\n", - "def create_dwc_emof(ds, dwc_df, output_csv):\n", - " ## Add more details about the sensor following https://www.gbif.org/occurrence/5068380514\n", - " # See https://vocab.nerc.ac.uk/search_nvs/MVB/\n", - " # add serial number and all the other details here.\n", + "def create_dwc_emof(ds: xr.Dataset, dwc_df: pd.DataFrame, output_csv: str):\n", " # --- Processing for emof ---\n", " vars = list(ds.keys())\n", " animal_vars = [x for x in vars if re.match(r'animal_(?!life_stage\\b|sex\\b).*',x)]\n", " new_rows = pd.DataFrame()\n", "\n", + " emof_ids = {\n", + " 'animal_weight': 'http://vocab.nerc.ac.uk/collection/MVB/current/MVB000019',\n", + " 'animal_length': 'http://vocab.nerc.ac.uk/collection/P01/current/TL01XX01/',\n", + " }\n", + "\n", + " emof_unit_ids ={\n", + " 'kg':'http://vocab.nerc.ac.uk/collection/P06/current/KGXX/',\n", + " 'cm':'http://vocab.nerc.ac.uk/collection/P06/current/ULCM/'\n", + " }\n", + "\n", " for animal_var in animal_vars:\n", " row = pd.DataFrame({\n", " 'measurementValue': ds[animal_var].values.tolist(),\n", " 'measurementType': [f'{animal_var}: {ds[animal_var].long_name}'],\n", + " 'measurementTypeID': [emof_ids[animal_var] if animal_var in emof_ids.keys() else ''],\n", " 'measurementMethod': ds[animal_var].attrs[animal_var],\n", " 'measurementUnit': [ds[animal_var].units if 'units' in ds[animal_var].attrs else ''],\n", + " 'measurementUnitID': [emof_unit_ids[ds[animal_var].units] if ds[animal_var].units in emof_unit_ids.keys() else ''],\n", " })\n", " new_rows = pd.concat([new_rows,\n", " row])\n", - "\n", - " emof_df = dwc_df.loc[dwc_df['basisOfRecord']=='HumanObservation',\n", - " ['eventID','occurrenceID']\n", - " ].merge(\n", - " new_rows,\n", - " left_index=True,\n", - " right_index=True)\n", - "\n", + " \n", + " df_transmitter_serial = pd.DataFrame()\n", + " df_transmitter_serial['measurementValue'] = [ds['instrument_tag'].attrs['serial_number']]\n", + " df_transmitter_serial['measurementType'] = ['tag serial number']\n", + " df_transmitter_serial['measurementTypeID'] = ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000189/']\n", + " df_transmitter_serial['measurementMethod'] = ['']\n", + " df_transmitter_serial['measurementUnit'] = ['']\n", + " new_rows = pd.concat([new_rows,df_transmitter_serial], ignore_index=True)\n", + "\n", + " tag_manu = pd.DataFrame()\n", + " tag_manu['measurementValue'] = [ds['instrument_tag'].attrs['manufacturer']]\n", + " tag_manu['measurementType'] = ['tag manufacturer']\n", + " tag_manu['measurementTypeID'] = ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000183/']\n", + " tag_manu['measurementMethod'] = ['']\n", + " tag_manu['measurementUnit'] = ['']\n", + " new_rows = pd.concat([new_rows,tag_manu], ignore_index=True)\n", + "\n", + " tag_makemodel = pd.DataFrame()\n", + " tag_makemodel['measurementValue'] = [ds['instrument_tag'].attrs['make_model']]\n", + " tag_makemodel['measurementType'] = ['tag make and model']\n", + " tag_makemodel['measurementTypeID'] = ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000185/']\n", + " tag_makemodel['measurementMethod'] = ['']\n", + " tag_makemodel['measurementUnit'] = ['']\n", + " new_rows = pd.concat([new_rows,tag_makemodel], ignore_index=True)\n", + "\n", + " # sometimes we don't have attachment information\n", + " if 'attachment' in ds.attrs:\n", + " attachment_location = pd.DataFrame()\n", + " attachment_location['measurementValue'] = [ds.attrs['attachment']]\n", + " attachment_location['measurementType'] = ['tag attachment location']\n", + " attachment_location['measurementTypeID'] = ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000395/']\n", + " attachment_location['measurementMethod'] = ['']\n", + " attachment_location['measurementUnit'] = ['']\n", + " new_rows = pd.concat([new_rows,attachment_location], ignore_index=True)\n", + "\n", + " #--- Add eventID and occurrenceID. Assign the first occurrenceID and eventID from the dwc_df.\n", + " new_rows['eventID'] = dwc_df['eventID'][0]\n", + " new_rows['occurrenceID'] = dwc_df['occurrenceID'][0]\n", + "\n", + " #--- Select column order because this matters for meta.xml\n", + " columns = ['eventID', 'occurrenceID', 'measurementValue', 'measurementType',\n", + " 'measurementTypeID', 'measurementMethod', 'measurementUnit',\n", + " 'measurementUnitID']\n", + "\n", + " emof_df = new_rows[columns].copy()\n", + "\n", + " # drop any empty value rows.\n", " emof_df.dropna(axis=0, subset=['measurementValue'], inplace=True)\n", - "\n", + " \n", " if emof_df.empty:\n", " print(f' no emof data found')\n", " return pd.DataFrame() # Return an empty DataFrame if no observations are found\n", @@ -1032,7 +1075,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 24, "metadata": {}, "outputs": [], "source": [ @@ -1060,7 +1103,7 @@ " print(f\" EML metadata has been written to '{eml_full_path}'.\")\n", " return eml_full_path\n", "\n", - "def create_eml(ds, df_map):\n", + "def create_eml(ds: xr.Dataset, df_map: pd.DataFrame):\n", " eml_metadata = ds.attrs\n", "\n", " contributors = dict()\n", @@ -1088,6 +1131,10 @@ "\n", " eml_metadata.update(other_meta)\n", "\n", + " instrument_info = ds['instrument_tag'].attrs\n", + "\n", + " eml_metadata.update(instrument_info)\n", + "\n", " save_eml_file(eml_metadata)\n", " \n", " return eml_metadata" @@ -1095,11 +1142,11 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 25, "metadata": {}, "outputs": [], "source": [ - "def create_meta_xml(dwc_df, emof_df, event_df, output_csv, cols):\n", + "def create_meta_xml(dwc_df: pd.DataFrame, emof_df: pd.DataFrame, event_df: pd.DataFrame, output_csv: str, cols: list):\n", " \"\"\"\n", " Create meta.xml file for the Darwin Core dataset.\n", " \n", @@ -1109,6 +1156,7 @@ " event_df (DataFrame): DataFrame containing event data.\n", " output_csv (str): Path to the output CSV file.\n", " dir (str): Directory where the meta.xml will be saved.\n", + " cols (list): List of occurrence columns to include in the meta.xml.\n", " \"\"\"\n", " # Ensure the directory exists\n", " try:\n", @@ -1150,7 +1198,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ @@ -1175,7 +1223,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 27, "metadata": { "id": "aD62GgzSS0zu" }, @@ -1210,7 +1258,7 @@ "\n", " output_csv = os.path.join(output_dir, f\"{sub_dir}/{os.path.splitext(base_filename)[0]}_occurrence.csv\")\n", " output_csv = os.path.normpath(output_csv)\n", - " #output_dir = os.path.join(*output_csv.split(\"\\\\\")[:-1])\n", + "\n", " print(f\"Processing {base_filename}...\")\n", "\n", " try:\n", @@ -1230,7 +1278,7 @@ " continue\n", "\n", " # --- Map to Darwin Core Occurrence Terms ---\n", - " dwc_df, cols = create_dwc_occurrence(ds, output_csv)\n", + " dwc_df, cols = create_dwc_occurrence(ds, output_csv, df_map)\n", "\n", " # Create and save eml\n", " create_eml(ds, df_map)\n", @@ -1267,7 +1315,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 28, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -1292,7 +1340,7 @@ " found 1 HumanObservations.\n", " Created 1 events.\n", " Saved data to data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv\n", - " Created 2 emofs.\n", + " Created 6 emofs.\n", " Saved data to data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv\n", " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\meta.xml'.\n", " Packaging Darwin Core files from 'data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/' into 'data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip'...\n", @@ -1306,7 +1354,8 @@ " found 1 HumanObservations.\n", " Created 1 events.\n", " Saved data to data\\dwc\\atn_137494_ribbon-seal_trajectory_20140426-20140426\\atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv\n", - " no emof data found\n", + " Created 5 emofs.\n", + " Saved data to data\\dwc\\atn_137494_ribbon-seal_trajectory_20140426-20140426\\atn_137494_ribbon-seal_trajectory_20140426-20140426_emof.csv\n", " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_137494_ribbon-seal_trajectory_20140426-20140426\\meta.xml'.\n", " Packaging Darwin Core files from 'data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/' into 'data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip'...\n", " ✅ Packaged files into 'data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip'\n", @@ -1319,7 +1368,8 @@ " found 1 HumanObservations.\n", " Created 1 events.\n", " Saved data to data\\dwc\\atn_38553_bearded-seal_trajectory_20110618-20120314\\atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv\n", - " no emof data found\n", + " Created 4 emofs.\n", + " Saved data to data\\dwc\\atn_38553_bearded-seal_trajectory_20110618-20120314\\atn_38553_bearded-seal_trajectory_20110618-20120314_emof.csv\n", " Meta XML has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_38553_bearded-seal_trajectory_20110618-20120314\\meta.xml'.\n", " Packaging Darwin Core files from 'data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/' into 'data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314.zip'...\n", " ✅ Packaged files into 'data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314.zip'\n", @@ -1355,7 +1405,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -1635,15 +1685,16 @@ "output_type": "stream", "text": [ "Found existing project by name: 'atn_38553_bearded-seal_trajectory_20110618-20120314'\n", - "Changing publishing organization to: NOAA Integrated Ocean Observing System\n", "Found existing project by name: 'atn_137491_spotted-seal_trajectory_20180418-20180526'\n", - "Changing publishing organization to: NOAA Integrated Ocean Observing System\n", "Found existing project by name: 'atn_137494_ribbon-seal_trajectory_20140426-20140426'\n", - "Changing publishing organization to: NOAA Integrated Ocean Observing System\n" + "Making public IPT project: atn_137494_ribbon-seal_trajectory_20140426-20140426\n", + "Publishing IPT project: atn_137494_ribbon-seal_trajectory_20140426-20140426\n" ] } ], "source": [ + "## TODO: Set OBIS as network.\n", + "\n", "config = dotenv_values(\".env\")\n", "\n", "ipt_auth = {\n", @@ -1683,11 +1734,12 @@ " print(f\"Changing publishing organization to: {new_publishing_org_name}\")\n", " change_publishing_org_ipt_project(projname, ipt_url, ipt_session, new_publishing_org_name)\n", "\n", - "\n", + " ## TODO: determine publishing order\n", " ans = input(f\"Do you want to make the IPT project files public? (y/n): \")\n", " if ans.lower() in ['y', 'yes']:\n", " print(f\"Making public IPT project: {projname}\")\n", - " make_public_ipt_project(projname, ipt_url, ipt_session)\n", + " make_public_ipt_project(projname, ipt_url, ipt_session) # this will make discoverable via OBIS due to rss feed harvest. \n", + "\n", "\n", " ans = input(f\"Do you want to publish the IPT project files? (y/n): \")\n", " if ans.lower() in ['y', 'yes']:\n", diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip index e51d057f74eb3874c760069e1714be6de3c49945..e239eb4cea9813203e924388803e2426c83a866b 100644 GIT binary patch literal 7262 zcmbuEbxa+~w#GM5+`YKFyE_|qr%>G4Kyi0>mm5NyA~+0p-6Ey?yu**_i}Si z^8UGRCXpe$XiOc{Z-8|1_9dQ25z{?VR zaOCbBp^-kmGli5Soa z_FKcIu$L5OUwOd^Y?*Lv+VMAlHlH2_l_a^NVgr;5F(&5dm^Cn$4uie57y(m`(WYhn z?$tJQ70>qZsKiU2+3PdHXSWV5!P;WyJF0G`l(+n}$?=Bc=t%R4(fj)@?DuTFJqeDoa(wEAe-TTfKNuy1B&uo47&R8{S7 zsbBhVi3|NF_11re=zpAg4@*b4zjAMxG+{Tujsd(2ehwXDg!++gAs+y;r!P!=cchUW z&vD!AJ~uF$s`2KJo5`wxKhQ-S0mF5HhmKfMZX_ssni2|)Myz7;gbq6_{iEDN{ zzMM~D-aaUFR5l{y(iDB-UPC@NsDF>H9?Mw&XBYrr0UH32`cI?lWNz;6;$rD&ZuwV; zPczgLcX%;IwwP{&;?5AMv2&B&A*gz`o&GfHn6LvI)m0^}5JV}O$+p5Miuu#^;$0#XqG0Z7b)sOi$Cw>` z3Sj~#@6l`1jOT~zc8{qx&Q%ZeA}J>r$!Gu6nv@4JEoqDysDq6q6;7nJGZpI3YA$86 zQ)(GTm4`aLxF3xUd6<@(YMp@9m&u3+aavmP0f~wm_~%*NTJ`hXkDtws!{-A$Yn^6` z-D@;HXe+yix3H;%?p&USwqNYP*fkev^(-L9(<(1YRZfn_d{={XL7u=|zt0-6JWjjc zRJ^(n;0L^jSq&Y8wO3u~$HUup_|i64e^Ty%qej3LZEs1^44T8=hJK9S#*!xbf^DXE znN>Kadzig?^EFu4(rQ`{8qz)(EEu#*fZ!0BFxjr=&>oK29?W? z27Jr$AKigka?^d!P=Mp1jj*hjm#(r$kf&km#&bjTQG9c>0+{_hi-fmS$A?*Q5A!e@ z*QdkW$=x1}X7!{YA-a=6#303rrm6pF&GIF{Q7fl`3_`9jtiHOn%yD}}xr6PM{q?6K zjD`X18Ukj`WEoox^CH}nWC|>CUiS>VFk+}8Hpbejq zAZ8%0^0o*`Un`em8uPmhY%lB4QzkgiS_aw+py}8)6_RlQY612o{ckvSAsdw1;aP!| z8e|$+2eASk9Ol|e@m}3)s3smayK{-XPoKo`U1}7+7Eda`I3S)Ug&FsuBz{(TdFPa% zK408TqO0>Oj@OtHqGd*mN$c|d5;L>-QVuN=>RA$m6#2RW5S`in;7je>X8l+WSalDuhsOgoukC8x@giahc`wKanwgYEffIzG(kvX^2pWgf zYytwfJpw=29>NEQZ7Is~Km)I-KVSBEQQX5BmJyIy&xtvEQ&kYhzeP-zm-uqR?_MTP zTI6=pat?&$ZyPcm3un=wjIy1^@0zrGLg`nq$D^`d8y)(q`xIa1qH}$*0N?K&il~lj zj1xx6D>@MmV(PyxEf5(WcFjJW{#Nz@n~+}CSe_1@Z63(4cX%d|g7<`pI~lzMdN#W7 zect$ds6^3!lR0Li&Sw_i2{TaHEVyO0-bYAaUFyc2hfgEt1p@wF`B?qu^-vf9fRQ8s z0RN}*Ege9tUJjsB!zb4r{?=EKz;IrJmUOKl-Xzbp0W_%ZIYJaAL6e(53=A~;@e1ON z?Q>=)jRVEx1E6>*J}Y@TEx9T4Nu(ssC?5D7$PuKrPouu3u+{AXcgo4o4xEXl`67bZ z1i$*7DZk8?aVS*{>(&9kCf&6oH^}`Fz&JW0* zOC_7?9!&g)TE}OnH%E)9&x$-}K#m(`9Y5h6zU17lE0&8r-={03`Eb*c8CpL^Yg~?Y zxj0*iL)G?yxbFdshyl?j{l_qNB69@CKOPLcG3;N%=&13NF`Gt>!|XREv5)AcO4bMR@ zpDOlO(tUQ-oNfmwuB;-bLSYulIO6p-1_@II8$x8w8>Tw5R0WW8*j&lFqrDgCeb*HY zS4A_2D^{+DAKZ%_nM1kCV6S9O9j?O^`<%X=J)|9Rz5OUCGi7fY;Tybp2pf-Yn`1_gnx&4 zN}T7e;o}L}H!yr!Yn!bosJ zrI9^sZf(DXg#P$6cslkhKZ>hae!5=sqvGR=y~ey-NpEP+#kSeh2xu?ffH?Fjc2v9Em4?pDnYEuJuwr4PEv zq5&|)R#*K5@smV%kckl81T#Ct%xaH`{O8fj{NnN@q8CWOtX*=3R56``D8wc~WQ>xt z-vINY9Fc*_H^cDMjB5H6rDIhFYq2tlqZYv%sn~T+yX6bnfvpG+e-H1%ynLfPM|y&H zuSK?2hg5)BpzvK^%X5*fny+K9Zcf2Wt$^h;D^c?$de~zC^ETrbcSVj{I~YHfpQ7vx z1}#=j{*#m4WJ7Qvrv8-eKC*41ON5!_sHZ1K*VXMe)-_+wbza5VKRulTZ(N5O66jAm zi;s@iEKhe7gkbu8tB-(D@JEHv*c73XLd?tQ3zMNm6lSEX0}mFn?9> zbc=0TPFeIhx+2YuvpjxLI)m}9vN=HvbV-`^fuczh!kBMoKS-2Ucq6efK}G>}j0ay} zn;5P4K=t3k6sjAGGt;uaA9Ikl!Fj;Tq}3yYu8U>_(vcCs(Kq^`SMnu9iDB+qjO_|E zw$n7jBFHqH{t}hGl*{6oiObXUFEB;hzYU&B2UwyX!Kx3_&(%eid zn?E}eX;Wq4b4>E_&E+IbIx=6mryIjM8$k=St!7e@c03T^&g&EAy9U0-=KY5m4^Gl`%tiH@*A(VUqi3-lzFl}(|4x;dBQte8v9NHIfiQ5jl zq`Ax1*{$O!(c1m@Uy_4~N#MPN0nUz$&kSGbZa^u-5A^G_Gm>tVODCqNzB}^tVbet$ zMFrbcy>g|?RPt&FY%fGiv`iXtq5V(fbg-Eh@|Ea?WIsYSKN4Ue18G1Uzy@&<>;t`wf}}M+{9R5Nq{3`8$A<3np*r zK)TM&bJq`F3*+tRTJj_jEO^bL4aIK0j#}_N7eR~fM}B~9%5u4B{fif00P(ofU01+y z9e*v{_tUYZPriXKM3(Lkn$7xIMeKTlwCL_?;<0VwCDpWAcp83|@?U!{+9s z@T+Bq2e!eNbv$RNXY%I(8zil3JJyXwTTk4ec=!Qh1knZ;ey_oiFDNK$KbK#+W7j>C zJU3urNE)Jb6Obsc*N%4)cM*NJZxXi=*i_w@yY1s;x)MX63QHCRsdf*}K5cZRfA`MO zmg$Kb{@JbNZok@bjyKGRAc_Jnb|?6;GExti1s2yUHlme&FKs;+ZFB$x~`}{HW`T zVZC+Yel>a%N4qB@9~Q4U?C}yy@%)}p+J#wp^-lZq>Nhh9ps2rmDtGRu+2I`vMj!oP zcqCPYB>6njosXFG%@!UM4q^5fGOTfq2$z0|B*HQvhx-Cc5%1S|)7!W)@dPCXSCw97 z(LFpUlaz?`G3p6qNnOfyr6lHJ9K5J3MH>uu!YXoR**6&|GO=cFW~%B(nKF6@5C;io z=Sh@mvWLzHnFXY9kJ!@NSAhkMrv5rKG!bEaNRNzJGRb;$ViKr~0U z(*RK_gnRR2-0Nr*FAM?_Y?OEmiaeTJqW0s!LXtsKsO@DZP1^Wwc#t3^M@R>S7N69n zmKpzsvJrti21P5O7PZY`kOuQa1nZ63+9AV?_?8K%bjEz;fhnkbPwfo)GB$1RQEniJ zDv3u>&Q&L*htF^Tr(ezjup^a*=iCg-Vp%s#w>i>@P(*bHR>ry44}xz(K*k4IL=vkF zLq6hjGU$|IIgpLt#ck;w61jI-@q=VYke3EbH5Zwc@^-~WTS}<#Q;R)1WE$@EGT6tk zf}Acl%ZzYp4biwlfAt5A@nEmF;X(V7*15Y}6_LBWGiz9+$qgYRu}TMSM^^Y<|M|ig zFQC;s>wjfso3__oD{k;5%OI-m|WO0BdGYucp0lnoi zh}C7P4^yJeg*|fHmuqkuU)eH-7F&}9pQ3^`t8SKAH_D*o7yfBY^i}|WMGgsne8s>W z2@`nLSXK>!*~aedWVwHALC$Ff9;C{BD{8bCH}TdWMnkLSU6lE;_N^=$#97 zaZ@a`$irMd@_O_kNyYJpD#}di=hB0Ftu<~FQ|fu4Pmx3gD(Fk?WGy@uiM`j^hX!Ev zqZ&#;v>6-=JBT(i=4q4Zo=hzJTri^hO5|zXFkS!n8`7cGrFcQUH8q`Rag(O5ORM3g z-80|dA_>Dp4jWa}<_vdw(JUYZLQwU)sC^NrPIY!d%R&P)t7xRLB%T}Xm|XT{wc9&c_>YmJNy2l6sy!ACf#n1EQhWTS%gc&up1Jo!+Skg%5fjv>X0lO9=kOiWl%VH#SkQGI-6oq*xd=vp2>e*e6kN;?`Lwk6B%=B)+ftispf2 z%i29=P1evb1NY$fy~cLthm6TRE^V#~PV%qT<}*aq9~v@xj0c&G433m^Q*EgHMEFG25Z*sNoxAB@>8wH6Qb?nyQV5c{lsM#s}PzoilF7C5GTbg?a;bDb^FuWVxtuym}Gs)ih#go!AsrE2=jM!kx=179WCc z%>qr+$C8f89ghR5WdB=kdIjEvlA`%8F-$1(JSKJHTiA&Z7!1vf08;FZ>HNyBgty40ulhtv?_7nxy=rvF)$Zz5#-F zB(mW8Oj@f~XTa?2W^Lw0_@7nHrI0IBs>ppIkR8wzyfHREXZv z>gD%iRi^|RxH#925=5j55!uQbIl4*x7Cb(h9byxRizb~wejuuQE{P`ns#-vlXO;0M zKZ2V^OwM!{#coQ_yzuJOvZtv#FmTDSegkRG9Z^<& zpM83f?uFLPK^btj2*>acnaCXZUaQ`*5~|Wl%S(nU3Q^~cn(#3gDuSUy>xi)UW zve(Yk|EWfFr(Ar|RU^?#W{Eq`w9jiWnWJNP98<4c>p8mcIzYBgYK&i<+kV>W?OeBE zeCM*O8xdP&LSYt;gwwGjt)WSWzwp?ED}Hu3hz|Qs;$pp=qDg2iiAvpoHrepv3r@mF zpkr$NH)W%n_0Fvk885IXdebpOlYNhu`(gTBS`+CMscvKv3TzBKLx$1a2S64%*Eowy zeyiPLhFa}x-Q8sHd+9GjN^D|37Z$Wi-`WwocW77L$Bxmjy%$C&GM?L9wSZbWk6AJh zv2>ePvA??n@g>0WTWA0Pi2j!q4*)n=x|#lE6HH|)YOb?mjGVvVkQ#r(iStgImFG{B zoxo9`Lp?3!BA}?vWAX8#CP)c*97prUV5Z`8xDYG5 zj7OF#ox?J5cEwV974~ysuz!`-nYtHChWYmp`F(~jji?Vk@M9IXG<%Y zpn62_XM!L+`e@i&+xgh75lmS`rjDMyla=xm7t5oc@m^H@hJx4l1jct^aPYV(QnZf3K`Pe!5~6%KO3G0m_|^uMP>D$jiG(9uyJDz9IpOlv6z^gXvi-9`q}jMZJ$DV5g@EY?9b|a|@z^6lpQd-i_^QE? zkNp;_pD^!zF}+URMkI=z^+mQM;qsZ50AEGk>)Kp1jbnhSPWdlv55224R0!QDJ7)6~ zgpQVoHvH)OBLTHd|D}@%)$^b>4^HX6=EjEQWkm5f4}*+c;@q-0+j*&L0eZ-x0ap&> z3jCTOBT_}g?GCqO=CM*|X5PyhoTU-^Y2USU2Ejk?sZH(22hEYo_ozl8vR*5IcfxNRa{sHk4w;-R{MYbnda!o39m07w8jMNB}kZo#?H$IV&`T4*Mf_K+X!suV8LSM;?@(# zt~AJo6>=;0jLFlQsP=<`*~$VBp>?3oH0Q_$hiEmy7iMQ8sZ^(A`l}pr0L%G<3EM4` z>T~=imUNE1#)MePkM5((pikm5Ugw@%96IKe0^@~@Hz~=dx+mM1szwRF9M@z6dR=i} zqEZjxEJN8-*ih@NeM%&}aE)2>r(tx`FK>e{l$oSF#Ca z!x}zCeSB}O#4M3DME%mS7}dPW0+KgjrR1|?rp3--zFy_AcJL-x-x@UwbLnls#y2#MCQnWy-gjQN>`~S2srrW0D2Vx?~mcG-3Dx)@0t(3DQ9L|zRRtYDv5OFu zU4br6%1hFHR~@%e**X=&xhb@7=BOgJ3`)^#;({-!(ZRx8TtjKH&}Hs=(u5F^rJt?K zNoFLswGY`{sObj=Sj zjLo55g(uC8K)Ou1@g+vvv^ZV&s1`??*JB>abV&h{k|d8!Vq*Hi0O4i%;yAHmdsL*=ry#@~M5Qn+U8_ zNAMN@Tom_-8>Mk9K5F=+&>SpMqal*-Ud`T)?rqh%sT?@vwwF$?_kKCit29A_0@TaP z53D(Wn=vJ&`9U2qBLrf=$Yk7%CY?PQHvATyqE7W>?CXjltXp^7W8^^a4HAF%p}W*p zzimryTrOWIOe+<^efVeTtZ7y=bUq!k6nb&x2HID;a8S`H|9pnZ`zvqwmyCI4ux^;Nx)tv)N}n2Sfq7`^A~ zK4dX0hn4L$`I##ebFrr2*7-9u&amFIMBtm6|KM}83h@axM$qeWG`Q+or5D@B0otl- z6=7%n)asf{r7Ur}U=jSKRpKyEB@d7uj|7*B;9~7UH2n&w;4eM9Z!X!FR_e?t?yY@AuBnQ5QXpIQ#uitX`#t*t z?h+*@oDXO_GAuI32Fx0k4URr{`P*T!bz`;NN4jt>7Uh2$h-5Rav;@pjK5%uk{3SjBbtn zlZzvNE8b)Y(QRS67amYC?#`9k+rbyr=YIV~APHhjuz$&rH*P4YfPrJDi}k>H!d6tv zL({L6V4y9OzettS)SFW`5u|-tCP2{<9UU+E!qL3E(eeB~rpM@TDr&y!p-$!JD0@>& zxXRuVZ}F>%=26(85pl}{__+CV#W>kC(Owv}t~9#~Crn9q;ot@A4Yc53Sp>W4L}lgXn#W0B!Jv87f_ zX9J321|Abp%S;iS0*c$9>r9z?-lGx%dJVjvDMAYqo+KM_(PDMZcUG24{BX~s`n|&U zKv66TBxgvQKQ>NS=q0=$t)gjy1XA9l*al6q1o;uKfCXIMB-p8)mOUq_h&&d#Edu9^ zy+P;aosIG?X#{@sT7A5?3x@?V4TW)yTjh6F*(17*>E@ApS&n)5)4+AYmKkQZ6=O~d z1CVtZ*Wty%9L{6%V*-DZm{dV;Du_JEo7?Z#O(LK8L8GRH#xBX5OY>F#sR~OXPjQa1 z=+put|kC)(QP^%QIz`7U_R+I_!AMafi>RZgk8b;zjvyfpjNk_a@zx#j@?+;XXB8 zwUbFpQzLd)zTPR_m=%p4TKCM>w;pF{qzcv7Y$Ge| zr%pB^9rKDKUA4+6$&Wq!B?SWIr7A)omAXC0IKf~=H_}a6$jM`ZBb&1IB5U;QShW*t z7nAl5Z)qx9hjr6ae;mmxgO|QvsR4%cF}D>z$g6l;FbZY}3wLwXe3Z*^wdW5XT63(ssM3rAOhl2i^8v)A zi>Ol3qYebann0K~yyOpEkZ=9M%L{EqFk0u;dXWuUz@PHtH?iYA8uB+I(lbx1*tX;Z zi)D#bJfOqU#r99!>P(@i`CU2zr*8pN!hs9vvjFP>1U=SdY64ejlz#9zUt_!w)>_ z&!XaEE{Ma^iou0Iw6)343K>a9yn}a(UOs_@Xc?l%{51oq##FpH1lCKY%=_$JBWqG@ zu9!2{5HHkcmvLXV$qSy}$kFqV2fGwZpC-k>@PF&WBUt86fiu&W!4?ac|E9~{x zRxoBuJPiLvf5FV6QO^OVkE;`@xXuYuHoYemb0ER?V_X@J97Q#Ck(WWmivGDg?h?M8 zz-E)cz+dJiJxDTn44VannIOd~naJsG5%)C9zd%rir*4JHS?A28oOijZ#~2$9u^Aai z=7pHMnPsp7pBTe0amMZs68!`hJYnlE!LDjC0d7V4b+uVbW(7PV;zr9>5$|gad3o1b zbN1jfmgx8TwRGt76+H_db-@7^9!ZLx{2{ouP_Oy5H8)Dl- z&X~WGUedFOvwJ5y9ZWqC?$6RMel}H65W2WGm0WT#tlfX<56NW4(mZ}CdG}kb;`fHh zK28)kWsYOsP;ADR_!EP=>qhrOPF~`m=ELY6&f zr#T8?tkH=Un2V3~Y0k|!a^fg)T1S2){Ae{mwoFV=GrQ1|Xl~KGpDOTG!qXKpPlkIV z8;iYrI5YNYXQicroh%uul41N?0wurR%4d)zm3O!S%ReTcmYO4P!ziIPmpmcG#Dsf;Yq z;1Bo(qeby!e7({wEmg={Xp(i_DS~884lkCdH;ofb4;5h{UB$J!lNr0bB%iB* zbwQw1jujw1fS~y%f)bAq&{x&?!gAlFC?&j05so@i$VBu=3UZ`>Ut3(ccW7}q*4am; zXC{85t*;OPVZC2JXgQ@L8*iUK?FYz2H4CrZ@?*9og?ZoGEt54nL_sSHmI$G-LQm0k z2F~-3%P$SWojftgyVLOY4@KwD(Ol}fu`B-k!7bUN9SwCPgtr`Y0SIjqyUw&CDIfAc9*DUMK9xgRPKiD_WF>| zmQ8{t0w$QG(50fyHg@+2~<2yLc-#i=&|%*ecE^l>cTomSy&Dx}c++i5gH z(7JCKrrh!+9fl=^Lm|$Ut|E*gW8qgv!WJP20u*ikCEttcLS1y zfJwD+Pp7#$pHCQ;VKqc!@@riT5J7!tK8;#-kO9#SO|i2u4c;UFtQan1VSjMrU4WRL z6#iU57lO&q!0$|~ncL-l@geR^%$3EWy*d($nGDEwcrwQ>+~hA#du#x0g*Kr=V>`Jy zP2tqrehxX4fU}NZ1el@%=Yhs+hqq_v24SOfO_dJjp$j8;P>MlQX`j&gCZW%CL72>Y z^iivv)=o&CHDn~+VXG_;55|On0^<4>EP;(@CxwsR_aXr7(CvmbIRc#G2DjNqD#{f! za{9OAZzwpZKadM*ZelhyIE-U-4*SR>rHsnMxJnqqx!+A2gBn_T!wvT80J*8+9jHUBVyTBzXt1%yb+e*GO*l`_lOTl# z!U!~xC(;T@5<5|O!m9I#>vVjR!*E~ih&RHhXCkR4n*lM^@vsxxy@#esks1sVt6^t? zTReCVQU-N|7+GqgVmFSTiJJ>~oj=^xS%oaMm+Ro~S+>aA zt?=4>D$|@_thIeL53gDv+-}|VrK>!)6;b|E*Di$BQ5;@66h zwqw<0wM|jeS4!Y^KyeZ*qrbf!5S+hLt)xJr2w?E1l|mz)-);cYl4; z5sZX)J3TclS5)17>E zF(nB!{cm&LD867-2o*rD@JTB=GodIkia z;Hy@0E!>#{bHW+1-tko)YKJ7KG?4-aYbApbUl8;F~yrc(jz&|_icdO=)Wc;AsW^EsN_ zTDS>JUOV&r=Mu-X(6N>p=NK91PIlzhmT}lxvfL)t)>k$Dy(R2RkJoIeCy zU2+m3w@Js9Sj?fgaX2>x_h|SCQN(2S5pu!U-{8sYYjS2Jn{Gq8gq=p+?i9?wRm{KN zh@tJW*)5ckFMMC(sr|*VO5%QcX>mF4l!Ul?U2Z+2jrO@KqJHniajh#a z-rjpINwT^ocp&?tVo<}?xTj)PxaGmMS+{_`NLS4wUf_0lg5i6U!gcrc>bXCBZ7wI; zd_v!cBhOS;)(@*&ieE4@Y+VKN7;U$En9@=;B86m0j(HDRvLeomxNyugrZjq%GSL)@ z&U&i#o5{dCbHImOeEmEdry{BD*%lpE#in!NR_*SN8t2{CsIlQ*XK(1&Xrq0W%IuJ{ zcM~c{7r3&a83OY}V?*g{a}{JLNN@Jqlst{w+9;$ccjN>*ehQA4#l8yA8l9zgAGqs% zi3vIzIK-1!qAfhkzl+~ZsdHfVT{`33RsKYqn- z9nj_*03ZwFF98|=umeL({`&GyrO7+2vZ0NhKE4fQ?WuNxTJli~R>#$7cVXys8X&+` zO7QDnvr%_^yxFJYpE8R`sq9C&qD8$?q8=8Obq_BU_woNk-423!e6l;IkZrcoxk+zJ zp2oeA!9}IY8cG1j6EqYP2mNHemG!w`iR4qa3KvlwR^El)wfZ$cV~fxNIOh?Wm2psy zw%Uom#8JiKq`LWy@2~D9I)e|OH6FkLeZDJ8aR0vZa7h(5UE(-?U?&O9`P(5MvipWNREjgLl z^XZYkIOE&O?}mghSfi+M7|Gip&N@53X_LuGDmg2N9V}Lyl|}7 zEmk(i#$4E(w_%Yr;-T-x;kRofR^#_`w)f+%wpo?sVcxt2{NKLIpIrD?YYq5o`hU4F z|AhLdKk?r{06=Si_#emOKZE)ox8k2z|CH+gjaB?7>;EIHzYF*O1pKFj_-{a8g#Q&3 j|9R-2Rp{S`9Ps{Kla%G*|6Bn8!2jt@f0%M3{44q|)Kt=_ diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv index 7c44d1b..b31c6b4 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_emof.csv @@ -1,3 +1,7 @@ -eventID,occurrenceID,measurementValue,measurementType,measurementMethod,measurementUnit -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,69.0,animal_weight: mass of the animal as measured or estimated at deployment,69.0 (kg),kg -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,129.0,animal_length: length of the animal as measured or estimated at deployment,129.0 (cm) standard length,cm +eventID,occurrenceID,measurementValue,measurementType,measurementTypeID,measurementMethod,measurementUnit,measurementUnitID +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,69.0,animal_weight: mass of the animal as measured or estimated at deployment,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000019,69.0 (kg),kg,http://vocab.nerc.ac.uk/collection/P06/current/KGXX/ +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,129.0,animal_length: length of the animal as measured or estimated at deployment,http://vocab.nerc.ac.uk/collection/P01/current/TL01XX01/,129.0 (cm) standard length,cm,http://vocab.nerc.ac.uk/collection/P06/current/ULCM/ +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,16U2111,tag serial number,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000189/,,, +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,Wildlife Computers,tag manufacturer,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000183/,,, +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,SPOT,tag make and model,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000185/,,, +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,flipper,tag attachment location,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000395/,,, diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv index 481d8a1..5a729ed 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv @@ -1,2 +1,2 @@ eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol -atn_137491_spotted-seal_trajectory_20180418-20180526,2018-04-18T04:45:00Z/2018-05-20T19:26:36Z,"MULTIPOINT (-165.0651 63.6222, -165.0595 63.6399, -164.4277 60.0415, -164.0013 63.365, -161.5203 64.6676)",0.0,0.0,deployment,US,satellite telemetry +atn_137491_spotted-seal_trajectory_20180418-20180526,2018-04-18T04:45:00Z/2018-05-20T19:26:36Z,"POLYGON ((-164.4277 60.0415, -165.0651 63.6222, -165.0595 63.6399, -161.5203 64.6676, -164.4277 60.0415))",0.0,0.0,deployment,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv index c7fe607..a7e36e4 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv @@ -1,6 +1,6 @@ eventID,occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,minimumDepthInMeters,maximumDepthInMeters,dataGeneralizations,bibliographicCitation,occurrenceRemarks -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,present,HumanObservation,255021_spotted_seal,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,0,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T06:09:20Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-18T06:09:20Z,63.6399,-165.0595,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-29T07:05:19Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-29T07:05:19Z,60.0415,-164.4277,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-05-13T20:07:00Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-13T20:07:00Z,63.365,-164.0013,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-05-20T19:26:36Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-20T19:26:36Z,64.6676,-161.5203,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,present,HumanObservation,255021_spotted_seal,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177,0,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T06:09:20Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-18T06:09:20Z,63.6399,-165.0595,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177,1500,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-29T07:05:19Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-29T07:05:19Z,60.0415,-164.4277,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177,1500,0.0,0.0,first of 4 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-05-13T20:07:00Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-13T20:07:00Z,63.365,-164.0013,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177,10000,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-05-20T19:26:36Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-20T19:26:36Z,64.6676,-161.5203,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177,10000,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml index cbfa342..66df39e 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml @@ -265,7 +265,14 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. The source dataset, containing the full set of detections, is available at NCEI: https://www.ncei.noaa.gov/archive/accession/0305177. + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by satellite telemetry tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. The source dataset, containing the full set of detections, is available at NCEI: https://www.ncei.noaa.gov/archive/accession/0305177. + + + + + + Wildlife Computers SPOT tag (serial number: 16U2111) attached to spotted seal on flipper. + diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/meta.xml index 4ca2425..58f2f4c 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/meta.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/meta.xml @@ -49,7 +49,9 @@ - - + + + + \ No newline at end of file diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip index 87522ec9f025b4f09375b078e6326f1165616ac6..262eaaa43102775b7ac38af57a52f4e11dde89bc 100644 GIT binary patch literal 7162 zcmbuEWl&w)mW6Q*aBz2bhv4oG!Cel{A-F>z5ZpaTaJNHncL?t8uEE_px4U1xy0@zT zyx!}_-h1s@HLB*QIcwK9R286Mupl5H5FpAmG4*{i&AGlpLO_VaLO=-q*)??q8MAZp za`AB)JKLC{A33@-*72CpB{t&xTC zfIAfzw#}{$xT1$p?VeEK0kK&io0QRn*>r;K2*n1aXBP zr;>s=217bTlcww)Qgbd1lTw@vBvk`99UX>XA)||NfCv-i5EUY--Xq=WprB&cr<7eZ zp&S7;>mHFDD$p&Swjpj#{&}?fMsWt!e>b|ly@UI~xut6Su;mFinVztt^rgj!X_``c z0RBaY6Q!YtpLXrdp;QS!;98&+=nD>ujtS0`caerd(nm7>En33$PPp@O=j^V0vJ-GHayde=Im!{O{;EB%UW=F1PH!kZTbUPd zhhI>n#a_X{WaiX;^6vEDIW4i3zng<6UVQ9`f}|eO2}vazCx^iwD1*>pb_!`~eUdWV zbWZ+&D!{%1`fUW_LF@J<$y273{mG;XD21sBFVwXPx1~*h%&e@JJWoZ`4$>aQNTRqP1K&jZ1soBayRG8b8 zV9J#)=O1r0UG6rmDs#uK$AO}zL_UIV6Yucd%(ek8V~Qyb6;fGSxZR@)olf@jSsll6N(jE>zph({sI( zi>6|+^jVYdo(cUTNh;0jr_0u77Zx9`Y*dAP1=18)H*%#J8E<*BCatF>nHhmvT0Dir z>kI*S!ik`W`Z~M&YnADf5Im}>k9s=w1_Wy^bmbw9SFEFL;Ag2JslNQri#{(sN$en} zhMM-N9W_>>aXuCEc%)04ZfO7ECTq^xfjmm=rOHwHLZ@0+>&C&_o{#$!k7jo+^hf;;3PKrzr5*22>p@C+R2jqz?CFjS6G+ol;#%GtO?4X+(YBa(uxLG= zL=kUQ;WZ0M?f`sr^#Y~wV)cNSf2H;Myn?KTGZ+&&z!+xEuQ!p$w~ zDXmC`lQZLq#t@qC*b-;1kuJ2K!LdnUY-$uZK#abnCFEH{0g`{B3;9g5#tIe9iW5 z@JjrY1-3hE%ieJNs%^i1tl}tV$j6squ}C3Een%$_E-m}%4gGLCDH1$7S&hKGNk%+} zfHjqTGjPtXe6h_I=|m906=ek2pP*k-h4CE}lEyTc`o4!e{0^J6<0^{Q|3akPtnt%Mz?_owIh*%9#WM;m@l3Dz5{3N0G*~OQF_mV~jh4v_q zufW5hxdvb#lPjgU-EC@^)rfX^a)<3OEs_kl|*|BcLgLhvwC7;iU z{^rR2-9dT*aP&+9Bg_IL`u&0Xg7%yLK-pZ?`AAp<<1V84BqvhKWM@WA1h*_qh_n^35ch?mRUgLZL0y3xX;i;liiY01j(w z<_Ap95+Il^Xa=v|@~pz&N%u7{Z4lL`YRRV*p5jI{M);ZzwV9M@Gt5GoGE(AbuutwK z0f8`1_pmiM0fF>05ea9|k5Qmg6AgP-Vm?_6Vq^I9H9J^$^TEy%^LM;w_YewlGcT=q ziYi9Lylt`GPG+C~))AH0Ovs0zb=_-wZ}!$Y-Ro8UtSs;otYkIsgrdYSHFcf1wCO;~ z4P~MaPr&wF0>8v@t=7K5K2gN=?&6oRQY(T-(b}P?lw3WN*S_|RkDSr2l2bgxVHs?E zw-1i$y3S2!PPh?S!HX8+$K;XP{twm!`i$6tU9p}#v)Icds%Wj8T+z|=_1~9yG6fi9 zEji)yf=>j3qnd7WV%?_i&3MpEnKGi7q=h)XOEdW<@Wi#otcD2VG!=m#-IeFIFI%|x zQTK;F0`@sk_)=JN8%Bh-gyIgv>rF%FzkIX%_#Gv5HG6a;*nr)Qzhg`F zuHjUg{ad2n;Lyomchpc3<9;F-PH@s=`yreJ>Ab)9Qemr!24^u?w9isR9^-dJq+(Ba zpY}e_f)X1f@@3?OudD-weo=4?XrlvV;q{f93_=o9%IOjmPh#n-ldbB3C%P z=PzQvy%Q|Y9rZW6&$rnNYj7aENX?8+%0T3dcy4{Qd(5#>^#KKHXP9(V!UD%x2wgAW zgP;7FHW{+r6xi=n$C9M@KtJ`{9C2{TQ0PWg0=Y(UF!C0`2zx+>LKh zbCGMq@3gp}_x2M1T)cVo!Yq$Zeuk|jS;n@-#kV7kWk$iCIV22h=p1x)y**HYxJs97 z>y+H2w=(&c>~f}(aCI0&Vlm5!TbC?$G|2858ev+Xse21&(jg5gbCrk0ufcc7bh)d6 zapNI;0gCER=c3U1CMGMIsKGxVu9x4q0S%-G(N9oj?19~~AWHH4AzW1=8XbJ7s&HE= zT2g#CIIGi{g|T8veLH?I@UX^HCe6lbmgWe`<0VgD)7d{^=tSCXgK_R?-Zw^b zTZcULHC*{*p0h@Gn6a{dt8+*^IjN1RC*CuMOc=V-aNS0JO|T>AX;7d}1;&%c&$+qB zYu@T${!S{2e*&{zlCAyC>`Mq7Z@w+nHPOf_^E`TETu0%OIY~c|&N7xqxm{O;Qiz~` zSwsgbal*GlXX>`K(XJ)nbG{{Vux4n$5$w|^f+r8pmOeAx!Mf4<)Ebu!I6WlIci!{B zgVx=e@o5rXK-`nNi6-HWhI<0&KJwVT0Uzj(Xg=O@l90d z{P7WV2(h%X;66}H2!%ZrFCU}>Ig}5N4xEIBw8`kwbUc7hBQI4QR#$o!A4*P{Tp8Q_mu5uz%7Bzdb!u6O<+??a|=4oLU#lg?enS5Jz=)!5xG~I7xG-)Z(n@0}y zOOivP2YJh^?OpA+_Deb}@dGuGn(AlGF9qr+@lB^w`k7kL?c;~;H%GXF?!T1IU7io#4%fNVzYB^5(0dGa;%)J1a!`57CqF`?ZGU!`d12A|@bu&NO5)Tj zD~w3ZmH*8bQXdYsEnF|E&O+m>>D`sxwGfD8g0CCGEWbYr{;|_IU!$yz`(5> z-psD73&=ys#FbNXG{!DZ{)qZDHTVGePs<5nu4qqLQznzG=Qm=A906MhI9HMkV&FY2 zKmkR|hg7u_4Xep9z`2So4~5DtXM1-0_iEvxf!+1eRoTTT>WKR* z^W6wo?8h5wrRmSZVuX>2rH4RR5;_C=ZW_0zFb}D&$&{rKS3s2*UNc(@P2aVU`vm|T zz4f)>_VAH0bjgJVnvbJ!ln?UfLzF&DmmGl>O(GL3f?>Elr&Mi}x(=BcORiX#bxBYS z(JLWr)XU@+II7|}d{lLN(Tv~XVG;cY`B_D*$k49D2;cD4U6dY?ywM3fJSloZBv@GI z8`(r$YI7^BYC3* z{LHqW0$uW;0;HRy8H~rh>Kc)kM)=le-bV{6vEW5p)%cuTXn8ObVau#Ucz&@UbjVk5 zeMgw#K{Z59ibON=E~|RV2_*`2jOhF!*_bXOYQR205kQ&(8qg^djxM7Q(Ac+q>AO$E z6?5Gc_6>)ULB0@8G2Lp3K23ri*6BDAr|B>Ily@fan0-lz?3Z7)@F8@p)I2xhqkZ^t zNa^*9Ky!-go|*IP(JTTE>4-XwE);;JV`VxrFL}h&a?${gt=Y}&d0yRQqBlAQWJDAk zBl;nwB|+mNzqg_X;RS#lXCw&sX19FA&0;&>|EPPWp20Ituv|Js zSO0TABt8cWOe-Ih&&zyc-%y;xuPvUrl)gCNL?QxIn2*@6qg$meuHqs=`PaE7>gs zN6|bLYAntFQfQ-c($60+@k>BLC2hPlb}56Kw3eb4gAR}t(jksp^C}TtK*(^(#B*HG zcOu>1FMz4GL@_SqC)VCT65pFVj!GA-i>9Fi7A*xN%OU18Y(_r^n9a!x`1{0yY8tq; zNQY5ME8nrHJ{t_6z`{-$>bALLETz?~WFe{xnsX?1cH_q?JZAb8Qz%Tfu&!~g#?ygO zWKtEqmBsp|m_==u?9PhhI$NgBnq(vEPdoZdo+p(Y?fAH4gn^TaokUHCn~kvxPFL4W zn%(W$q%fvjghyrC^Wn=>qn9TC@j^5if+B^0HoL~GnWBL4Htgcd;6PZzhQUX&*^8oD z5qb=WTPC=X*@XITZMLO(TtS%=Zbrb&W=}&K^=!oPKq{hl%AeSAEA+gwnz3ZviS%N5 zDJq&nyGtirT9Ht8>0 z5&TrYV?e&(s6$#Sim-_t-{7l>qL0y9I~gLG;3@UWg-aMXwz=$7kS~p*4G~2Q=@;8l zKJKKISD~s@u-0AoO8uDi;is9@86^v7GNRW_5bL2Zh1%uG02}oSic>1ux zlNf8u2jxKJ5M-(|AdW{1X}En|F{D~;It^Cx@oVYg%aK7i!HUOgC9%G(*vz6Omz%TZ zHBAn?kC^7zMtrd)?|m`>wZWy1+McG>z%vBu-dL+>sJi)HbDd!KhzXPh{dVw+rwUxI z()zV|%lSusEHtHp52dYLYY_oUG$+_73FFdNEv=VyOdNYZ$I`+L*&yPv^t8v#*eiSG(+7smWvof%pDYG)R4UfW!Z z26drM88_!NJ=M>>PUrsOEoX8ncjpbmbS}fisM_uEw?)ABy5EiUppfn;+sJe==WAej zo)+(?Ii-zrS_+&d?{PK*SuJGKiJ!h+<0~W{Pkx6McH58TJuF;2Rjr;$t~L{@7+ zPDuDNEwf5nf%0;@#6TOY?2+%5&uUua9cI71CLWuyd6#zyH8Pm5>u@gz??!n08LU99 zu|}DU_Y3W-57DOi4Ax<3xljXDp7FCwzsBkV?a|`&|NQJjDgi#++a!doX@>F1jJJ`jZlFhC~VtRVi64h+U#iF|slN{k{wR29P5naiOU*wcppn zu!%`0>6@iB*v;aoo=s-o_XXlf`u8h}i0seIU=_YMBX(@lEV`|npxt=Q42`6|RG*X# zmsG%TMDMqSYZPUp1)#|7&j&1 zNet&Fex{2}p-)mKSXQv&h^TXKIE;_CkbOF06xbE3i5g162i4NNd3n^ozcUc$9U+{P zeMewX;w8})cuS*Nu48JQ(3d|zY%LBC30K;d{X!k3GaW5W!w?2ju&T*f6yR%%9f z4f354*$|G({}9MI1JA6AfqXhsN7xxl8G|wJ9x(D)JwdfM{Hay{QY*OG^^jE*?{MU* z9h5l`uXX==ghvoG*F$CHLFRz{Ba%%5)w01|#X!wW?U%XP9@(0JHEBIOL8t_EBMLyc z=KBkzZE`lMyT|mMvX4iAPY0gpF9$W31v#9|C7FceYS%a^I()^JOJySJNH&86#%Ex` zM1h*$?`^Isse-LA4ee9!ArOE{V>pIe{`thNGy5lQpVMGW9-x@5As^Wb7PK&Xy=*GT zfw=33z^b)mbQ||dhM*Zz=k1-B2JZq0W|xf0GPpX|)0M*h0p^!0ZM5C{ggD)V>g#gc zT2wc=ECpLlCRYDNq`J3O%S~@pQGSG#mAW}SJEed$WwGbM+O&)S`EPM&l^S?6yO)(P`D#Tg~BkB9xg)X}T0LBu!9RG#%UE8vH@l zD>=zE{3Fdi4QqJh*eWguajH>3Nj*W%u#}*Dtq(ltEf`y>CcTfYAw-;*`v=BgY z=C@hHoJ2m>#9shkb1pamV|71x2RQhLx@jp5c5DkHAe?pD_ zNaAhe?6iZ_C>A+4(0rOyV3F zG5pO=nMBbRAKuP@HMEJY3ma+2C82bCqwj2&_np4LS(5RLo1IMgTlxVu^b`hNGV>VG zkCfKg6;z*0tfD`+-z%7IHjJ`G<``DBCU`gd*W@1Tv4L~g6DgF67_>nSL>fiOCN|
aG+h#Gik{FgBGXoXM6y+S4WTN$Co*8fDr{*vkBSG6eq` z4GiYTtB#6<6hM%yj;abkwG%dk34?2ApLxHqC#nnMW5a&WtT+d>E*v+Y9B)_PfNbSW zXe1iOR;SI^ugI@xhi8&wV_Pm%NaW~G6Tv)X&=Xz=$ zR3K$Ob@WR!@32S{ar-$ZQDQ2GKJ(=SQ(4`sJS)ff$UZ9PXgNUDxYIfPBmAX)@m96n zsV1Y)b%A{||DlBKhg4|e3-n@VLqdZ2(Xb`n>I(d|%!)G@_DQu~SW&iRc))3{s+wPF z{%>WtDdBL~N^@IJ$ao_dH0PAX>7?+OLP`K=q%lSL+D&3t2bYo#oq>m&wP=g9!1U5&ul-qvcVk}*Cr5tuxpI8)ZhuF7AqYvH`gMk@JAb#W zYU%ryu=Imk`J?WH6Fx(Zsidfig?F2(QW)_q9zP4 zoJ!nv`g-9`n!rwS{cYvJGzlMjCSd!6ZcBAFsTTHH{VQN`K0`i0pWMs%$84*h?)GTO zV#DtK^Rq?ubUO zf65QOy3F0KAjs@>p_|0Ud1*^cc#6j(+Yn(!jZ#L8PrRoPUELzVB?l5G>ZNAsUEm#j zTUrW}uVW{YfC?AI)tC#9Lj8rf-9-`hsf-ihDS<$`(kZULt{+}E_|zSLfsJ7(iw0dc zy7#M`*1eRkv;}JC;l9^u$obY$Y_xhdT6cnp}suAt6K`fTNqYv1gc)iOaVhKLbFqey@wCwfw1n2@=e z&OAr=6CG0E5YxLQcN?2Z#Onbzx;U_J;k_3sNpjn`&=a${$zV*Ms|*eIhGM>04s15w zuPn))ESozRc*b`boDXf&+cYE9ov`ZPC+d#3KB;zv@vJT9*&^`qn1iIZ1(qtKhU5w~ zaOHskTASIc5|%%#4Y(tiv+s*M=UXrIlhLu{fMm_#m*QM97BVyyPZ}9!60=#)Zr?j@ zEf0TvZL(KqCU4~(D8f(qHAQJ6z_TMT-a9`s8tJ;eA~;MQ5RJXOt3!5`xhmT3FdL`u zHr!+}Rn{4o%gbT-VnHfTC+JuPB-lj$5Dl7bFeL4lyvCnVtt$C$X3Oc_((Hwf?e+=<&+dQsxPy#=2pw{hVwu#|XukoNJd z3u}8wvkBwU0Ao(QQp7xzZI+BTJJzGbujMC=kMta~lNWgcb65mSf6GluIOb~b*nAXr z%zabZC;;vLI)6AOFq3$XkZ6(z=MSVc0nEt(!obEgLR{gX0cvBiLlb&oy&N)DZcF8_ z!2dlqEuYHbv9EJYR3NTNX-arFDoac3>W{0AVME)IJ4I+tn5ebYf&zK%!|9Y@3-~1p zjQ*^uoU=&k6CK3Xj*8mUL9p4G(pPUWV~oa$)nu*bU0*e3P*rjlMWa8~yCrLDfbSq_ zO3-ROc@`$=y~TaW_f;rvY)MQ%X7F%6U1E=UQ?_hE(E5#Z*bnZTuqz8?&8intO&EeE z-zJ?Xw|s1+N$%n0GiT284zo1}LTxim#a};kUs_mINAk@>f;IK(88Ju(4(rLwzUNiE zz;Ni#KXG@IZJU7%wAX0iq}&%u0LA%|btT%;g4(saZV6Ih5FhS!EwAJIq*DPchk2gZ zsqa7L?_EcD50qNS43IZsl?%~mB(;)8~NWTd4L zv-BVX8*>+^@K?)}WIv{VsaP1EC3xkcc4G8RhU&@D&Y+ZH_lMC%!>#&v2H=!JLqLHZ zKZJWToS`fuE!CBQCc)bDVFUO(l_@PdHwd(=p ziHCb4CkD#-QbeV%;9<%9XFK7hnUNg>fx`*P&c#;`fQRMvTFf2=+>+MphrjaFLUYWI z+hU*h#@&IHd*Lyd2l*%@j6kToI2RY8pEeo6rj-1JHXukvpG*q2mgVdr+A5O*(Va}& z@LRNs_sE!rGpN)6P4<2 z7^3#u?W(tDz2!)f2l(Cr79*ge$S0NKiqOGOd6WXXe0Gi5z|DebSnIbHjTU95X$#T;E46|XDcjCUjKQ_@z?ENVouxA!0*fR1Nq9lJoAi*%rE{b zPDV00+?yXY;UKP3Q$g9ZIDu*(j2kQ%n=@uf*(CRVcC&Tt_bz;Oak7K@4N|F@#1=MO zI-&>8;mX3Sr}R1=k62!F0Q_{Q)&Ylq;^L1RR#afuAq*ee#BDd+5FC^z6b{Y$9n$m* zCPmHlA^$ICKx@ZoUnMFVdrGZ5l#BTQAI8#3$d2Q^S!a=Fg<&IM?U+F_)I$=R3ZVtt zsYm3PJ!f|0SJkRp;19PZrIBy=Y;1#Qt{pjh^ao&M4m!G^u?BtJ9mj` z>tE+c415z4;VPB*qo62RvGepYUH(heX_bb1K_|_9n)f(*W=c@KC+-G8d%9m5_`U01 zpAi+gwOQ57ho}ioaW9tMx@)pdcWt%LIj(6+C%c!feLzkmw+FtQ_|mzs6Wp9TF48x- z#;jBT`3s2dA zrDEx*eGA(om#>Rts1Q$X)9tRleJ56ZpPu)-q(Cdr@~5cGC&~nW>e*2XA+=IJecg7+ z?{hA{%2GI44Y^z5K91W2^!oME`8_g=_HL8|qvEYcXP=+7c^Se|9BiE)ezxabx)eFB zmZYBXY^u64D6Mpz5Cnv`;Dq|#6z1Kp%|KSd|O7>B4W}v5M;>9f)O`Rv$QwH3f|dM(R=1| zKu>1oaA`L1Qf{7Y0)p#FoVZ!+QRoxSB=|93xLZqOGm+u76_vuj zgEqP$;6jANUTz3dZ}`k$%~~)<+Qa|a5`dkyg<&8U=6m!uT)C3+o-0HSPB&KY@GHRI z#vCVF)-y{hEE>@Ri9L~No+0W1wprATDxm-qW0SY-IKi{dx!a$x7 zEQNDJ7gjv%X~XutM^*2W+TH7Go7L7=jZ>nd4g+N@C~!L|>&-SRO_N8AhWhnUk|SR;hwFsnQ|gL z>9lfnel!M?s^#gJH=Jvc8FHTaU$^F>kKU-kqzFV_e)0Dp6i4ARJWz%7#N#*OF`p_} z%f3IO`crFPyzsfqh+@~aSrIPc0hr4ZCKzC|aVKr)R(Vn7SlBqi#JL44N=Ef6`ccg6fun2Am>r+sIo{uh zkS~Ehk$FsKRr9^lu$ZShFM>ZYVS_7GO!me&x0J|G;ewKOR@(eK9W@I)hovRjLZ4L7 z7`n4nG-O=odsOB^OiTsXK#|_u`;vH>1zOaK*i71epmun=lJY zDT39?E%V{^fhx2T7q!~LJHVh#loqb%ou)XbL!J2cr2K{h*Bo0{YXN*Q9xbD5J7iou z7lT48R56S5juHVJhWSe=rj#{YzmiyXjO@2Wx5OR}uSN5BiqIox6>HP_9JSzf4MWwq zHN&^ni_-qi-i_&%udv>WdgY^5yp0I!KBvihy@J6Ns~C&<#|@R`F#ii$Q47W`QF;g) z+%WxhjyIa1HeMlm#MoAZ`UK0Obn@_Vt^&dxPCU*=!h~;93%b|4cK%?woPt;6 zGx*ANP?MQF^i#{jZ3bZUBlpxo=Ma2%LR1RMI(?WlV_arg%|hSG{3^;{D-LYQI-jy# zZs>p3(@K-rdmVTU`W6ly_qK7&BHR+hr64f3TE*MR1@fPHYDm=8t2(P0%@3I4pbT&2 zBH*@5_mi$Ait2i5f6lQoliFl?Wuj9_4HR7tcsZ{8!+>ev+7uWmQxmeIT8=FN*EIB? zLEe$*N#D{MIb4^RMr&huB#1R?|QB45(!%7sTI}450M-<}%k)IFS<8vWK!4O9biQ{%->oY*Z}lvh>EFF-u0mWYZ8#1Z`7Wt{ zg;gX`R^l`qXfIe>P=%i~cuWTaDXB5FdjV!~K{fqxDCgh>8$PkI>F34Q=Q}OK8Ot@i z6!*hN-aG=qh0A3gRK2zwk@X|yEFin{5=RCSTMxC;V2)4N+3V8VsP12Iq<2+{ETY*d zI@oUK&hiE~Iq4D%9?=(1Hjz3`x6r4WqxZx)x@!Elb#tpy>IV<0(BxpijvTz0ryvc9 zEh_3<1#bo(A&yd^wRn*$O86nFc5i=|!s0zu!KDmAkAWmw`>Na{OxTsm{|@o2M4k#t zEtV}wdN8LnekS<88-11cnNKVV5>hShKd=!A$@!g^t~P# zDlI^-yBveOJZYhBI_1KqUlWALT~GM#^J%3vFS#aM&P2UfwcWF7>r8C$Bmi!wHhQS3= zfC8LqJoZ00%u>hV%SO?t3ab6Z-4+IC3|!+{oaxYh@DF#=YNQj_$WeBqA;JTe@qN6Y zW?tp%@L>x>qo3dZP?L8JazQSROv}(I*dN{`Y=|4yazRex$D66Ny{WhQ$^lagGwM35 z1xd&e`Hq}?_GEc;rsYbCa-zZvC{%+nCRt*pi&`-5X<#O{FgTDW7k|k1x9FK`=H^7A zJKLh*aGubTDCew9CA}Oh9|aH+U{Vh}h-l!qihkp3l#MeRp1+N^^w$>*%B@Zx{8(8X zPe%iVV5#LuiO0(c^Se_KEgCgs6jG%B4~lD3f&Yf$SjpJbcntp_^Z#&RBqaI2-}V1m z3rrh1SqoJ$*`FHE`=7-BMq2+#d_?;<;L`f9+W)PZ|6Kb0cZ2_{AuTm@jDI3%e;@GQ L=suU?AMbwvC)Q}N diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_emof.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_emof.csv new file mode 100644 index 0000000..c989d72 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_emof.csv @@ -0,0 +1,6 @@ +eventID,occurrenceID,measurementValue,measurementType,measurementTypeID,measurementMethod,measurementUnit,measurementUnitID +atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-26T00:51:11Z_0.0_ribbon_seal,67.0,animal_weight: mass of the animal as measured or estimated at deployment,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000019,67.0 (kg),kg,http://vocab.nerc.ac.uk/collection/P06/current/KGXX/ +atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-26T00:51:11Z_0.0_ribbon_seal,131.0,animal_length: length of the animal as measured or estimated at deployment,http://vocab.nerc.ac.uk/collection/P01/current/TL01XX01/,131.0 (cm) standard length,cm,http://vocab.nerc.ac.uk/collection/P06/current/ULCM/ +atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-26T00:51:11Z_0.0_ribbon_seal,13U0107,tag serial number,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000189/,,, +atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-26T00:51:11Z_0.0_ribbon_seal,Wildlife Computers,tag manufacturer,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000183/,,, +atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-26T00:51:11Z_0.0_ribbon_seal,SPOT,tag make and model,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000185/,,, diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv index 44514d1..ccd30de 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv @@ -1,2 +1,2 @@ eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol -atn_137494_ribbon-seal_trajectory_20140426-20140426,2014-04-26T00:51:11Z/2014-04-27T15:30:50Z,"MULTIPOINT (-178.0899 60.6317, -177.8437 61.0606, -177.471 61.1814, -177.4029 61.1712)",0.0,0.0,deployment,US,satellite telemetry +atn_137494_ribbon-seal_trajectory_20140426-20140426,2014-04-26T00:51:11Z/2014-04-27T15:30:50Z,"POLYGON ((-178.0899 60.6317, -177.8437 61.0606, -177.471 61.1814, -177.4029 61.1712, -178.0899 60.6317))",0.0,0.0,deployment,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv index 7dab567..ebf88d7 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv @@ -1,5 +1,5 @@ eventID,occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,minimumDepthInMeters,maximumDepthInMeters,dataGeneralizations,bibliographicCitation,occurrenceRemarks -atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-26T00:51:11Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T00:51:11Z,60.6317,-178.0899,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-26T19:21:24Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T19:21:24Z,61.0606,-177.8437,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 5 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-27T14:31:07Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T14:31:07Z,61.1814,-177.471,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-27T15:30:50Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T15:30:50Z,61.1712,-177.4029,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-26T00:51:11Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T00:51:11Z,60.6317,-178.0899,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305178,10000,0.0,0.0,first of 2 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305178. +atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-26T19:21:24Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-26T19:21:24Z,61.0606,-177.8437,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305178,10000,0.0,0.0,first of 5 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305178. +atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-27T14:31:07Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T14:31:07Z,61.1814,-177.471,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305178,1500,0.0,0.0,first of 2 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305178. +atn_137494_ribbon-seal_trajectory_20140426-20140426,ioos_atn_137494_2014-04-27T15:30:50Z_0.0_ribbon_seal,present,MachineObservation,255017_ribbon_seal,2014-04-27T15:30:50Z,61.1712,-177.4029,EPSG:4326,Histriophoca fasciata,urn:lsid:marinespecies.org:taxname:255017,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305178,500,0.0,0.0,first of 2 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Ribbon seal (Histriophoca fasciata) location data from a satellite telemetry tag (ptt id 137494) deployed in the Bering Sea from 2014-04-26 to 2014-04-26, deployment id 535b7f8de36c4f5e17acc135. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305178. diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/eml.xml index fe98907..3e116c1 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/eml.xml @@ -265,7 +265,14 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. The source dataset, containing the full set of detections, is available at NCEI: https://www.ncei.noaa.gov/archive/accession/0305178. + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by satellite telemetry tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. The source dataset, containing the full set of detections, is available at NCEI: https://www.ncei.noaa.gov/archive/accession/0305178. + + + + + + Wildlife Computers SPOT tag (serial number: 13U0107) attached to ribbon seal. + diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/meta.xml index 5f383c8..df5ccb9 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/meta.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/meta.xml @@ -41,4 +41,17 @@ + + + atn_137494_ribbon-seal_trajectory_20140426-20140426_emof.csv + + + + + + + + + + \ No newline at end of file diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314.zip b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314.zip index 74cd9909bed85ad271d0c404d870288527912654..b828400634e1aa6ade6288ed7d7da0cf3a86d0e9 100644 GIT binary patch literal 35100 zcmbSSc|6m9{I3+1t3&Rq5F!&obA_bbQf`)zbCx^H==h?@9g>E*OOhiL<6FKN$sBXe zRS`zBFvraJy+8W>^ZWPrUynVsy^q)Nd_G^#x0NZ|e!e|>_8i<(e&e{41NmvHD6QV%e` zzV7^*@QQ`d$s3=@*C>#SYc=pch&`22_mAV|KF1j^9%@qj^4A^)RgVqkv-oVzen4nt5XtHyBh5{uSGsQQI%C) zSNQgKKqiupNi+XBn2?e(ZK{&3OgD0|R}w4^v_5dFaw0COtnp9C`&-EI0jgJHzHSq& zQRJ}NZwDvL4ng#0=-d+|%S#}(HD>bYs2y^$e|(hn{n6y+487>^_+|Uz|7K!dyBRkI zS>C8QWVot7`aQ1oHv8lJ-poK1wg+i4^7>icc9JuDsw%ok0f!1MIqxNY>N@duWO{pX zld-&5r>UjTD;aLVFWe9kf8ywV4$3jXM^ciH_w$GBLpHD}*8YMw=UgNxEd4WOF{9uZ z7+0qRbiPt%%yVr8E?MULzOdoH6!+Wsd(!=Y!hXR zihelen{mwU`{g^z54Ar}&X$r6B^;V>M?0J6Y*dBxb=RKj^-9v+dJOkW4q09O`j!bsx2$bDe=lmTm_f6qYnbNP| znM3&H;hGxpH)mVtKkcirKPVG+wJTIZKE=O-Y}q247eK)IvJdNzeT?|Iy;s<_v#(`D zIyy-^J2e#+9mV+bOJe88(o|!(9%hri{A0ZH2P}&Di_vMBClS4~#bC`&Zv8+YCNNv{ z@hO63bmaD*?UiI^^m6g`(9RD=XXjKnj5e{evDLb>wDpUXmDkK7CDU}b|7@U` zh{*LN0s+>&v%S>Xq8q(YPmq|{!EJACH|*3SwpmMzmDyz41WhlUw!Qj`7ejpg5fSUZrb=73i9&wn)xUCB2+b+v z-N>D#so6=^7UIp$1C-fjTP7+|)_qN4hZ;W9@$J9Kf&U147&N14=Zx+)O^>y)^+Tg& zXKR_#&64%Rs7GjR#~~6T%_#CQ1eE`><;;>Es}r@OdVtn96}?H{PG-V>uIpia}dm zGsd^$zOQU6{85;y`{^H{mdvblWajBL?a&#Wtpq*ojW|nc^6G4yUgQ@2&oAbBomUlE*ofi_{wZyM=>yb^ZGffy%AV z+si-Vl4)ers3FT{{ZE{wM0DicsJp)emfUt~cK#&jVHnGQwj1NtW~Z}wC-Ga9xa8>Z zmC5Mg9cx$d?L|@}cB~aOf!C(#)v!?D)Oi`de$>OdS1Z>h8}!zqSzA9E*Yb9lwCK%x z*3jGS92RYBMIt>8Cb59{fO@)fd*?WO+ZOEd`~0NdN7`DRzIwNejuvWaMJva|BKj_R zqb2N5cOJNeNlV_H)q38YjUSzz0k^%#(bsrc-9F4GTdONsSrQUaOUW&aE>tw5XXhX7 z$a{=Z)@&9mnz2Ed6pva8pWI#ncilQwzZ&klv(&V+ov6oP!bbBD;!&qHqnEb-ka+dp z<28L%e-XquLA8SgSIkCbs;}&&eCDs3wlSfx~&+UmB>nW-Z&KSqB>Dfy= zFp{2JJ?G_ZIN9MOp)WqIzr8lCQJwkwv}shV`f?i&ow#rb#bv|We-Y!?e z5VdT|z6o_z);F?>jrE~ND?YYBc~giSPC30o76I*LB%x+d|k$iZ7`Jb5&X#4P<_(qB2a^beeeUS3eom-hQ7Hf9Yj-X?U< z+OebRF2`mtF5E+PL^>fVR)rp~z;a_mSxe-L&)eOgbr>x>*s{2&^CX>2v}g?*t9ni< z`_jqwf;=3nP?v|!$n9~*@X|XAxxtDRVzuijmv%Nc#piKRS67L(6>DY| zcNCK2)`B;XVPLz-zjVIkbv9KBIK9j`uV+}!u-}|-ex{|&+b4+$?t4%mz`8YyORVjl zO2F(0%$vJYdFTs;$+gE1?ftrhTl*Eb_X)+TUK z4y(Cgg_qyuCB=oUW-W!R_dBxDFSaOdUObt8;NN<@cY z7(e-2=~9>L!#)GBq5iz9ct0#EscG6mjFVdPMk!-r`~fUQi_&j zq5;p!LJm!U6vN5jLUyj7^@}>s9zO22?LWijAT=t`ZP3W5x(jolJP}3v-QRYellp>J zGz}xx^u$j58nF!L9ddmjT!u=5TaTW}GSV^Bn(vj)S<%VAEFZVII^cEKdhM7fCvv_^ z&?)_=n6~s@k}}4L)Etn`ym&cCA}Pj}QYVNhbb>>2Uo;hBYX2fB((o>?Fl)U_M z(T&9e0x`J%!I*`W;3^lgY{fozHi(yla*?}V!`P*}#&gu!!Fy+>?rS*t&TV%3tN~*F zrkw1BM-OAd=wH38^3$MG9u4l`E0miz^=^5m^3j?0S?$b)9$1oYf4R&=YO1!1J1#D> zzDrI=#ZZQ0{=L;bUz$=oxRUU@hqyIt^P@1UsRbESS1%kZlN?!l)klVqa_G5U7UOyZ zyW5ItZB8EVIpgB-b8~keQHsrG(QanTV(Q{#^X`S2@QcEuca&S28P`nT(gm1YRK)LK z{x^2$6~56s7x72thuhSV9x|344s(Hl&Eu{8Vb6lf5D2`ClgB-Gd+%tg^F)pt8S4MJ zt%%KAmP}Z`tG1E0_pV&^DO)!gaF^mK$x@+qAo-+eUNl zH9bjDy3bxdbG_C2MA!`GNgmMXE;8@#nV5MIQeWpD$V2kWUVDG?2L0K~m^J+Bhc4U2 z9|b|&`n&tEoW4YLa9VoVn_*igq@8}+%QcqRa_G%#+q5piuT&bshgvJ< z(0S?}RG}59c^cYp<#AV!%A6XjwMa&i?irReVc0ldPXKL4(7)tHSAB+WxrWMF@JAZs zpwvQDX2rXDx#7B+&VHQznon%q`tU6du4sS`1WEWaikP+xr&WA>Yz|LxeHeT@f#o72;-ccDn0K5$W| zzcOFfdN|Q!ZQxzc+bEvIZzcnU{ZOU#3UUo=7UiVQ&EAhMIIi=8auF@xR~+z4=!fN+ z5c%q)wGf9-O7jIu1&{yx&qZF|E%=hA8$6{xl6W3UMOdk+L`qGM3HpAWV}e@P@Xc+H z8K%Er2PPDhiezM{$OG}Y2T^O-Fr3x;kucpD);d*}3y(2_nJm&6NFbni!`%jg)2 zPy($o$8^k69{N0Qe&vHAD-K?Ay>m^Amsw>L4V%x61qRT%^Cw^5L7SewC}Se+rL zJAGCyQ|2ZOX&||?uhZ8ea#c&TuBAPVl;Pe8LTYjNJcQca; zINW~`&p&U*=GD_1B$D}=mS3vpLVeInDKT=P;fT5Eb56SnfG zX}|{pE6&pzhcB-U%5fs6A5mv&`a1j@4)XLVq}FA=Onv(^tH%P)-FLw7g%#n!_TXGF zQX*M@ZSQ`5au3R#m*~F922R8&zpi%Y$oM07+=yWIrHJmk0=>tPKZ1@AExFX(7dVy=Ks{n6qi_+ zJwVI%6Z=Qb6g)}>nS|Y3xTWQbl^vV2Jg{klgRSD;-Sj}c0C=SNDdB-je}rW0mkXdy zq07S!A|+vr(}y@KiV~3Z|FUeB;a5Su>`%ZYO>1B1fCccAt=8?Xp7AX%4_14-XEzod z!u~nKiJZe+lHu^pk235pUVVP0F2A}b3H{u{#7hlS)*`!8Nb`H|Y^sqlpd!_ni4+&| z=?fQSof4a$in<&Wz{W|vfsR7?VI#Om%J^p#dxh5-+6%XE7+&Ncr6^?I@wJ}&+uCy# zuXxdmx-w2*BfMeLJ_UA;?NxE?{eC!$RW-+D3PPN$*RXO?>{&p;-rW*FvuNjR-uKl| zWd2$}iSRq*^&5+qJmSS=PZFZTIepijS6u#TEEua%F9Q}6Y8gO^$i z{;X!!@_=Gh>FW52q$Ex@^BU(EKEmB=`Xp&JbX>C0FzgVupm6aFcONKjK2EYcWLCLd zni{8009vG&Fw~IGy((*ilJ}q9j|yJy+5Vuj`DLoahE=Ykuy+>^C*3+G_Vr)GHWt#m}EW zUVD%SLTgVfdb{BULM+?^#j!-*pxRe^S8tUak1*6<&OFEo@QHJzAI5xtj4)`<_|);g zIW{Xv%t7oWrQa7Wt4u~CWC)2brw27Tso@Q?C+`l9SS1;7L+x=|^+HDiLa`RnTh|)W zKN1z+#$TqFv)KeI^yE-|*VEdgR$S_$%)271ijcFXST38+{a74!$&UkNxxxn_Kn@rk zB0nr~m~)@78Q0`h%^_9<3xG`AHk%ohw2^fnIC!h-q5I5xNAkXQ7^+>Gv<)e<-0NUy zu^c4CSy6!W!TK)BXKUR>94v9$94x_BXy`tj9yrJEXwK|g8>k?&-AQ4mgkB+_uTc*> zbeIS8J6?^O)AGp+jq-n_b_HfcPCu&4x{bqz%ojZ(G0s8v#7D80&3i)hzX{;;LV;9s zF$lrQ`yrsf8}f4^rKN}_hZyo!(NBO6)y06yoeU- zd&Q&u^zvG84v1s6+HI;T{q>%$&F>4&2Lk`7);`d1@60oXDxM-xpgb zzaw^N*U=&W?gLb5JSpXkhXz37HV(5~gtOxrX#W;NR`on4XW}&DlrTW)g!IF0bIud) zp}fnprzFbMUvZ}A;qX1(@XBBb-re%+E;c7;9u*t591zvBptw>w5%TG)_)OOMyti(; zc;99@F#lz8<(S-OllC;;UL&P z_Q$msFKloji&`bI6@BoePUJ;ApRW_4VbRpbx<9KY9!}7V}37NIT^u4|i%q+Uuai}mC#~mtn{5?_X&hNAb z^lL@O8HokTU^hb(fhl!xt-f<{Vl&;Iy6M69dLho3JkwP&p?&2Mz3XZg+1NMcYIo0N z_{i1Gq_3JUY}}&ESL(!_sFTDrl2e4YDym|!GSI&YDjYg7moC5a12wS!bQdkKm^m}- z4zUR1AX~b+9IwucHMqd69B9nPeC<$y17182C4E67FYW3scY{lu1?3eq&a&;N9>uqD z+^d?C#G@r{!X=d`vSWMzLLuQr^FM0_I&~fD#ZFUy&tU-Zts3fa*fyOMbIMKjm*Jnb zo_u4X5-VU?`>(EmC<}KFZFa!UShqhwpX+~OFcJ+>A?{FFmuI@tNfv7NT@Qzpz{{@x ziB;#-xo^8!m3U}YGFoXlrfFQhBP|b?*d)Z7c9bn_P7+5=n-6 zySbU~g1PyxDKX?G4nO4?@EHkqa*@SeMoO{_d3lZ(d1EtZGtpEUe2RMTF=ezR3adCT zgcdBTJ5XF`S@ndSUTT0aeh&AcX91E#_;RjT2iEX|yU#C`hcDgV?+hok(7rl|WdD+F z)u7CMd?_gN<+P_2KUrXQWy!L%w&DP2>}UI*IOj`l3?Ae~mJv9@6^D%;f!u7SY_^w_ zN?wQu9hP+ACLbpRw+hxg9{zTcQmnO9BknFVwv5eTX<%K3{-+ONa>jfr_h5V8T$%BM$ za>y9zg7xwCP*|0zEy(3vyF50u-zO!C4b)1*__VBd4&LRY(F5nh+5j`JOoR`eJou@j z`RIQJPFQt|@ZzY@{J?()HNRE*P7FL!=zV{I6FD=>X<+RGBbO80j_!8LTwky3>31ji z$qQSNwRV&@mz=lvf#RR_x?5&B%`}{!OndTAgkVX?q-a*d1JFs=&(~#%y=XHKLF@5$ zKD2ux9x4ifjgAW{5G|3#M3gwq_KBk6p>RX3N{{jfrFr=%)^^_#3U88{fql~cHaXFx z>LGfdgBHq<7EFHekXWexG7q{G{Hv8VcTBS#&v{;C%vMlT(n7)RWy7u7@3~|E#lfkV zn03f3{GImSirIYf^j(Q(aq6V2jO*|1!bkpm;a=%{QHfelJE5*;*rHOo@=*>{oDbh- zzmg7tzA(PkRD3HmtUhQ(lDn^72DuQLCYC?lc7c~#1QVGx5gF&X=Px&H)zZ9)Nu|o0 z@CWguotq}Vw7OgIt}c{!ug-fPi3~`IQ(p~StG`|BMANin11bXQ{nam5b4#lLCR6&J zK*WcKG=AE8^^Ml)pVxj+H|bwP<}!w89d6%jsM9}bi(#}4lRw<%jHvp>JXc$u{E=1- zSRo{bhvijh~}8=tw*Z=m(+`(BAwBUPk;t7Mpt%M7N(X zWOekHq9bqrC+@8oySAWw9B;C6SDX8%rS!yr+gl~hq*Be;u%#(mzcmxB#di%5DMpc; z6Q_UX0?{N`0QS9(3!D$NYbcdEy<3r^($?X|eK+Z%?RoJ{+1hs2{%H9fRG}diYMD;aX+LzVxVbU5aN=CdVer|wu=5+xuQ;h3 zb1T&I#WBLnd8luvzLb#-J3b?b*3^Z;>j$jc^wDSgp7^JY8@l5N#SsmKDoL2&=Lk|{ zS-HO~wXR?gAA;cla% zpx)1y_;LE2f<^GP88lK%^Ii~X$d@QKP=Uq1oMP!?4pC_**~fFd<@%NJnLd^irqNai z@P~}IOJZXpY`YZOYW0J(DLOW+Z)FQ4MegO!!{74SBi|$!{x0{1eNY4PP^8w6dm?2I zHo2`kC2kTbdEU+bTNlEC@s^v0G@vWQcJ*ycvRFBmG62e z)HgX+BWaxT427Cj6w1GjC zPoHXSDv#TX!H8y-uTZkwlyXZEW2{6vVnl=6-urysBkWZFooEqoYMUieA1+!fy9#n5 zOYmPFUjo#$UKJ~cj!(PiuUMNCMye&YDvP2Xfd;ASAY}oajzf6%OM(v^kg5<3;qVIIhj9^JTjWP85{MU#y*&jr*k7x4*A>V0qs*6`{6u*9 zWb(E=a0C?zI_h;Hh~Lc_B<9qW5T)astglVPnm|5uzMc>o!R);>xpo_eK}JV#Y$Sav z>}lPqp0N=l{FL!(dI!XEXLjXV2=U#$JGH(@*G72Z#_7NCkF>xoLWI!8dnYneT?a@I zA5@0)o^UG!KSm(7F6*Xd{r2?2Vd9rX2l)HbJ1O{k}#(!g}5df7trPpN|9K*+bHPoU6@}76Xj?RNy z1$mY9`851Qe4O~EW6i+GwM!Hg zrj{5f4)=Y)qRMmXikFX%tAp5PrB}t&?QDg<(ABnh%o|XKaK#GCM{d^F!%Fdh)gdNBUaO`XwKO=)*_DKf$NuF~^%H+E#iIMo zLCHucxo1DR^azT$!IFy6q4sG{bA-V?Y;KuqSlce3f!mCgzn=c0%#T*1E`Gl!ECR5F z?xw-%^wh2Iw{gaFxX4$8jKoFp=`3l9HpNQ{AHuwF*sb5!NfCUp8CsVrrQn0=)-|c= zd|d{~rK2KfM=Js(Ggh!J(Us&lb$*vCU>ro9?f}N(v(V15TwMgiA&}(@&N)+WxXJ_! z#pVs*R~E}_dR$9q^Z6@ltfqdPdajqsxL)6ChLar0`D$?Qq+OJD(r!6=yD+CXN@z1+ ze(&$h=jXDB*~JQGZK)Ye++PiHD5kiH#UGDEWWQUrG;EGtR`#EkwwqO~wOfwpl$O_l z8Op=~iDA@$n3C#@1&7l)GaLB4&oThqM}`?~tw~CDgHM@PC+xKmwp+MqA~op?5VI2| z26*_So<_w+oqugKd!Da9FvT@4LdT>E5Mt(PqM;AeuCxeI@Gl3$H4nhmfoH}EY@)omA?EQfduSLpUvAq*=fmg@*#93P}OD=ZU zUN95DRy^u%@;}+~Pgs9cL7O}D`$HPkc{u!v`2Cum0Cbw|W*TfBk~!eD?&XS`_JX`r z8_Tmw+5ZAv21_yMO~}awrSN&g>*H##!AfO5>ZYE(*W6{ml#-ev+mA~OJr>56LgTKg z+)HtCn*~5U(K&0q{*3?4H|Uf<;FqNQ0T{@eA;LMt{_3O`;zc4HNLk?5EnNFPs1erH z%_=?M@45YrEtc=)#MGrLMSqyA2tLk@^oFWgaoE!*5D(~zY|vIHT9M{54Nh@=QhT27 ztiy;()FEV1;XvfE*i$@9vd8jT&X){2b!2^r@D|W(Y0H?9_{1&(Xek=jaJoI}X-&_R z=yVWA#k3}ieRH)}OC|RyP{~zwwVUSUk7HB`%UK66{Egb6}M(yqGV9UvcvcL4ld*@?a+KM=s z+e}3a24W`{z@KI*~7CQsx#&T+!uQ&v?v1ZE^idzZ@nd`+ncq-JcwoR1JMwS1ki??)Ji@!!@a*3sya z|Ar!jR>Nkzoj7-py==$;|30Sn4lWnR5{}O^6kM$@0#eW9ix8IjgxtZXJ1aegBolR@ zSEh3VHaszC94j3@7%}ID%oPjBzOQx#kyTq^=m5AA<3pDLFUR*e9kAdiPEt(MZ#hqB zMrJB~$owqWzMTegR64k~P>G)$-gDc=^mCmi;6693QIpT>EY_IU9Dd7uclU<%ldav4 zbI*0hOuW|#s4|J-(i!7272-_;9R)F2TUnS`F)Xltjy_y_?IuL>H%pizdAB&mfDn&f zdo!m!$?lWlnh^5#QOeU{WVidAou{xs1CXRDEk5@1PRcbcgMCg66?2?AP3XTj!zpA2wrF8PhJMAd*!w>FTRDmh?e0Py<-AHlj!|Cg%L9AOpCw5NGU1I~R zq(1hgtdzsN!`zQEKI$eSePCYI9n*{-R#?A1cdnN9#%nz9_i*eZkSnF|-eHdFv=RsJ z7WcHJ`;veJjAj%0#75-6&ZAa|l_q_=QnC^sTSN!j9e%Ri#MC=Q)~%j*2-293;$ zYoxnm5s)a@1%z{C3oc>fp9S;+4C}5| zr%jIjFM!rj`{uKkl5xe!CcNY)wEYI`j%^QrMK(k>q*{=Rf0fS7lv! zP7nn4Oo`4HR-DIiVNR+iI_+{LgsxYw#*vlzrS(c2c3SwT^v9{tFP(R(C+rf(uXwJ^L7TmGNE4ts^3beS;;x)W2p|h%XK#X}^~+A8elxiv%myZb_(fVEs9NvMX4Su1 z-MKCdK3XXwfvziw!Sofo7KDBFgxG;$?NG#p{a{@(y@P{SgUyS-``5n>^4xC<?Yrx}GZ+>;p6E0RzF|lMJMZUw`OYzDbDe4x>1wyLKhqscR!*!Dlt3Hw z=j(PesdF_8Pb>(-y8UO#tVR~wvAimAzOzt7oo&7 zSRFQ521=27UzE1!tyR0g$FXxx33Vbu#`??NIWe}qb(XL&%TIHPefG~=fxHrj!k(mc zT&;Uq-Q%m<5ElBMF5{kH{~m}ppzZ8NY=hF+!0afF!IHSx0+END^tDw%t%K>gK)M$y z$#CTWd>3T&8)HXYN~(01fe0na;&$Fz-cyr4IWQ~Aq?mo`c-!RQtuY>e%qcy)pq5x_ zd=rcUgE8m+6&isP4aym32Q29Jxj}sluDxG1LDr*plmohC3jnH4j@W7E3H1?QN$-Y- zcY)eFbkb%1pkbEhsDr(?6xBqQsx8j{0779Dw4G`~b6b~TIVFsEBAv{<)iA_OQplc| zx4$;kVG1UrT_N)&hCLB(T%O=-PL1nE8fmnHFTt8>P~(X;e*HfAt_R=y(P#{F`fUx~ ziZbe;Ra|L4-CA#KV;@9N`OZdsf_E8;_{_p74Q>fsAhG64knfG_9s}XjmUOx;04^`) z6(7q7KvjhC$+Y7@K5As>Pt0$PwS5%@AeFixUR*KjT7@0S|-))@d`CinGA&6h^Nq zthdJlKUL-ZW}Qx<7zGv=(j2B9LO*u~>0wCXgvRWtD}4KNY$Ci3k!{O57mD+yff(k8 zn{Xs$D}!-v=B%f)l)V1zH}>B(pMb(ZZ8k}oepE&=_1>8luh&T&tSW`{WPV@csuY2j zp5F{dPb?0b$9V&m1@+5d%uweQ@t~TX!QfnHFk8mf23<<*3WVrhIjL*@*|n>yinXs$ zg_iCS%eP6d#Pi0W;o(KMLODhU=

=^Ls$DIz6|zPD33Y0(!YwoXUKy%||#m0RU8* zFY`|bgSKVStx`d+gBz4X3%2v8PwqQ!)pB6IXC}t9E)me5^STP5 z*64|tx`jTPv;?@pN2}@!$Pg0tzc7yS1^06Z36G z{u$C3JC-g#EX@W+pX&4d?7ZlaDMg^!8@p@y-s4@@?#bK-4K?_do1bSI=@~l7Ohy_@ zJnU2T|6Ksxm+Htx*Pu|M0dI`<8BC_YUnaAbQ9Fk*2ii}v3iesp)2VwRB?2ngh0>~I z4{5C~AlXps>YmKx-D-YBLxLillM}`_FBc6}zZYw5p`@z|cdvnui_JKKn1o6Xo5P&Q z(2vt@j(*0PyJ8v8cx;yst8-FIT9w8A7dQpy+?R~#cm$N~4_qXZ$zSNz4f526@QmI0 zmek;C?kO-SK-ruKTXFCTmVd2zsZyHUhQ0y6GBJM(XCC4mH}s?9?(cX2@)08;J{rXu zBkLG@Z&laT&r8=<`mGX|(cfv>lv_AslC4*|5Fj3)$)syAd3TpxhZh2>op8xy z8{O5i;`h25SR7%NUXreM$q;?6F>u9>sk+KT1XWb zvP%Te<}#A31CIh7THqA6qazyG-D81X%s+rNym~HRFMzAfM1C3Bk;>1&-xm1MMPjYb zTU^!l{7ydc`VIld0 z^(ECkx5*#e$WxERLPcj#DBXb(&VnoerZnuD?2pA8L2NiCn zNsMXN7K+Dty847G@Xtbuh2`oe-A^^j;^Zp=T2~cxxLSXTLWg1XxF9*@4=_L`!h(_y zC4e78-GpD$dCTvb1Ey@~u*%JRy3n!Rz!0bo?KB;v1HOumM8%cu+!OHwYU|{d?c}W5 zXNhT5`ppRxd{?tPRZ;<@>Z&iu;^z96!&K&s`r~~x20Fjsa1I*@5P7How3I}d9RaVbE1udLLq z^_jh<@h{ko$U^Wbk>+-Y5m>^9)cf9bfV#p;>hO=~u*X9_po(7RNB5bt7dk+f8+HH8 zoQxJtS@4hlq%I2Gj*Xdz%=(~%x1rdK-{*$2he^sT_7W+ETw@m`I`^*LdPodxx5u&p zCBv&a=4HQO3?fFI9{BB|27EzN;sMXHWQ#Tft^aK?ue)FxhC{mR5EDb+j6(t#65h{J z_WG53a_da3L}pjgDsXM=@^^XZ)-jI8V}SNPK?Lq z6h3k^0SHhQHBY@*Mb>R@QGqM3)>0O=jq;Rk;gF=UBo*z4+>zEea2B8m_X>djnV%*K}1P8;jqn=S}TYWYoW=+d8_>sBS2|@|HJue{=cN4f3 z8A9ZaWKK_OpKQWsF@RyP3tqvGtFuh)y;0$>3RpJe5b?w*AVdiO5V#gzTaBGltWC6~ zQ|Cr?BEES5BV8052^sDb@(e(+5*MKo+I=TU@l|DL#Dn5 z>r zeBWH__IQ&`8fZ{jo7RNjen!+GVhhA3U-205VY~o@CcVm0GRaf9SbyPL-q)rs<|!xg zmP{@3vym3sriLhTde{N-(rOuMeUiM;3MQoe6XE?b|7cxIyvDQYS6*KthH*Ij(C|it z_YK;t~&D&`DnX z;VmxeOud`#-0zp4qffo%fHWn!Q>Yol@Xt#SIf;Bj6WNgV z1J@aTt*xfWmD1$-*Rbu8xG}rIMeW8WmZpYGIJbTl%OBcHy*%|H%ekSZhaDYO!%-Rh zBPk#Z8d+HCH*hA!tW~al2VJXJp_D3 zGo9L3NerDNyAzOqra21UXkG^-ug%yWnZ~2OJmGgVK{n?jB=E&4myByypcVmleM5Be zv2TRx^1b*dJ2|jw^_3OY(zTGc<5e8HKe>8?Pu7_L_z6{u!kVp2Qv>`Y`poiRs)C11 z&WMAz4B{HoHQ6$Nf zNdmnGIoX^R^CG71@_AJ=ugYLSk&lj0`(|x>Dr!AQ1+z?dzoz|>fe;Frq&GiSx;K&m ztb92X#uxkrEWrh|Cezf3PM@O)&<}O{+}?C)6nB-{=j_(!*Oi$Ehn9rMy;)W2FgPmV z=ZqlaIrF4a;Yy?w@CJQ$O{5lY|b)P zw?FWSb@eYW=g(Zx)*Z(8y%lg4H~_SbzNA#ao%XNuc)p06nNmTS-4 zH1)obx0&C@%9)T8>wnB{2ia2c8#)&8z;sVeRHdiUz88w^>Hsziuq>Bcgh7svDrcxZ z?yup_%eV5?oH-vropEVi&}Z!PeuWmRIIDDd6Y=z#o_KP%<$RO8QR09GB#G{9bn!g| zx*ypL@p0tMH4;P+_k zpWqA8P~zRs8P|3PpO%j=bS!}OlrFBCzCNj%0)cUL%JtPJYqjrypC-97P#~1&&gZkc zDz`H){!*SQKx2`I#+z16WVL_X6$LtsOS}KHOmd&Sx3Nwez9GMM_P{-V$nNWeeRc+3 zo*J`;SzXd^-YI!?DLGRR;<=1L2bIszI5TaH^&x%Bqkxzx*bm5t5OAJo#3=64vbTkk zejlRfAWG}c-o1sW3&WILE(ich<&)k9H>A@&F4Wwl?+YX!^ft1%iQ2 zgp`&|Ho(y!zA*css{mG0KU%|FBiJaeuDForvX>!Tw*e}yt729o9F_nmk53AWbG{$E zseY5ezD7?YLR5cBSz5X^^K4K+zcO{aBR9_ZNpCb?pV&X2!Fn9)`oX zM?SWImuoiHokR=u68mlBv)VcNeZ(D&Mgu=$(}+YH|NIAZ$09?_!7I!37jd?Ir%MCi zBF~`#NHgWigbiQQLI=ndzF42~6(?c9LuC2}(<(%UcS(HX^x3B>_?_FYq!U%3%;k9> z`k#Mw2`CLZ-ETW}#x^0V_yQ4IEO`fN?>h zcS^KV0b76n@Apirk97Nh3eec=Hd9-d2!@9sJ`tzxEq@LL@)5~>XjBA?dfF7lAQvL} z=Io5}lVifuTgfY+PW?hyf8f0~2K(m~fc~ZuO zOE4MoptYRqp8-j6@}-<5mGHn_SuC{gExth^f~UdzM5{hlO=06R z@EXn43m6i>0u)enC*(B%TCPYzF~c~&2${^ zYU}X9!aSf@EV1GHT9J`R=#Qm@>g`+{Ah*Co+fdzE%|nJ_9Gjzs^-2C|c=oRb3TT1P z4M%VHAi*0QV8|MEu9bX>j#cmP4edWlfJ8LFH*BL^*A#yrgDiHPnTtQz|6;;fv@EGZ zJl4g4`SYHCL2*HMk za@5UnK}veqh;6>uYSf_DCS~gaDj>8W%l_mRe9pAKq z+;&ca{%gCEgGG98^DI8z0~Dd;X59vbd;5q6PPoao!0h*eE&D-K@7cUQIr}uNk)~LC z16?SlqdW2d;KIRc!vdpM`9Sf;@wl&J1d5KGKMZhMXH((3A?J?c8o)w9Px8J{twOLDn55*IS-GN+Q4}t73WE_G2&Ag;oJG9he zE?Y@=VSAae7Z|(h*W$fWG4=OjbW4_}ZyNq^V)kKAG3Z7ess~f>v16Kk;?6{K^0nB{2+ve~-RCy-v zr^W*9T3Sx>mqzmjd#LQ}L7SfY&E?tK-P3#*_EAA+cZAp&Mzi_z2pbo+67iztkpV9l zI0TcL>s|_d8hN8lziSW>qFVuuACxkQcCX&3P;qisDdW>ylJ?}?mgnn0k0^hUJnaE1 zS?Xz4)f-y8>NUjmS1Z2sR;kt#m``2X;^xX$*bfuQ(4!yKFQ=LhXc+S9sPfMMrCC6^ z#rmMf0b21=Pa&gdMeGtV(EyxSmuNn532|u(3>S+nc~-{2!2l=epdT)+yXa5P1iKf_ z%LjV*65RK8KH=dIA!5!BTLIVTLhOvST@`{n2t!rvu6L2TfHQPn%_b6U`GTM+&@eUi zs1nc+hCjRrQ6g3$cemAXdx^FLo_yg7`n8E)A=qXkmZ5Z^H8pNcU89oeC=7IbNNR3Q z8TSCs$ZnGrP%hvC!Pnu?&Sy2{V&lR{S*zBCP%$y+{i05Rv6Ki%)ALtp zE%Oz#ivABnw*<+&oipooeHzFAd>4W|brtCuzv>2)ahNP*Km{tir}^-%Hg0@6{ixEa zDqXp7d|p)e!EC%6`W%V+Ngv{uIk|{wi&=pSKry^k=3ep2!e4ylTrH}mtJ9M>vDX(& zIl;pgo5r5A>OwyS$^D}hK^vm@$+993h_6Jc8^vsts3Sp^WC%vd(iAA2x zL13Z8 zL*S%hRP7*e0I*V;FoC6|$i~v8BbqR_&GWrXhHu00-N)|U#t3$FIlYN%)E|0DWbdWY zVeYCMyEedhGp$eIR*g)99#Rb%f9l|eo?H}$v*8C{DQ`&c+FizTi{<<_k2#vhA^DdJ zYEl4|1!gsxiJZwAFwI$@Gbsi1g1>Sl+ZVIT)fF)@QSa#htw1|TS|!HKrQ87iF+aKrNv%FDkE}=^F1j6>)^<)166|R@ zsZHu_23ng>Rd{-juxtz14j8)zwV&ejY|ZgS%!|=qAimzcCAAAne2 zhk2RmS5L;otR1BUCsV~2vjC$3kFvZ~Eo68*fo!P5`Ju1*y7P7{^t^Y~q;!ts0-$wX z;O+U1!U)lnU5c_C^AdW5ohO0qJ~b!H3nsgMy@T~IuZ|ip@;6F;^?L9-&`2PwyUqB% zaHfG{wF%JED+6X3>pIkOcOM?`OuF8KQ>a7B3;6VsyV;hDY9da=?8++bgURl@)3e+} z|3fx6fEygV6U@CODI0MpCPtjMJ<);=st_no9ULP|6vbNF=Psu+;qStXr9{8M0(9%S z&nqyw4ns>OaS^+BYYu8*<2sCSYab`;194I)LXoN;<*@uVDf-T5Pe71c8>(QaURAbT zhFyXGV&dus*#w7iHH$oE?v&jZ*Vh|KFnwwjmBGnGqsX_9=Nu7z-W$&N`P~~GckF=K$0q5Q--|=v>%`z4rCoHoTdV+u(xf!CReMHaQ~z$%T}Z5 z7ADl*N{5pw`#pGe?2H&s3`jbVw1r1J!+XK({TOw*nxeB>jRUz-4NUSEm(twD9lVY8 zj6cgG9SE}E$=D@w9pOJCj%Hvb4c5J6j4fC);-PyPpv*-kW-j%v^lTgDUPhRnj0}QC(^oz5>@6wEhAOi=RXmNN%v7 z;zbsaj$q%1y@aZV2YTnsno&p(Coi(3^LghBjlU$p2k}3hePviwQMk2=hysErA+3az zbPpw6QU)C&Eer@l4u1Huqe`t38`cU#l-wAC-WCHkUpt9M0B{88vgUTpZXCqWf*DV1J1mHwGZt!`G;|#>DeQWMXQ=rA z7sYx{L7tKlu$G(4WQA`=m@a2gUz#0kiDg9sX3VGTC3|y+7?EvI8wuWPo^sO;Fc5;G zJ_BX1^6uC25!*AK;~(kbGv)43s?6jdc_?f`1Hxhho-o*1KMv?gKa7rE$ZveFi8gM; zH~Qu_AHcTqr1}0E`O+X&zaKzn?~&a!4***XHi^WQZBicw?2rh5g%kC{a?wDLtToQA zJ}V1T*e$6Xk=_p5hwY^U%_OMgP%R+|C|!sS%HXM{w|x~L{aXBc%Z9v_5jnJjQ3QXhj= zJlZWBt+S4or`-f4-uFPu@)iStwGvOoXb!z2bHds$4%SLOq1Gj9!T>Xp+yx=<$^8IO z8U)Euy|$*9oofS|Fd}r5fyDhYH*D*O?C>092)}9EZ#?J$}Dh z477X(WpQ|P^bhgH_;U2}lwGQtz5tv`K19xARa`ptRCGz^d4q%ZH_?_!NNZERn;H1e zZb1NTJESY1n&;+G0s&idx-mJQ0dzZvT#&b)j)#&;m!meR(S0!8QZvwWVMEqdLSE3v zCr3`#IcIit7Rn^5jBhoJwxluV}^>(_$5BzYMC+ep^SV<~P z3m&8O!GT_GNrpX+MaT_+2q@Z)m5;ocHQ4>4oyN=biw+CQ!b_GPhOL-%gIX@bMW>pk zD{J!xM4v(lbVB+k@x*$?f>sxhssTJ0#oAB>u6Ur}Z6MN7dk!KiWBD`u5t9J7&9&Fc zlxB_m(Afs=t=oF%hipsW`ZyQus3i`7Urf;TVy5Y4Q^(M0EbM0%quo4)q2Fh(rWVve zgPewQylF^IL_gaH8i#7eAv^#mc*6GzPDN(hrPBgW%?6PNit_+2MY@hRjq9v)uit=L z3q5Z8dBDpcH`I1)IvcuwyWtO^i{2Ih`1r7PNzJ|hks0`mwro?_h#BQIDo5TdrrHxH z#xMHIf`cNGhmZPauR|A*%=yDh*B0>S>{J`7IT3v_eyp86ER@&oEqrW_U4crU!6eD9c>Z?N~czAC+KIzqvkrm zGqClt9TiT)u`0yCSkd~Vf73Ivx~rR~>H`De;OX`|(p3h7WXLFa(rqH(ob5p~zLmwS z%=!a&#_+&nK|Rh~r-;Z7O3o+VJckKQ4>^A)Q4*pyx^+^+VXfWVl>e>@#X}D!x&Znk zK3ZpedFMA34(LXlpRGQ2lK_ISF>b;!r40Dj`<4)7rtYT1xd1Uk)=tjEs(XJRpj)8r zWw3{yW9>o{Z<63uaIHx6$MAP|0pxZbTbwgAHS>9P5JOt3f}aeV8ogQ0im#$pdCR>u z{|;(#AfjuXc;1sVr4C6`p3ZRH^HW8;4q!T?3lf#SiLD`P1Aa}-XevQrcZA;A4CoJjZ?@s|xl!xPj$FyULJmw+Woebwfli4f1!@n5)jM8}( zqPYbZFGNE0$YMSF-xGilA?C$-+Ayp%?ZTCS}xRfV0je;t*VWJ6qLJ%d__%8e6kI$QQ;Qv zuX$k4vCuEJQv|lzrP(U@UW#n5$Rluw#lHy)j)y>I2=rTkeQx!ah|xj-SsToYV9NXC0?5vWeN}dFlNkDN zu+gEq$lQ)$!*xa_%m21!T4vH2YdR?U$$wYMAp1&U3j)NcjCf46jhb0jB#S6~`7!%a z`}7SA2Wn^~dk613)OSRzmL5I6oo@{MCMILh6}4jE;9_tFKQJo!REkW;4ve|(^QB_8-;cF^^2X24dSr}*BilXeu z7uw+g4)?1M86YrbyLjjbljq4)!U$v@?&T>ONwIC-k;6&RI-8i^aQRMR4O_|HJe@KUV)lbk`XGG~wiWT0M)`p1rAH@eq7-&(ZV0olPItLV@ z{UwOsKw+!YU_tZ19SGI)Ez&e$TDKa1Vqnf*yw;^|sZW-%-K4rbii}po5P;}dTxJpC z99{vC_W=v#M?-X++YDCg#PSk@C7#vZ1WlfO9)1s{K$Z-vEC7 zc0w@`-yjfy2*J8S+i?UjXV|0dnv5c&jCH^-$w%znUrK*EA>4ikGo@ONd~hLRUR7$Y z({5Il5f$h)Q*Y7Lx1=(_ck9vC2x;xTc)olGbRIEUTTFUT zpd;ODeh@<@stxeSKF1lZ1Y*p9BT5P#ICrR}&uM1zo|-KEQ>ZD6INvP=bx7(^JKsrXq!)=o4Tb!j6*2?FE^+*L*XF%Uccf>&13aNCz9M z@)Hm*^&0Fd2asucHgz8`Q}JgbP{MeJtBt9yzqNn700nx){uX@RHTVJ5Y~cFOYn89uA97MOvDHiKb=hlLt=0YKo}b`OPTyD9Bu$=)+LX^K+SAx zkWrf#C+T#@51IVytjU~DRg#rLsg+C4P~h#zYnblFp=QDR(3S^Z!L;L3!AYZLPingc zo<~i($3wPIAT+!|axSV)nI`yDy$}L=eDt%Kg(u>`T3$xZElKv{w$w^`c^;e>*hi*ZC-7ifU-yk zf^(v0Ixxa`c*D}RM|BtuRDOSJvO~u+l=%P#)neprAwAGIO@~2{RWy;UoJCe3%odMA z7ZZ8hKdG7O^}5u8*kjPOUNdtjnD5J{uoPFt@8mt_=HTmDAbPl-=Q5k_Fj8+FK?A@r zd?$ulji(sFJ6uYh`jQ&o=8MjK0HurXktAlnGGQe|QL~$Py{_}~A=r5BcX~8PhU?$- z9Y}xS{)-Xcke`(Vhd`kT^%%D%WvVD^b=?+HvGmI2>q$Kq2%|{42XbC&>9){f!qlE@r!Q?n9Jf#_+)HbBS{gcf(6amG9HE z6GuWbs}Y$4Z)JgN{WD4^QacsyHLxRfe?nb6q!ivM2$7+uHg6qGD;^+I{EtIFn1l{6 zrrl=4G+$I-c;Cll_(RXDltwo01#VQ!?9n!B9Gj&0JCAxrwFDBeff-*bU|{rP4!chi zP*%Nf*mx-Gl~9^uRzd`E+6E#`6kxGVvstSDmW}1IEH!zr4({VByQo1}np4EXE>~%Y zG@&;&s_HO#4LD~lGp{@#Jb2)ZJcwvwV*365CLzistotbP()&erAk>d`Gvd_O1w^#C zaE`Jyr`@(@SjkmDhldKu=80M@vtCaZ2pZyhRMk<8{>b&z`W+}@2!Ep0!9=8$Pg9dy zuevb-4itY1QTyR!u-pE0d;%!MDfjBY-j%h7(Fc}INVx0w#nzK6s47j zf_$FATg;e7toReQf>j0=*|c$t>6*e|z277QR2{wp<|{O=lg~UQTX?j4S1ue8_n}?ik;!vqC zs5c%2Bv9^v|)3<0TtJ}1JeEJidV8Isf> zMx*r~GHG`Ju~}NcMs{l@$xA9g=+BsCTl)Ia1JroC&pI`_AY@P#Hq|Yc{gylf0yhzy zN+NpuDOaI&{V_6J`v;G>^!b>lV=u|4O5+=A(0&7_oVx4m@4KdBxrCr)J1PE~bUXXu z*;+O{E%!e563t4Mf#ZbA*-_2ZJ07T8=dyCbX$>8Q@~qx*crzkl*D}!u+)OQ7o+^g; zB>xF{4C|Hxehc87sk3X?dOv{rP~wKF>8GWC{w4Ai81U*(v$$RD{mb0)ZO9%{Z6)mY z`WYZjjW^}F;~*WOh02fG%1Tr-EzSgEsyf^+q@=7Q(anuVfYHmMxO;Wp0&~ptj5#GE zPSL2YpU{BN&JCFTkOGj68$$TW)XZ6k6ajE&S=^ehc_8#LIgn;ik6CV=Oi&yIOU5yQ zsL(NMw6Z0VlqFErofoz)`~5LK$bV3C&WTJIy<51Ww{)j?G7xe;ZidP~P--)|m4x|g zPSgw=*Qg0>HBm>jb6~RYcJksC#(N;kSXZ4T#}G@zH=jCBG0nvOTT*0cl%}riQ1QE% z-1Xc6FWg`J(Rr2selxXTTKnv;=G)*pYn<@r@E~WHYU;w+_D2+;8C0#&eRe&%ykY@t z^4Y3hw%OQe@f5W451Q|8Hs=Pw%ZebnM7(2_J(aU;S}t%S8OKXj1&0CI4cr`LCj@{A_yBGT zU3EIDr@Q-o6*|&f498J>9f2q$^kCcE`N>d%;Jf>8E1+-Hh|&l3j1p|M{9tGj?6rP} z)rx^<3v3O)%(F_AQfCB<4p(hGKn|;$e?fA1{6wV$%bY6}W4OaP#=Cj|23A!z9v%7q+Jf>IX=fa&TLl!v95|Rj)FHS}QgIAF=BDO8@Cjhdvy7&{?^tb2) zQO02Q#|{YPhZma0&*I1gHeb23jMpzzB?vz~PlYJywy^K-phWvDfBTaj614k((*>_` z_lfHZm>Kr^GFNky)l@_UwNCP=qW8Vor^9=w`~OC=Wm9HSBWly_6dVR-16o(+1$=lL%o>oJJ+Pq>QGO7I{V&gP z1(PuVuDklBKr&z_(=Z{;M%JT{0K)OE{VaFYMB(*tI>H@-GdY#3=d z7Ex{p#1MIuz6-1|IQ4oyAts!L=R%CZ&b4UoamT1QfC)%@j!?BA@;=g|oAqWIe>Z`;OYR^2Z#FrK7osmxVq3_Q z=}n%kFxT`z{QAl0!3uV^$5kX-q6C#8W9&Sb`p&LIWuiA5a$L(}0UTh4_AN*goyI(E z5Q1URA|;T@PRFtTvA_JfO)0Dc7MYy;PBeL*pp1GRwAjyaXKX5-Cj*W?e7%23ag&A| zvtOQs=$h)OYFiq)*)5A{m|#?SMF5^9E5>(go0}1>;%x42Tw#5clk)fN+NyzrRrk~~QpDOb{Z983#K|a0SHgyn+pGw;%t@X6 z{pQPJJa#UYIAf4)` zNDlkn$w8w#xNg&JoHY4EUi$-Pua}jUb1(uzy74(7{JG*GV1|NGJGZQ?zuyLAvHbpN zDLmNu$ODROt-C0FvG@v|7m)fl-DpmDgNh@9oez5UWwG7GJ1rpmWYr|*l&Ubjfq={I zs!!d|y80o_XH~Ko%gJZi08c<*r)eH^iiqCW0w#`!CM&+>7>gb)L4%Ch{uPE{02ByP zcbz(GoOS+-N=u6~Gs;CPEkY0&+w{AdG0(yPq7hcBH^Nc|@LJls!Odm>$Q`n93Ow5_ z+1P?8=Ntp2#8k%MX&R+D(q;7Gwj8zr@_#YX0>aT4$F!#D(cNMdpF2giaJr4jAY<{W zOAh)ueL#>r6B6ta1fo0)>lZ%f;oUZx2h>~XwZhf5*~U%;0F|$aws}Ag0+AFU?R@HF zIwYdbdrB6P?E9V914JwW1eN{Q%Bz^o5ru#H#PHyT06=fi^Rj3qm(gF65U^%D>@3p@ z$r{y%?b}n^e?queU%tu0aD}ZAD;`ED`vH}sQ(y)1J)n+($?_?cHtSe&jxQUlAPCib zAnwVe;~R@!#p47VJb0{PyT_*V_8_~58npK!8l#ASeSaau;twy4tz%jE4fzh@IikT#bbD=KD6r_jig>`M+K)GDXl?o_e@nM^97 zizUs}6R0s9Y;)JB5wzRH)zGl1T@0fnqnC6h%?ViGO`-V8&<`a*B)gZ)dBj3n866Il zLC8o!e6;N5`IG5vEYKkoQ8SKBOX`xMjrHWQJuHteMAY3K8hhu?IH3nu|Cm_92)Wis zqb{4;O2+xNFr=cG6OktvAcDXowB&joSv!~EtqnE*#V&X9IfV#CQ$Rb+qhGLy-#Dd# zsAPkRcEr9ypoODQAgaLDEEs^%FwE-Ah887W&O<~(;}p#Xfo>WKC=GnBu);{Y2ae(N zVedC%+WH&_UU*r@`GyCxWPPfiHNpd(fi5}1^}{{zkW%tbX!rG=_n3#gHn|g-g|Z(i zNj_HVdVK_KX`UeZ2%2_AG)91f4PjM}yM;owvOxIx22o4sOFtd~26;A)>(_zpiW%%#5a=a={iY_iY7A|SnJeq=tY!>ai;t_yn!5L$Dqx(}pbCJ@H+fl@CJDU& z0kr>4$r$e&z9(ha?)3DhzDwLywK)S$wNt|M03!#<=wuaRMe(LGvq(qLwr$!H)JEHm z;y~3$GBk<+9E?|qjCz6kFdKM>e~>oHgNuQw1gdcCJM-_+02lH) zr}3F>kC=PZIsej>p0PE~EDw26Wbpu0S*y*)a91FIK8`aObyPdwBZZ_nMpKTd)LVD4 z6#)`lotUgsKz-bSslsQUJFax39|{K?M~t3U16@A2-R;;2r!wVT#&;%QxYnom1UjJ< z(GIYHi5VKdfM6n~wfG>pKz{?LXqo=%^I^?6j z0w~)~JeDnc@A4N|Qz~d!WGm>!1Ep)!oIj)%Snx<+bK=K{6Oy=v^WSO$E$uUPC}B+h5Z-MATKb+W>HLPU}Tf zSP$M5#7`KuClKDSfdj)`2v931Q7A)MSeBvDxhR6!70`wUwSN!AK1@QIa0#s5X#_+? zs2`Xz?uKx8qq#_!QJlDuF9!_rN6?~N{6Nxl6H#>FP zHnG=Latt8y1STOB96I0CaYT9>v6vvqgZA8MY}JaF!Wtk<@we_bwXPhQ}|*Tz>7 zdKQV4s;$uHh)aivuh!t@2m`~m&IK8w7=B8k?%U?KBpCpYNj6%B?G;>jqZX7S7({Mj zkB~GcwC)>IH~+0}`ZCQjU-a;$;xnzj4~sKI1e7KKi;&2rT)J6ptEG{(Y|}X89Pij| zqan=+8}Yt>_7s)*MtJEc%aZJKbl8K(~xF5!#ehsm=-mIe!B56kmpKO%IB& z1h|s6QXeTEW!lbg=Sbmf9oe3u34XltetjQ=9|tu%aL03>i58|PZ!R0o7eHP zlFyGE9d*{IrXtId>O9o{FjYwZ>a!5e8>2$XRdb}ItUtkoTedB~d6rz-4J)nO;r;o~ z+?ymYg@T!bG3$YFL~*n6Z2V@oq4>v{(q^M9laK@MlMxyTuq$$1Hs^D;Jbo=UrRd)m zx8f9Abwg|is85{D&c36HZFLG>Zb;;tEE0g%Bpl1YT>1oG_UAk%X;`56Bstfskq;d< z=J()dTkA6t)-v+P<6>*2pjN5k98aEA8LSw5>fbkpq*j~C)H9vi=Yw@+E!LlcuuSFj+GuAGX8yGoxu%xNsX2u_z$TIZe7@vv2T&E z7Fy^jHNVd8ViHtnr1N~HJP}T|#P))8X**P8gM*@v?`b1Xn%n1Olzk#@{8ZOkD0Vfr zY&dv>Kn!h&_O&iSu*aT1G;o!%Y-T1Gzn(2!JG|*}!vG0#%4+%vC(+bY z6`YjK5ub+1YI)L1)pbrIY)eohxtDFQwYHdrd-?Z${xPGct9!xrU_;u^?e7|89)SB) z{FP{DMSpNuJVhHFr)L9wl^!~+Am4Nu)+*I`(L9i&aT`R|IYrvTi{k#@xFlnhCsq2b zn@DPFm&}vkmP_{dG9+LB?h6vug^zfbe*B{DAatCh?0O?s(<{wgTlE4%HtY9k(AHGh z4`<^yVq9;;ly7KlILDDzD=fQG>mJfS#QC!*lxB%TUdsEAi<#Gs&|e&>rU9y4i)L)cE6k7WU$4 znbd-bbCxmT?R?K<8sJanfGUwPLy7JA9#f$aps<}y+}t)kc=1wioXt^W8|J$k3Ibmv z-C(3=QmkRtv;1}91h0;Z^vT2)kPj>=pRH|cUEHtvfu4mq;%oMy-B2`6xOkYE=*iXk z+Q!|VV0=?s#FU%q0hm}wy208{s(lG6=BzJL+KkjZv75j9#6HeE_HFo+cyQm|@j3VQ zjU{R9BR&IP8dFeNo%1ZXs=M-1zGw>Ud*c7y&cXz=_`MVoNB5kbS3e$SebGfZWUzPl z=q-g4MWJVwcwKHvY4gj%52|Y8+%7%f3e%!nHco$6r<&CS_H7={)3foLr*#3{?fFB` zUkI8!2|P3DG1eF9m*je;r{&a@f%xD!X;~a`sXy+-i8*GrRA#nd(s?FziHw%`5c@pC zEUcrMM_b!uhtbBkxFhHC-u76*3!gq9H=cM8uAWjmntx4Q7iUeple^}OPEP`u6Uv@{5^f|>PjZ<3fMZ+6%wVIDUL(;vUoDy8n&nk64Zgy zdSBtEmC>8p)GEwO$C+o@Af*I>g?>Ca@T9;Z*+wAiEg{LcH7ZTL5d3Vb)TPA#e4k+o zLO`1C&Xp_n;AMt5;C+T>a2pO+xD87G96=#`_s@d2|B#-OnUKb=oK%ThM6m2IFMlBt{=p>&6PN9MLp*vvhP--6>?9a-l@rMA6$M;YA=a#`ycgGQ{1>S97qK+ zEW|x-@8xUMOe3C7izgNpP91h_n&sF&_Pdvljg~_>9ln=rdsDZ28n?y!w=FY^f1Pk3 zGods4rku$HMIu@Fne5Ru?nvt67Zp=VcVuq*QaMVCw-21s(cPm^wQLF^2#!r+Bw~Fq zKH_qVk!VANAdI^&BbH60(TSWC)uSP{&D0}FU z8l`}cP}yiG@2pU1#6tSew^a4n43? zt2vqpbI*?!WbhlXBr3W(sWyM!k!+RA9#W$rH~-#WJ<>boYy2R4WTSe!P)9Ox_WjSU zn}M_{CMLObcYYHMr@*8{Jhy&u1?HDe=E*&u>(U9r6{$@2D|!D(&o!yett`@U4E%7KWUX}!dFPRU@p(+exMO5@~MStTFKALHwHAbxw>45!@G%L!J_M zZEq!(;3p?mKu~|aqDG~&fkXi}zohkI{(G1$l>Bz{DTKtmF z4Ih70T=G@CKMyVP`x|xd1mQ;smI^dHMvsd5B!3}OBweq$#6s7ePsFFnw~_CpQmK8 zsK`GapK33o-HFZvR?fhgyc3^#R`S4wckEN2dZ*Ld+>E@0Who`9h`;TYyifNh?qa1o zW7@QhRkpr=MqI8#LS$5x!@9LeQ}t`-wLEnn<2!A@)SdLEC|m9MC_&bKrXW=Wfg(j0 z@2j{DdxsGULV{XF3G&Yd$FHqdfBubmx_eEy$a3eV#KD6F_eV;J84uq-&l;kQi8>=6 zb)~;=m(rL1`Q9tlxz=lR$5;vDQctwiIj+}zI+=DY; zlZwcjZnih38}S;UtblhX=*zx>+I9V>N&LfcY0sPUj0y6ceM(5K{16UOciL&K61;SH z@&oS)b`&!X?neXhm+cnT1r(B^p%4E!-fqTKw24H1yf)c%s&&r`yTg^h^kUQ3n|tDS z!h1s>$#mI=oH1vi(LH2e=)8;XpYx?xt~yH^BIcaa6X*@;x{;BgPXt2RUdu$~nzXK@ zoYyE^5-n@p`l3#fjW2yA_^>SSo6t{|n7XtwI@^b?eF!4@bI$fVBE;NV-AB*I@-&Js z2eOlz)+Dv6iO{sO#b*0HQ$qj@OvfBS^OLiMsnf9#H$0? zs&28jP-aWO1ea*5{3mhaSd>6Ff`;gV^jqf-Cp($x94h(&GQ*#LOK6G;Z;sKi7Y^V$ z(yeMnk+c|3;Zgn3?in=aj-|fCL6^d0dNbfr*priSfBJo!M+nY5+={TmGf_p>3wd0+ zWgBDk>l@}GrY6bsy=_=Fsj5_RmQQb>Z1+N%vQ0~sIo{9RA}4jBN=TMY*5$p#%VS7n z>m!Y+pKgeIBcRi+amIXI%0k2TTIP3FZ>78mdPQ{`LmIrWq+*3pPu!eNahAIGEXr;- zPkS0r$Bq%&J=e2BSv>G#qJ+rCYf^FD45MV%yA@WRAlHaxGO65(CbB4gGgvXq7?9Ky zI1-3qv)-apW|atyQ%b>cjrDt*KwX+!w7zY=-DCQPUe8$iSYiHZFctgh;!e$O*IsYo z!uHoI3b9p-3rDjjg3IS3r|^;OTHBC?qO3WZMf|19kTPnA1<$3k5z576IVHsQwW;PG z8^@knFL?dkN_>MM1dd z#rWGN+NB+NF&*t=+&D+E1FQ4&yNqajm5C)#zEb$v-w@d>W-Mw<*yMFP;_JZv*hHo4KB;O)p3K{RXk@-e7nbag?cW{lC>k6lE02^e`if?DhW4H`ua$= zirjDi@cD{qcCX2CO(@YTQF!O{(C6@0#y&eGrUtCb3L`1jnsQSLv?Kajx%x50 z?UV%G`7Y%5`3DA~31Lf`{_Qz2$2b_w(it#I4)c zMn{6+#sIR9AMCMt%T@QpeS0^wO^>RQ~-#x5u@21Fl;Y8yx-#3KGDw#KjJJ5`?c9VM6%w zce~AwUWK16_tIUd)qSZa)I|5&7N}(erRQJFy{$`qOs;t6VFZN?gXPA%XOBYzIF6!- zHd%(RpkCSJ4Vz4z61aYIV0MXS4vJbmyV?GZe%iV!v8(ucjRg1Y=QeV5Sa({b>bkYK99eCeNL(~c_XgeW2!Tq_|vnX8p0pQE+*15IfF8C zf>e!esj>1U;*SK+6PIco9&h%vtz<5g65)%-C9CmVPckT;n+VloTMA5m=$7?mMK%zn zhvy@9GSye+#z6$T#;v_ouiO@KT=|~i%AEj?5SRR=JTsjf^K!-8Oe!McpZKfpx$}J6 z_-JMo%R2`X7pbNQUsk4^uM(Q;LB6F=smDxHgBy2W4V4_nmR1iD zgce8P#0*hn8(|${iyFP#?^#mbT-ko=;qNyq-sDrLSRr*5`iJrE!ge^fN{N?OvEb0K zO3v#i(Km8P_*7Mo`VlhmAy;K7Xar!KS_n`qqOfl2rRLw5guIS17C}+%n0u(rPy#R%?ej z$HwL%{PmmFjsoRJw|*j&rB+vEqKmZ@+W2a2jf8FH?48>B@1W=686+RfxZVxkitRHk zFzq!J@Y6WH_6sNaCAPxmxAE;5{s4=CcK0DylgsF!DxM(SA*o!3duzXylV4pG8F+D{ zCgDra1K|R~n=CdI{omU=tfP|4VzX|3^hahYyf0wZY0K-OEDu&UHKtQ7xK)vxZrako zHG-=t=n@|~o~2+>pm?3V`l|48ggdPnJG(LNmag?8Y#+;sv{>gEA&a_(i4t7>25Ws^ zuKFt?*|K7j_5tVFSN7VHn!XM{^scE+=5U0@R2gjOy?5;J`{I-B!6`4wip%mgZfUz- zJ?q!1k2_u-kBj10Blifkyf;{+a@THL$*8+}aH?*wrJ(c>_;& zo@ew7Hl0yN7v5DFhZ8HwI`{>!4qI|KMgIwMsZ!kU1p!q}p8t+Tc4_WM^3=!%hlSvE z9K;ewLg~wXX7jcbwyOSDPevVn@Qi7dROHg_zuGF%c47}IN=aioKDxCmO&WCDRaS_j zpvYYLnm%d6bToruwCP}n#;fO79qFipZR)NU+2DD2jOf%5R*ISj$I-Jt%;)Fn-E)mH z@Q;cgXH6sZna#Ab5MA@ z*SZyVtvY4khxM@8vwLqk=Q#pLP>9F5TKPc?z+$NbY)oO?VOfmdwg1ctfwYIh@z9$Z34qluzsyYrN`Pa{)=l zW$%1pi{aJyd4~LbZH=y%THi#n?wXN z%s8`QtwR3u(08&Ve{Vh2G}~h0k2Y;+JbtTAJv%e?^c5c~JIQy-UgQAN%XOMm0~ z87@0@5ClTucWN7q38P+p4Yd-rGIHs%%Htf}i9TSp3v#z}mg(rP5@c|jca(`KPzRql z(x0s_QpPmhAR04?gbClVq22oHqE!t$)q0)zcd|DTx%Khh%ZeMxII5Kc@_xZFizw|R z4?C`{#c;&}{@p%`A96J2s=qsa6xCGd*7~&WeE04oV0~fzVtW!l#zKU$x6ysR$PjrM zY+L=M>p6k3F%RLb#`M*G>$ORc7D(Qtq*g1yrFUn;n>5R-lTS_%8Y*hfzb5b^yhHot zQNm6$?TJdxujXPJVDL%8#Cn#V(3DXGFHvfptTrrH+om$A)o*Pnaaa@R|J~W*fVI$T zYqYLe^daOI%UG62f&|N148zP)-h;}8y(p~c*+&{rb{_TW5&nfqcz-{287gDUALQ)1{Qfg@%=M_(n~hc2Pj0`?6{Yj5dX^jUzNpi=8Hb?b zAsvUi`ze2J`VIEWGU;D9G`{e%(U$DNRJnA9)xXE`t43zQ304e$hh@;M{}V=dZa%Yp za_!0$DZ(pPZUPtqZsuqV;Ru6?D$nP*?gZ>zlF%5{5mVi>99R9C$K3@yX4XiO98yCcMlHFAxy z{EPUY`~IBJPiAA2lUn_Yvlq`wpH?^C+mlIB4*YZNy-y4C(srj6m6elVl1k=7ZT6=Q z?s#LG`}H?@S6;1IpLCEglE#bDX%ft(wYML?y)MK1s`186T3wYtSE`kU1I|nM;LXY+ zjke`WZwhdvnd^}g^Ukr17Js5mQEUdLL`pZt4d+90OvwY39pJ5DhrxVB!)X~E)j@nz z_CG@m2xka=O_gSX<*d9tsV5M#l2k4`%((W~?um#eCVqET5!-tZCZF%q)c)&rJnAK( z8`<@&qA1Pb2om(GMI2*%qI*n<7mb>l8lCIKw$HXobcJ8~@|9v4rJa>BvsXE5wBaeJ zv;R=r{#^VrjkGp)Y^$G5(YBy~WHXSlhD%&GsYtFPv%c@_`|RxDHkJJPM0Yt!Ed})b}Q!bd%~lKPdAATs=1`k!f)DX zTTS=4-UNs-#U%QOps0QzTzM3$*eO>2VMQQww)t%SiZ~~p+DOSavk0M zN|AOyhdCjCJ`kVP;#Z0k#pLb_VZp+%KeMA%jJ6)b0)Z>^&e~|f!F~B2E+W401Nldk zkNgiR&d3=ozwX=d(_eI`@IS>JT(8UP{~46i$DbS)O_Njd&TtX2{)G1WsGvFbN@C?D zzl!?{dcK!8R$tqXbC@7v&+i7Y@ZGc!*E$OuA*=Vqi-+?c_Fw)L{M}sjS(@yV(j`OF zyGO6TSG&tLwKlo?@ONn=iz$27n%eapZf~xLX%^oiH&3z>2s2|FBS#10H)bY|b`EYvJY3w|Tmsxe?BE+7E?#avBQv<2Ik*q! z|9vLsQR5U9a3&J47{&hcG~n+VA9wKS|JRwE&1@b2uT!0J>ED0*_R5u{w|B1q^zgsF zYJBLxZT|n9%Fe{Z$-%+Q*2L`pI^X|>D*y9@H9iN3{{k-m_jvs8!1Uk0B>eur!<4!* T_6_KNu)&|tV4O4qp@029<^`gV literal 39870 zcmbSxWk6Kl7cC7+iFB6=NC`-%q=GckjlclXodZZni-L6jaLB=-J49xb4q@mT7`nUP z#sB;AzP@jI9nU>ypS{;wd+n>GhK)mkfq_AQ!Kp!NqWPR%HINzuqfZM1LmGH$<>g`_ zBql5@WMOS<tpNU z#b@K`<7}!{^{l~tj(#8fs8uyIgTDIwRAinY<|{@rStq@f_1u$(FNJ=tOMJQwZr;>m z^zp=+9NrIl4>NR?xop23+JZE=-tF(cySs`eb*no!?yVu$yOSM=Y-$g{bhlT<+NWKNh-}lZe@n{bS{Ebk$1P(zL#59dh=`7X1yJnTW7p?7jt{J=MeDq z?hN>1&Gl}h#q|~)yt|q;ZxIlDHgMwVZ&Yq#6meU_cD%AxjWAo9h zH0Qot`(pF@vbWE2F(#-k+POsR(#(m%un*^9g(tbUCoiPRrSJ`jI}tu7ip#g5>BLVk zfKYtB(@sIi?#H`+y4-oIKq2&&bP?l`x9;WhSFRZ=&{V^gb_&YVMyfnU&?W};qHgV$ z#TptXfSr~) zA7D=J;(c)7rPm%UJg?woUC3bEKh<(D-^s*I#|9QI0r6Sl{uxb(%Pfj6akr3rkql{Q zaq{=Z&OB?xuwm0t4otN^kUA@V*aH zrg9lmVS@3B&OKqz@8c2{6&+VT7hC5g#tHlb`4=YP~{#mEr&&%j2_$4bkYQ766Dnbn`;z(p>z zrS_u?o}?UO3s3i+CkKOg=&p3VY$xbR1?Y*N?YsTee$zGD0VgbRJ{7OoIU)@@aSCHov~8-E2g4kQ`+HY z@lCsy&TTPB7E#TskK6B~hp#DoD}p>(e|t)9%4fE@<}+h_XgTAx;H+bg3ZTa#-JH4P zu$$t0y5o@EUf))_h01=H_y%k8@aO1HJ;KS^Z+ft5XU?axvmEbXO*o`84~@k`7rz+i z+;l}CATtEi10w$kkYdnYtyn0tT})5_{8rhb;h~n zB9<_I@}aSP{^{?wwCO#o5ngY6LW2v5@WlbWHe*%#eJ(iWb_E_X?JW!Q2X?Ai!Owvd zJD@_joxqk=blVYsEMkyh!CpGlIQJVB$q(#7iBO-~V2$dg!!AWh$U1&x)irB+{s+_f zz{IiJIZU`!nE5~_2Z|_riBcLbrTZ~Kcg|){-z`5(NzDLR!MR+>R68&t(4Y3P$Ja_ z`xts#O!p&}AuT;nP&G9JqL)TaDt^SPQ$gHTxIK1%rZIPd`sv{Os=t!%RdBD9&D*rD zGM|@;&*SZu-vn;q)1PFyA(M$!dR69)c7E`P!o`#7_EHh79#W#)J6$I5pY znR~mu#Xk-kkl`YD8}wF+CwVWj2bn%Ff2&5W4uXYpE>qrNGz1jo(*226Hf^1GAunPw z;88K}5M-Ob)%3N6E5FYEQS42BF3vj%Qr4fzjT2L($(p3!DAtK81<=Qc`U>+aWOSE) z_JZI?vmF)mu#YrnW35ywC+^!#CDq_RE>7)%lP^^n{B2#6KrI3XzN8%)9X4{y7%BGd zP%!3?q55#wS3-CM*3Rrm@zb;wy6U&A=~9EloavJ-9oj)c)T4tTvBUBRS`MBVOsOJ; z7|-ZTH;)n2uj0jD#j4qV2sFMtpAnlbd8%Ql17}Ur%ru|)JR`21<^HVZbN{p-7b+I6w7Rwd* zaa|?0!80sCc30u4W9MMH*zJt?#B|OQt_w%%5*DM5*YBq54moo&nJ;-Pd_MaqBP_~J zOTQ9A42OD>P}BH_3yG{^9Ru;F<)%dF z{P}0s!fVw5F@^-Dx-dL({w<7O*fYz;k#QfFblpH%v;|5mdB0e35C0HNF}^HplAu{L z&WV$@2Sd%W@q5X?eJObv_V9@iq2IC8OM#d3?zP8dNG zmaTRK*|BFYKbK5oBFOjYY_$!^P1fIBWtDU+&!ez1Eg~Z1*7mQ`*GGb;-}bb0u5(gG zA91-ZT2cfFjyJ40CDi*)UY$4Q9)xPM$Sk#B%#sqgW_$W3{MzW)su&d8QTeJ#?`T4x zLk4e-57c@rDXbkTx@w$F+lfyytkp6{;Qi#C%lx8J>U{Pi#KYCRM}n&Cp>q10B&Ia- zlD|txBcA2mY<_fq{m53VQ0}92f6bz=X5mA*pqNwRiSXVMFHty%jo>M?o4-)U27?x5 zKED1Ri+1-i{-7k1pq}G-dk@BP^jSH)marv~^6Yzfj^pfBUEio1W#e*tLxG+dSJcZq zVMH+0^($30k?#OSr{bh)E1UT;9`j48!*_<)!ta}%1~IOyOMeY`|8)4dEPVJpBu-q6 zFqE$IIQV@W>sa}Au)$7b;Iy>ck<>?cr%cNSI$8{IMwaI`Idc7l!iIUG6Io0z2GurS z6^WRx_?pMqH&u0NKRfGWEX4Bu`BR&3ep;V1&2FiYv%~TPp<*n`HT~-> z%GKvl9~Q0WV;S%rt5YdDl$Zlz974BlH!)>=Nh<>=Ik!hf*q_0Qnl@~6+CO*JM6YBG z5&l+YJ@Gqz5#5$;C>-$CtW+lbllX_C62C{hJxm{d3IF}!F*a}S_S9k4!VN^)y2zQL zkDyPY6ETicr$_&_@WK~?US^17IV*B{FPX)pHQJqs;NJY2hY^48ifUUQ_6_(C^nrse z%V>X*vAq2q%=ejppbnx!*gR$>jOk-&jR2}mEmy?Z+|;2u^4t!8FOdi&;Eb654`(DX zT1=bLl*i|*#%@74PUR{SsktNOfR-`k=k)E*#GK+3RjUo&@o(PKS-5vB94LG2zgBB_ zuI2Qw&ivJ-1NWcF^y6@x86)w@-%~h^(gR_i3Y+mTycjAuDM4Ow5ljs|r$zYvyvuh# zAP*a<4p|=^+Ur9;LE4{HSE8w4J@d6YB89uP?&tCkBEBC}97W_UL zwN2PjuhFzF2W>&yyDyz4Fn!Rf2HTjx zGtlpPN4H$ADs2+~m>Kw+BI%&(?_c$-BRhLLztotoi7GY%#xv$Bmq2VfO^16v40|Y{& zdfkr^U)La{9x+C8&|{8^$E6@)T^|l<@gmL1S@h!iqUSEGOSgHsO?wS zq1<{JS)Y|Q3(b7?ULB;IzVENhE9LHaGBdHZq}Ai_MbX@s`Fo(=HyNkd;DG$YrkYeM zy3|OUC}(6lyD|2FGri0kS-aJunN`Q>5pb0g?iqQm6r*p|YAKb&(=Umy`snedrZdoBvmSCX+#@^NFq z`PN4Dd?tT|w*BYA>7%n$dWa;9VXhFp_*$YrFg4zE>D}IC9?Zzx=JG zr!5Yv`C$BG9z4~UbOTn6R|vbx@?#m{t5Z(Wj!zP+)b5;qZ&TuSTpP1vw=;;8vy1Al2fekKw4~ zme|DxdtF)RU77pT=(4G5AkBc-&CkfsOtyTn{Irjf44>`p?*tPGTTpyT_;e^t^qVzT zutMd*MT}jwhi+zuL6d+ZzW+}JNDTEAwOrd*d;{dNsDt(lWd;)5~AmTGd0izY*G zQt-w6J3_f$}*Vv=!!0Jx-3E}Tk>eXG{;gVqCG5_JVv zPpvW99fgyS`VVJ87^>`AxzZJ%^$3ZIC&@&k*T=%Gmoq|6VCIh4Cai}Kv9raMap-rS z6FxAox7{{6dvo%PnQ&>3l49NDR7**ArU<)xmWo~7cj1eQC5-glMsU71t)nUSdxfe; zLd(H@6N38E))Wp-d8Up^3gWU?&E9Sq2dlrW+2$ByDpHU=?(p%`p|bm zGMezwW#K#A$JCQE;%z#@Yd8-spS}L}!oSTb$j{RoY;i1<-pbsR<#cMFw3{58D>l*C z!-#8{lpsJk;p-$B$>OkZts2B=&p7VzV+^4;Yojm*ZBT{KDMF4?CjXZ~L( zy$2hO%)*1yE#$NiIFPNs!G!CVR%gIeYofpvse+_>d z!zMTLLM44-n6#149WB<I$DQBac zBe0D3SNtrjDP)&Nay;X#tbn^g0o^sM0eH({MOKc_i8devnZ*QAaw3b&(#BA zjhPTVcsod2Sc^i(;o;NZw}4;W%@c%L&v;rZ691V>g*o!iT8YUu)VgkZY)AEf!+bqy z=6K`qsn}+2r9~`3pVSi1GB3$KN}$U{`y(~+P|gRkeGEaHI${|mcf-vPEVsVTd6O6i zb#deL;=8DAUyM|`TwJ-5w-y^Tk90#hSaE;p7bvTGgz||8DZY63tntg+5rWXq=+75k zoNDUg^UOq*JN>i@ojwE3lPyY8$1}1Dik1V~hs-8=JLIcIO#w1^K%Zzb41HD?v zBY*jrJ*dG*5=n>QIo1o0x{HjEj=MXFX`_%G5{{uufE(HQhL$6YU0yajlnOyB!;NT) zw^Luoimp5)!bs4@3OEv7>E+UwG{Shf@_OMBCx*;3r-xVaZ`gIk!&LJZYz*MK;Nq@h z5_M?K9(})IJ+X1iuP5Z*ugl`2bK9Q@Z_p+^;7eeC^PNB`KDk8iOCRE{Y`Ff#O`tR< zt(5;ZQ~LOfS8c(F^$_`E0^3x6YL{41E#oJDgj2rf_AR@H>_??mZAl@<=pBu zjLuWV(eg-)bj!C)oDVq$p4rVwXQO9BP5A9!@k%tfP0V59_`dUfOxCM^9Lnipt97)= z62WTtCPHnll=azIEY8o#o;0bkhWtik{@YF)K_MNLCJ`fVp1)4E24wd1p+B}u_GzX) z4pm>GYhA@_2jn@sHqu{@c_D~dHZ6>!WDbHTa(nt-PY6=twGoy@5!4v^*RP&DdTPp& zP#1QK6U!eNH*O!BR0z%gZLIdY)L#7A_6pmxtuf3Ag+Ym#T-B{XjUdXKUk%hnFx+Fbi#B4rPdyviCe%KEumqIBF zzukG{R%p$1xt*>H$yce9y<|9hm|vs7{(Ps+_SMqBPqG#!S+bgC&$*+V#iIl1(nY6( z95&(EM0?^1sjTG6Gp}8vtMm#$ihW!7htM6)KtbVj zZ|!f-nN*qoaeuacg^8B^aGXlKJw50NrEK?@k(PF;CH+w*&`E@c^{%dXxiOaF^|zT^ z3t8^NeJ-lHi&8kzUOa9qh)(~{s0q&(O?znn?@w!B|B$l{*E{sVjqk$E^-}jy%U-S~ z_@G?VRp#dU;6T(>rv2uewBrV{wl@zxzdg8#UTE__J4I*IXjwa3kOc=^%^l?3UO*5@3vJT3S+3x#)0PhK(b$na z*dGTRbTqaH4!YX)y*ppJft)S0-5ng{C3T$N-e@M}&0lX_`Q9C)=VWDX&rch!kAS5X zLT-@=QD)ipyWO1wp^MwRT=3Ow$RRUxMc-`%3B?)EKK?m9)GL8t~-vnOkb z%y(;5b6>M!I?%rm3t+!nzw75Rw|lbxj(&|s9YupTWVx8j%dakEuXR>zxHO+ihoIDg zJd*BKnZYL(Ts>M$cYV29y| zZpd{ZBg0LxjXul;~3Z(aJ=*5?wKS~+19&@?lBbja%e9}wxlC4=v?LY=DIH$ zrMY^BsOswm2i_e-cLbepp*XI>?hg0nL(aOh)|l@Ompa<~eXmsy?{1=jLDN3?djE9H zIOf2}*OZQtp5jTA^2=naX~K68HbLWtkpSa()5 zb%-=mqAZ*ge0rss$21>uHyqM;cfEAAws3cTyO4O@u$KrE$jcP{|R z8+3gj`|Bj{ufiQWGKB5!^kD2r6WDCS-9Bl@fA_Wh>1RsQ49VN-e=IsG5nFxX80cQeVgJ}?Z zE?31eA&I023&y*v^Ev;J^D%H{?%#}O9;v2{-N$>tLehJ=cXx6*1;mb)B})zqU%ks@ zTBvLBK#}_F#zGhJA!Fkb3R(IVh~`cHUdlM`M&qRbp73PriB$;&dSv1_f~cbNVTHv< zZ;rh`d(DRSpzh7A9f~Xqa_5Vf@yM-G#$qw9mEHFHU)S zc*p}!kd(};O3xto9Ueo;u5khb&C+!jZzYh0m*p>kDaYu+B&)x_6od_cD`yh`Epvr<1Lx+aS8>33_8ljkK;sHw zg=nKM1UorKF6B;*-wfPv5J>d8iLBf}%@eZez;KNOA}xV! zukC|cl_K>~#^nAGlOb;TmI>JST-i+^ot}6oa5EW)FbYTg>sa87e~rF+!4S^(nKA&= zl8hQ(6;qHzXtNn^^@v$tL>PFQa~D@!St>_}RJqi8a9$YmHWZN2S-i7ZVV_L@?T||m zqcxFk_s3;wfLg%vB*Fk?&fZfpO{EtlQso~MG~of8;}Z)L@=#5_+ zxqtpawDa_^2)^e?2MY)<=Y__^P1&$O{FB+_HEk7IYQV|i*3y>i{ z!s-0|gx7?1Pn+L0u+?^eGT5I2`RUhAT=~6@Dk?RlZg3dtov6@%x<#QSjFZ4EtRG@p zD88T+<&$tEzFzlYIiCOs?VMl6*sWkr!A+mnDQ5iXLfTS30Rz&#zw*H!sKj%_sN9C? ztDfeS|HVuCLcKxtRmABM$e%=|#zHURqnTgbj5BNl!8bUT4P+GH=Ge`&b3 zQ(khf08gbM%J$&J$1*Zq?p%mpTj`ru0%XrMTryBfRniAL51{&u^?$;RYMNpQcFNbB z3%}ez#}^+$zc*1mjBK?_4F{fXi6r^Jn!~vpLnx7|teSua^WHG}>4W$hhkkD~*(;W}qol+WVOfC<~f}AY|1H)}uzb-&#PRCvM z+NyfMQX}ETbnI!U()obc;Sd)|((wAYU?XdO!YXv@vxkY#v#JPMO=f>O@EnJ1x@GaZ`;LED4V!7;J*Lc_$eoFo5Ky9INug7> z5DvQNuzRFoHnz8g3h5oEuOai%Y96pg`ErL!=f@e2m~8~k#y370=7feO1>?07zlMI) zHT)E+b&a&QPXXO}8~+wl#)5m(2q~>L*t6AI#amgvMGGvqP?!>X&KV0>{H?TnRB-d~ z`?9Sl0FVGs&06c${CpJ=3n`ox#ib+x;K*XFPD{eeL0|0C@UC|~WBF;DwLh-Gm??Ks ztHF-v6M0GG#c`m}5GC%L&c??mc(jbh#h6!=Pdw68B8-g2f*v(EaM>ydMBAd-6f#TT z%hTCNgc^KTH%*<(mLfnBdy7TLJ{X!mUOzF<|LUk;KSHDu^?Sk|028;H=g@YKE&g#8 z2ey-_AwERbV=+5R2AZp_>+uMHD|67A3- zPF{1J=6woh7voz^Kj&lT+|{$?^qfVB5j>}Hz)KkR(=75`5%f1pXc+$PPVWl$Icj^G zPey0pP_ZDkAVG`s&~Zp>upp^erpf%z*IYJBvPXh1}5g%{9YTAzGXQrxe8NG4+GDdao@hf zRB>xXj5N>_wrOOnX`#~Pk_{vLx;20;N>DAo83 z2$vWn4tRBZARSHIO(oBShMVv}oz`heD!@W$)LonzH z4sw;5|1fW*+qpLbd%600RP&u9L)K48oTqkr-1waS1>-_!rZbTurxS57cUGRyRkt9_ zM;@h<5SC?Ay8B)UG$uAfvpv(}Nbn=zXSsM)jCFDTws%xDa@~&p; zYcubmA_ztEbNjiqIlGMXeVwVgjI}9|6_{;xZVou%>RSpYctcja7NTN?ql7P@b<=x~ zBBC=p8y^*&QDmR?`V;QZ^mR5CtP(VaZ*}B3tyUwmy-bwihT-1K5Jj@RvMw@)J5+v zda?1F&G$!Kpb#T~Sz*5B_KBxw)tsyt02mOimd(g$0!l`}<^)H@?OKVU!Dpt*D3n89 z5>Wt~+!G7uSF<$zG}0mxq*fCu7aELym<&Mez0{Sc6Z#HQxh>TbMs#mOon}4|U zFuS-AO(_4C-LN*TtnNvFbxRcn9QEse*9yGt^+0&W=@7H)gEg@ z+GzuX$*Uyq1hKWSo>ZzN*H*JSDY+<-INNQ#su$1c{%zzJX+`TY<0m3#x-DD2Cst%s z2FCqTD87x{rCIrwo}i3WGMX@VTIC_>^6LX{NQ`zwE~#G5&DLwF{0M^?bLrxo@Z~IC z+G$yCl^mz}fxuu`0Lv@xTDlQBPU`WsLBZo7maXlDr2I*IQ+3Y-icJ{BrU$@n?u^Kc zrfL4uE(q64zQ4b*?S%Y$sLcdx^T>;v#)ZKeI0?gz8a9h&5CbUhqk;<9H(2UG*L5_9 zYH+7JFG7B#G|?-qAi*ZbWSr3JEn=AfAphMJU)A0?6wyvjEt)$y!kh)D|1&YBz}{Bf zVJRQVf}4cZ*1r{KLMxcqeVxFFHIYG2*yOLsRb^k=9rgHf3WNdzXbZOSH~5f8UUMLD zdm&7YyLNh_S^IE0FSlWMO!8~FJAgC*Oe8lHTgm!-kEK&uw~^NAZhY$Aa$z&|8K}T= ztIEn4vtd(7paLZv9dd41haYqE{9Gy`)+72OZIf9A@HI17z}@K@x5_0M^60&nlWfTnl!w z!-+7jc&_w25RS5?X^em;KGQgI7$8ETIcvBm`wJ|TS$w3teop681$uZ&H2g!y=I&~5 z*ryp%KjG!NFS;)CJn~rvvTb-r4^a+w^L3*<*p@j z19wjrm^W+nkrDH`tRzn)Wl3FZGc#AU!Hls(0Tz zlJznuFh|knsy0q+KKKVa7i7=G2Qn1cY8|%6+(;At1O;OahAoaaB6DQPi|%Do7E1hqwlaYmCT@+Ky%vW>fFC-06Q&4st5rj>5Q_{@iyluB&1-YZ#V zou?k}s>G%v4Y}~|AYOjQx$QKuMGZ;f~J z3`w(!oZ*L+cP^EITRJP=+*?YZyonYIJHOMog<@Ku7y2~uoA|c68dz3k4g#$+uUO;b z)9V^%K>kV%osPTTffG$!`OQWCIUg=Ol}40lrL@gwa5zeUIDUM_Lh|4d9)p3$@$ApN zNxw3W)<{7_=GF=*#2G+E(>{TE^wUg!D@D+nA)X3P;xIvi#a|i*=086edwlr>YaQZI z*$~rw1lB+3%J>4w@4r_X4p|HX77oh{_%sIAJQTjYy)^cqg;I3bNLJN@N zAmkzC-ch-A%{QvX|I=OYcV3w_+qR%?!|Pvu1I6UU{=<&)r(+_!nZbaGy1pAW8tvcJ?wrQ=CCk?HwSo+Qkw-X3yQi zxPhY?Cnm41l>HMNwtBgHr+HE+Djee-#{?;q2%c)DF@OtnaC4tCbe;794x)~Muz2UZ z;NQ;~QFh=*9A*A;?oWGq#}TK5z8`TX>Sb!%^2gKkrDgNJ^Q7D}pun|4oz$Ie+d(^3qN!vM~3 zF3_zsr7oxxbN%4`ij3mb0aH(BWx6m2x_8(-@I_LLj~j5{);<`+2fZv{1NDOQE<)P% zB#DcDc_`(j^IlyBEnWr9gy7Tn9XpJP{+;831}+xVwN3N#SDWHY8Ix5qorG^KO=AVL z`I;mB*=id&N{}O;DtW}9sPv1s&-@-{YPKta7J3I?nRkVRVg5^oNcqD5CN<4~Y(RAj zx&mya3~GfWpU$7rdstYa_;G!)xxWxnynUWl;~^bkFWAi zft-Cz*wxpMIJH5FyFAICrTia(HgbO(Gh+l`1%26>e(;=-ChUL@{7-cg$x_ln=M{Z+li(9!bK zH&Occ|M1vg4J5+ys36!mr|4+gcjl)8nWbrzyNzgp*5BFn*kSXGTr_3OjgXO4H4bpY zNsJDEo#)x*>5*bpS~|6ZlujJ?x`GSG z#Qvvl$cqCiY@308--L0iGVgbtNDYwhRh2O2DbDuGF9pGNJKoJ#t$rjC{AvImrE;t% z8%#(j$c{PQYSYx-H*cv{xVDu-wN5$S2lGMB%u&-=D8cw#!bwtz%;;*tTANnJ-f4a+ zi5x7egL{)AiPz!3iYC9<;UoPsM{IS#Xd3XZyq4qPB4PPbFyNFs9z1>v<8v|U1lsGI zKHP9LZydo6!_AmENnuAeN26yKP zh0}It4AX7sKE0uC?pC@pxwTFZoXQ)XEKK0w`majdSBZ7|6W?)lep?@F3pta6{qC=rf^=Q7ta(LUv<9pi-4 z@^3#V@ql|X;gE$i0Tr0DC1tN#G8C;3x}mF_WlJl(hu>O_ijkl!yjnRd{XWCs!tCEp zA$76Cp0B>%M36FcH$Z7-e4~HOMYAl&?ge0M`$g zE4l0?$g(4bfC)plCxk$YslrY@Oc|R={e-R7sdfA^{SNvo_$km-&~Um=Gbc6-%dm2p zq0{l>*kAIE({L&8kRnU~O%EY7-%5A@XcORL*X?H%X7NI`HrZ#%BiFv{vH1Dp(20KH z#UyF_zq7vqyTZa~-|Ru+;(46drp0UY5Z@DfRK7>0F%wVju%m|4_eHO`U`3E@N{)%y zmGOQ1qnaSIPcZkNzZIAKkhI{A=dW79dtr3Mk$*VqN4Qg!<64AWY4R(X=LKKST2}O8=NKThf>i#i70rZtoe3%2#{hq)(+yZ8FE&30sIX!sM*^@F1Sa}; z5)5g>+@HeDZaM)#tAbC32xiK<1KudmaU2yFy6l7!?9iM2qSy}!)Y{=&)YJtm=ZA3PNX{J>iRwr+`KKnXwl$-E;?p8tz69}t14N}=OA zDox-aa-wnMAfu!b&;bda%z>qea+8RkW#Z+MJ@VQ$cm@%t^Jz7VLNk z$ZH^%d5=Gg-0t&dW4tOis+>QF12J=PCz^gPXp6b}Yh3lN<^T4Ot2x!nLQb^PnxQUE zkc(4uL&^K17)2{^&wKX{Lr*5UZ;aRK03QzBxV!T8a#=zl(BY?W9iXn;1(o->D94d@ z08%kj4U~z3-^Ue`14b`#iqAL`hv2c^xIx=m_eW#FiibT@D}y(FM9-#d^Y@vpZGDGFdRh#*z-t6LQg>Vw8^ zR>;y$BNhkoIkPSVO)7GS8})3SHEb{)eHw{`>?F_!+Wd(SUe%qNAyTNvQwX)$sA>}GlPm-AzWT+G}VX!gfs z0TVRPletd{25!O#Z+3$}4k3oI!$Jl}kw5sY)q$A=)sOEZ>U~bTUP>T@M0s$(#b?Vr z!ni&jw8(ZaB;NsO16{d&^{D^n8R`?{UoNXf{3DFu&ZG)W0O+Zjv)U8b~8>rgM!$g}_MFW*iT$#m3?$Mm?lX60oERMSIY%dJmfcMgEmZ`48+Ji~h!i+%Bay=j^w%N66s<0&uT z001q+qA>=f-#aQ~qP;U{NfI!e0A5Bx24r;pO5r~)2 z%jsN3st82MRkKO2=n>$)8Nk<*DEmvzm3xOn<|WQbTm0iEA@}Wcs*XNVOhML!?qHnY zo*QgHxTTpnqqd+bqDel_l~{5>5><}tN{QrT0+4fD!^biKv);e~+}rL3KAp*T__BS& zN0R7(%7lN;A41r($#K#fnB=tkXh5lHl;h9?i;kI21u0%hF^V8ptqg%^9H1W3Ko!4i zkiu#cN+2W+^l<4x+>ge7>lMvkrkoN=acswbUkAq_9c5znG~DXo#uO`t01|0bb1c1*H$;v*uWtxMs_#ua-xO*8x#A>rLu$JJyQf({}+r4!{-epEgd(j$==dfzhHBzwL&E7Fa~Z82~`J`d}0eg=%< z=zc4C0Mp3z(i6`UbccijT%X#w(s9mjK48`h|6$CqXB>3y+L_~@G>kmo`G$^x5=b{B z&W}(K0K%FC-Zp?Yx-AG;F}@p|GbsOhxIiJ-BVfuojjtFukoK3YwkpRPnuG38>!LJu z_B?T(OcO-X2IN*Yp-Axl-C_QGlww5gS@S7#%By=sY&^Pf{L~y>59AsBh}t`Hz=&%X zfvXz%I|9QN8haGBeTNkja4V__k{3DQXk~y`OCK~OD*#P^$ z>1!SMSzy5Y1Ay*goxFDF-F4d(k_&>XB<&yXAe#>(06)k%A;Vg1d)+Y`XeGyQ&8Y{- z?v-krvt%kYf_9p40rdgpU8-aJuY7(lgi1c`AyuOdc+OlhD5cDR{R$AwxhgE6-09xo zF^zh>zjfH`FG3y^ttsQOYL8w6W(%5-mqH8NsNP)59AG*>l_J+1 zn|J(jfDA%qtm5LT{A)`V8^Ne)s2~%)TAhE;8qlAbe`3Gy)m|cp2Q|m_hdkFeDBqOQ zcwqr6XxjYEISwI_P9yyQWYzuO^N__pR{kVAboM8q7gwslzKdzN8&2FDU7H6B@^};c zEFZ*o`r)JC%zj4xc@hd&^vNb%NjEBN>vu%JSgW4I$GlR!OZ-?0MtYVCAe8S5j~>Sn zb4k|%`}hgoa5hf9A{t}0B=xjHf}LV)PpFs3oq9|p8C{yAlt_vOEOJ8p*i_&Cb{EwH z!$1EIN1xr$zrXm9Pd_5pLSOmFR>n{q&_l|aU0fsxsp#A@*vPf|(`R_E%FQZa>NzJA zK(F>AfQA{&I%WDhfX+$z zV%_eJN#cF4v3o6&`8I*ugv@B@?R2s6%-1x!Grt)ZWFZTH+Be9SQO)g#0)os&lGdAF zOL5)avuMD=ce&`XF|X4};upKG$)4+_<(SO#bja8w0JF;kUNE%z_yO18W3F=V$_d7o z&b@!qQ#!mheAL}<&BXo<7+;hns|`^G>gFoQZc#XeFgyZ&Cm+wcUuiY59myd-^p&4~ z*px6;=6W&M@d538`wbD15{YQjG3A%t#5Q0dY=+H0L7y2>FjxQ zj0Wc@T$MVv^+UKwV)NZ|;6H;ofws9+JL0tLG&Wftxb+T2n_`CF_GSq}$2AUt69PZk zc%Ze7+8PwX_t3TgN#st+9GQJ=+I3Rixa&Mr>JQ?U*Nm>GRBr_&Y)1u5kRgxDNkkNI zYTb`&UhWwK9V!;8+^PFd@#t8WIby{a3p7A9BM6fFv)y5Gh&2Ghm8wzy$O*`AKt~D0vogPeErk-< z#tZKhANsXX?^wc{zKNb~({Ryio6;9{H$7@CS@7G0@TX8$0FtNM_v zl8>*NX^_g6!h1RIDJb>SKE&#m2o>PRsW0HE2z0$*=vD9}6qMt*ridw(|#1tYg(WB@GM(g<02{g;saOqp!@#pw+B zo!9mI3Y%Y}1PN-w`l_#d^PbDMz)#CYrFX_#m1_;6fm3mx>62*q?obp|c=MaS%4&cZ z_ltgjk3NVe6kuWwtt6781T-^@iTP`cXmyiJkK?T()&2Yho{(i3S!QC$0-W!McRXvM zzXT9{#)NCO@-mH@6ktL!7qa3J+3?iQ_dx=oaD72PpU&UEobp-lQQ`0JZ`~iClKyHnF+h^K{bZGvxrRou`Ux{x4Hpg?cXbu%<_H1@H$~FdnjdI4v>u&e<$Hn zTn7L3X-&`^HA20nuI)LfG=X1_GcQCV2KCYad)m}2HpyP)A=AXt| zYbgpU_3I;mIq*X8Vm}#v)xKk&(;}bbY=OpDIf1je$xKVDv{FOXS*)fSFq#(7p5}52 zF^(Pns(fr81-P44uty!EI_C618mHI8MDVTxje!0pl`e^~_z+f3u;YX>rQ2BuTg=7> z4E|#&O|vugT7n(AzQs@G#`kkA@$VCP?`mcN;bMbql5jb7eWkT~|4B)GZgLr}G~03i zc!)ov49~r9@N*8wbi7AQ;Ywd*$cE`kQwf-Y0ux2NbayB?n6*z|<)gR%k?XQS1p#Be4 z*Bwvw_y0>}MDoU!-6b{F#p5bRfgq7rXgY|FJ`9I z-hJPV>%ueF&l;obr+7|I$s2$btZJtteAuz6f{K@mPoQG)nw*VVGJ?{|6US}tKYB>R zRZQ6NHI)g`^=n(lX~sqBCPg3Nc{yD*(d1_{27HSw&3Edxpw`cpyNk!t&|A7^x2qj=S>Q2cq%QQ;0maeVa?I|B z#}T(tM|$e~J~hbU+npWH3J-^gE?BQ34H)mK!;%i5ntHCK-*39W$|kG;h;-5*=Be!* zP)o)*mrK-?LdE9-NLq%(M$%0CTxdCfix&2&+s272fRZ;}ivBC0P(G=}00 zg~&6djpGRG=eJb5bSetEbp=KyPFXdu%QY)IeK+VXpuVeUKVqD#k7uoVkb}@@`d>Yi zyVF6&ux7EVyO5c~N&xn#kHy9AVd2%&rs&xb4)bb*B1)TL*XA^$B)Rf- zp))`_F7DMv%!g-FuCn0H-Knsc2*>atGU;=bUGA?hKJ|sU<7v@{yl0(lJ^%=A(-{@MX zW~plhpdTQooD}N}5YXeHh;G>(XXLdB)XWFti+6On|9?r%93Olx0q7W~cK&B?Tf5&{ z`Beu#3ILfjtE{}Csc+?dIsFNH5p4$nmxeWf{2sD%-JGqcTMM8cub?VyKTzS)*Dy4- z6RMygN%^Xn*(?9p@~gjf*~Bz%Mv)#Ic3Y$|f6XDdpW1qkqpo7vDmAmQAb_5Il-)L} zQJ{uto@q~w>k)afQ!c3s=V46q-=Pg8}wPClhVP=*bfCMEDnhp~Ac_ydne`#K?0l(s=5$EQN~?x1YCo#5}bP zfzs&0Ea~|;`D@xA5zea4 zFZSYTNvc{LnUw7x-XLvv z9;rFvvc}!!)lc<9s^(2g&1}MQBd9nDr?Bd^&XCFgaMF|$eZKtB5=2k+J&aYCbBl|- z!nS2AYMp+!9~fM^Vjt{&LAhCnvaY*Uk=t6$go#nGujVW*ZHxOQ+&Au19m!t69J=$( z)}LjB$KD+6?)EH*!>?O`4S?F(V_f2j-0zPqCjndhHk`defXl)LfqDZqZ|)t{pH%@~ zz_>G z`|255mnblAD*rrkzFk@QRenN9Ya1ZC3sPCCqm1Q5t5T^JXx$}z0Ed2Kk5msB;I#x6$K-i-7iHQzUQdAz+QTN`r4=SH34Rb!Kr#q$6 zQbUDaz#9~Q(c!avk%{Ry$TzcYgGAj)>|@5*b86Mg>41!Jd6N;@G;l17v2AV|WmXe1 z=f_3nOSMqj_3_{85DvY2lI;4Gn52ZvMur1MA^KIH&mjQnF_phYO;&q*fC0~o{&0HU zqV`@2MPw&;nATNh(dt@`3awPV8lL3o`7Ck<+_p8X%9tTwPt0nGWP)sPw?kTfD!QO95w6xntuO8Vm>^WT@?xOZ8=z@5O39{+fLsF2zy=JtY#mtZ_Y1$^nq z+#oXG9xXr+)pJ4iSXB1lWC7wwaMkM!!+jyZl0Vz1+**mqKK+&1Ff3EI_$m2-<2B>+ zOtFGDrr68@)v@A=O+F_4>)UW|Jfy(-4y~UPefSA)oiqLDtTG{j{|YV7AcoeV(pGGb)EUi_j=^SQ-XJTO56vcBbqU6f*Pg@MmD!&@ zjq$FuZCZIyM=Nb(FKFV{o8S3b73>bV6vb7wmtAY(MOA^Q7mUZuwu+3G$hDxag40tJ zFV85_`x2~($(Kj&W$=c*_)zFjBCG8k=b12K!u^=PacE>?b!nygkGvl{oT5bT^}2;R zIOCMF8lHtCeJg0}EM41{v??J79LUD*7q2}qB%zRkHBowT=&)(X0={mQbsm<7 zo(wn>ZVyT?Y0-R%Pl!pOQ0Q*`<_NsE9{b=tihC~@Iy|T4QB$w_+2?(@vTpLmgE$|2 z`zm;Haw@Ugj*3Rhls1?NSy^chk-vFNV92Q$7GpO5U9StQY<9GM!k9nqtTf9BsQ1@m zFOwx}YAM>|B(9sWH7mhg(z0t49Xge#&wzArF(o}Ox~n-q@DldJ))k)xIcb82z)ImaCbvh zdv_$;tV6+`#Lk>wVL$PYZiqDl&%*pA`IKSfaQ*#UMTrW64P7aBf=mbYv%|`LYp@9; z7SL-W4Fx?4G|;V0U&n>iRugW4O*O%(oHfLWRsJ!ieS>J~^m~F)B>vSP#)Khrp}jw_ zk-7l?7M2flZh!|IXX;KYQFdi=B5a|n1X9~Hf!3>;*Ddp~&&!Z+-ax}&@8isss1F-v zO5Akk7?jU<&>z-d_}cxaSYv#V=Dy9ET*QsjhTGb+(i1fVWGljLBw4*H+Rai0b@I|_ z)Yk)orA|Kj>+6M9ExqXKK3wa!bnJld!B;~ZQuPuX)%>5Yd;dF9J})QQ%_9)wb`|!K zGq+yK=Z-#H*aMas-F^OwCy2Li%hWZw+S(*PLMueJDz@Fdo@TZAK9;~8TqdtyvqJ-H zZp|AYW8hAHhS-}oM(-*|b~ph6!GwG6=sCZi*L)x$oMlgCih95wCnE_S`U-cHr9e6m zVp=oEhTAli9x5dP=aqW-#*NzH(`4X+=PwR+`eAjk#PB4qLeethoO!x-+c|Q=w|$-~ zE!FM80UksTHYW6*{xUEq6#Rc~eReWw2rX;xC-bhh@Cvu^JZtLWj+*2iz;~Tdf*#VH)jC^zA9JrXHWbXKGSwszk=ITG5wM88-^qUr z;k#I)GrJoH8(3*Fqx)BBt()wB9^WoSR5;$HjYzXEHukf|tb2+jaamsLHG}x##PyD7Fs&L`ZB4${`(3OJU8+L{ zW4A>t{7vWxc-HAeRF@RNI7Xs;#DEo=i6(&?Mg8FTVjPki@`{4isPm4$9>J7uDxrTJ zaVS_$;taBgZ1MQWHe=>U~CJ@cS^X zaylpSC`Wzp6S^$9i0v)(Y3^G|OS6!wm#17Q8Qs4gP`tRN@`bnsrDMF_EG0Ih6fIf7Y|F&`ZZ^Dl_elqK2R#kU%=u9_TXeR zy4)|uP#P(-H+~u}h^&J*|kg2FgrY20-pL8v(a;kABgC55(Vkrb{qQFv#~Z zQu9Izxq`k8O#Y1Q8yru1x~E}kD21TtzB?OnLg0uj^?4$Dl^)Mn>WMg>ejCns+HF4X zYx0a??qBH&^3EC}g^T?YdLwIX3z9G+JzqrM*f*aLalPB(&WdYP|1s_>0nX!A&WIJ6vXi?r2f z-Nu`6c!Uy+cs(%+CV<68u!*&$btBFaNP0wi$zGvh7%fa-Jq)?&?$lYtBcyEV=dk-t zerE^}BR*>|jrSt#PZ7~DCk#sB$8iG>Q}GU^o!g0s8h=o{g_M&d64*X#llm8brq>{b z0?C4LzomNjXe2=>FtTWz*|MRqp_E9uYFB1mxJ<#8`2>kF8E8tfK7kNnU(?W(KzW@! zFJc=WUlwSm)&Z7qIRCeC6m)A4i-uWjizegp0y^LJszTHIN`c5y!8t)j}rjOY-Q0BnIplk!e8uYpJaux^#g zi@d<{Kz?QcXOWEg1_2ilxpt4R^yTeHXendBYz3~Yrh*`!o<0xth5$^>&Ep0W zrWDmVLn}m=6&~l`ZRnzk7kn+g3mhIH zK_s<)y?k>95?rQQlqUfo2xDg%YKK`V4ZS51}ZHIRU&8RPVy!Dk*pFvESJ9Z3m_L1hN_)#zI@-+TwI9LUjiUQ7JD`OgB2 zzfS+9&K~~#%|8E#vj>$DS(EhO)Z<_MkUgHV>|u{z+F2ViTbZB*{9h@mznRovTv*~^ zKgfvvjG0&oG9l1uqr@5Z;8hNANoA!vs9eH75CBwI6DH8(D*-Y1Z6AT)E(`6nGd!$b&Pi7GWdqZyJ_7C+7a17`cYwriSw!`ctOr4^SRUIpeMH ztrzM}7k@qCC#QOfaL-+=%3FVIV2#YZi__Ge{~F8>P)$&|$;d6-&$>*RMC!d3<(;+dfbayeD3C42gnWtz~4-c`p&W zUMLh7I%0Vwu(bgRxrZm=%3IYtmaM4;Zf)aIPtg009HO3Uzs(!VQ4NXIzi1logJBw* z7)W~W`4o(A@ekjDcA+ z;!MeX#Euk{b{;gLYOc|ar=Yds7_xHT8TtJu|5$b0kKD5~(wk725{-kTx_Rknz{Su$ z7^ug_W``8iP~FEDr}Y$en+HV2uR+DQnycwnsC7=cRYV;J62CBW8r%pZ%Rn}cGJCftv3ef{M^>; zpwhdJ`|?vDVw|KlH|j87fhE4)$?$-k9Mktl&se6qCn~uyTWOJfczD^WU6~Q+lhX(9 zuX786Io6`z*~9QKyW(GA(YOC58Z{4IE5ilnWhaL=Wd_r3_wF{m$`0nK^H;>{7%C$J z1d5DHjk!rSlSi&`Y;6%?Q<~Exd!;@OAQm?LO%j2*v|p5~Qs0GrKF({tl*iifAf=5q z*5X&PS)1ab-_nUCRk2y`Jwatrod4-lD1(S8iW9UjF8SlaI-AddJrKX;%lp+ub9@b{~?dO zrcxD~!9^rlIqS8+nbcMOm#z`u30hLqrtwgpYqt!M6i#FpJ?;TPHZOi6t}JT!gyrv( zNVs~0NU>Yl68h9M%=49m@tHwdMh2@b7sg!2*$Xt|nl|C>&R;p2q(2N@HCQ*M&3xOT z7X}f2;VYC^h&d5^#2_P&)X;}p!nz`CS2RtomT0}{umbVZ!#Gw`vDkkIqWJBM{Fz{egO9u2ud!YsLf zzQj=beKme~H1j_MzxrD*D{rr#TYleWF4Zw^RgU9k2@N!}L!d+3ficXZ@$M!5JHd$W z;uD3Xw)5$WP|Hk48lxU|gYi(ghOG#=Cmm?~YwA9WCO6A}kfZ_DJn^$#Wb%R{;;NO& zYg)|Z*{(xCapnu%aPp469XZ$?^v6Pvy(_HzX>Ux`v6IVcx# z%_TT);nH=g$Mr!~pq*8UbrCwoY>cr#9fx)mEhb&XRe2oSu8eW{7sCj~<_iJ=Vx7tk z)h?V%KnwY+90JZ;)r30(u=&iuCfMdVy4P5xcmlX@f~ z2tS`Po%U0EI?eEU=1{UedyTW$Pk}T@R(OVuC9K~u1V5X_gw@67*9I$s{0ee~8t3&&zijg@SSh5G5ph$`}&=z>76^(F=bhhcbg8mA1K(P|FS_ z&oozPBUnwXfYu#wL09MOQEMQ{PX9I_-V%CT1eQc!3^2r+6F4fK{C0Y#et|^Uar1mSA!nsY?8$=M@EjMR9r6 z%~Q)C(N%5J{RnYo1#?*H|pyUjB+Sk2p`e#`0*Cv+Y3>Z6sG-e4~`@L+3+h~Q287%6Vl3cx^w@5 zAxsjpnx9vN_~GApuIgM|3CSFa9BzB!9oG zOV%nn2^DsI*m&ZmwL1=jUSiw?T)HQ{P@=Ry2y)yeEC zH$8UqNL{RXZ1*+oj$C-wt_Kf^=xb{Eg+-ID8rtn^?yKA&&`QK>g(>j~i0;1T;nJ9+ z&oU}scn(wgyU4&C)^OzdLf}M69&Q}j8o(>mA#dzacz5sU(J3bckSFu#{$3wG4-PjK ze6E_rCc@KD)S8*iQXZ3yH3nriT+S2n|k~A9zbOLh$~~a_3Gte z3vc@bRcW$i7l>loMqdQwwvb%cfZgq4+?h&Y-c2puZihrx822c&$~nxz=ut}*y&Zn% ztsepBGrrkY_5p6yAuz$b;tOd;Hga|^8+<{=I}G_?K779KxBCcpW;-q>kYFkipo7NaN&*nx0zrM zy13~z%$$IC8=EB=3;uxCOmZ=-i<J{uV(mZ|5-TFeq6=YdYa=4>GnSw2s{}!WZj? z$g(MSz7a4AM=*K^_?N=3Wae2xehy2gOy)M)Wzp=ra94{uhC-5$Zcf&{E%#Ex_$JdH?^Ttdqg3Iz#yX=v20qj!$kjVn z2?HmRPmyzMy$rA3I&MGldKzXq&4`M_C#|Xc$ky#)1k6o!z&%O`_agF0zd`YH^<Np~=jWF(=xJwY2a+UC*e)i2| zMOCG?uK&e}s_uXu)9rz-H(O~#47Ty2f5ZeYIq6qM-5vHl;IGHBbQ=sHZiBhRpSv$b zrII2bZ7uihhwHuhWopQkK%ZIV$E~$fz6plZo;1ggpEv;}3OaQiJYNvMlgtG9Z_mJG zCbRcJ^W+38_r~)Ca+~huJ2Za`H+9CAcU`yUok-x$GjOCV)=OM2MpeU%lg-im`NDV% ztYy;`oUk$OQMZB~knlZMMzp)dw}FW??d-31$ri?)?_imoC&5ve{*MeMzVm(52=M}{ zTeB@lWRF^~07!tyrKdCB>-kVLsSV1Kedq6`2|2y?6L%mX77Xjsio)mBvO4O z&1E+Sbn5 z;>jp(ND4Ay6YNm)>wFfbQbMY1a0{!)iBEm>gqq#MtG?e#{j2S)p}I9c-8ISX8EII7 zfk9bU!=-jMMX-<}j@Jvz8hsGvwNBcfq?mjU{g1$xMVZjNeE|7lDEztG?I%>B3JF?G z?yiXFMJ7)TD{)&Fxo4=N_vTL!IG{(7N{EX|3VYQ+8Sj(y&+Gki;^f8d4kD=foq_eN zLM1fU@Q5E$-Y@rUgC@*EvQAvDeY%J1L2@gg(rHDHGr9pwk*(EEyBd4OuXc(za;;_P z$yYozDiRu*s*@!!@Qs{DrIV%_)qAz^utVmF_CW6OP`l}`Oo#YeM z5MdQLk_Xw&f%DY#DoFV0p=iMf-z|nr^;uKqRUfhs&v_BQ1*g*7b6GHb)m^9Z)8-!* zva&phaO#>LwJ}Mw@ClO@$jEyhz&2TT;FG>*R9X8D*w)!R%3D%PpAq8DVUpXoBf0t| zlzdMe>kl+k(1It3DC1oIqn1dP(mVghaAvS7wij#K#Sk|ecmh$?gR`V$@w$>Xa2agrxn20u^H};@Ag-c^ezCoYIZoskGpC81^81It}fUm$>|`G zp64&wm9+HvqF!g7Mo%vc{cZ1<>6<1uKkX+IXe5&mwD5LUcaNpRe0K3W&8j%MRRadD zSaq2mVMcJjSvnZqWcn0@EX2dF8NiCU&)zn?x!MJ%ylx5S4<>B$O;ScQcI_5zc*8KjS4t5Nk~9C;H_L&6(Aa&2P~pP^wXrzIr88 z+brXi8pYp@P5&{cGd3D-OD&L}avm%lpMl^bxF~AQa#H(#!N4S((`eNb)*?YB;8TDX zW8=_8ehfVF=dH&!TkQWfoYN~t#t}{2eKmnRCn;R181{Y!C$f)ngsKIlb0uCauyio# zutuTFrx#8Tnjf{=yM2hzmLs%!DE6>qThywM9L!fm3#NSv%|i3>@-dTB&|@V{o@>$3S!xCkJf7e*7=iTqC3Z1c}0mgrJz!S z14#sU%!V&^oEoN?L#e}U2ImV9JpPBOrq+8r=qDvy$;M8Zv%ErAN)Whs+S)~3N|~O( z-qd&)=no0}ggwWnV=Zi9@}%h`JW_Nlo%m)QP`;SP`$f;t*DMBO+6j6L9b64z-tcag z>G%!f_7l6sC-prHV>MgUtM}iL9=0~H57(L9`G+GWC%R|9E8}m0C!sd(x3Jm3#wZ08 z*WWG&Pv$##BzBlz5nl=>4dYn} zj?EN5j6?|mPHEcd^JksQ%&i=BGHE-CxIrw;I60` zmGWtZZI3_g59T#n&KJ27{1z4#HK44uaaTXAs(mQ7(RFj1+6JtXxOkR;EK}3XKl0=S=yDA{x}HGqsh)-YC7%A;NKrw0ZDgOTJ3IaBy{tBO8Q&ScA5;Jr}1a5hskp!0H4=f{XO3}9?8=ZxLkK98>tS}1+Xws`>|SI z{X6vB=rJPoe6#Bmx~t1)oRE1aG3*oV&}w22bw!HNgnItnF1<0}%6#wWu_L`p|AdOo zbIpTA1+Iqpe}eeL^lTdv zV&Sd)*x(H-7X*P=7;*N_NvI*nmjGWS^F)4@VFW0<997xx)ANKWw zk@UQE0UGPwIWJyUBY#NWwmsSYgn8V%Uh!e$r?Y9fs zO!OyYM$kK$MV0b-GZ5th?{#hSJ_jNNsuNwj;58t>7IBQmc5IwYgv$F7^Zu!AIT%z$ zb0q2h7<)Y?5Kr!$3tqhsK*d>H>a%ZlI$mH8bkGQR!*)G&JvQhvyF`DK`mTLFcq~)| z@ys)5>bS$3D&VQEu=G4QdRNEQoPvv>ID>f7DslfA5g_&8H%4!N!+!->i@a_y5S%6N zC+n5>)q@DJfXO}jY2Ff00ga+94I38EQ(x&p25Efbc{ByEbG*WKy7IDJ^QUte@!x7< zX0hx4QA--(Kk32UfZ;jgQG_UXTnMhce0}kLcUlp051iK=UnxN$w5UUIe6Ld$l4mlP z^1;V)5mFn!L(9-_B|j>LRFRmKdKb3`j<8R@y#YDB$4)IC&Z?rKk$uB{EwRjTbt!UH z?S#mh?IyEQ_r3-~2Dsz22SqEhV(0-cVt$BCB`I=j6%F}Q2=HNA9O<1N_{*kHTxu7; zB3u#l#?^zhx0Y@Et(@I>TTS5K$f zd1Z!B3ZzYYERiFLHxBd0pcSi?@#-4zpF>AC^(@PZtb`Jrsyb^+g8ze%wwoFOKT|Ug z>ph1D>s2k=o(n(%)0kW0ckci}Qleiq&b@`~r~;v1dbjv~G-ScqbycW#|De4B>Kzvi z(xL2TKeyH7I1i0N@11>ov<4$g(*ruuV>vFr!54Ns$Xbfs3`drPK^{J9>~VDaP91$Z zc1zt!f6Lm!p-O^E7h2T#x-qmW^R%c}bp5rzXPLz>BE`&^MEE5kdL|a#sM!$o5J^(z zAv$V$7W(bpNhJWf)Ae?LxH7t%zqXwtMclM|W91`!P5^bSR~et3P=?y~n2~p{6=mxM zre(&%mYO8Fk2ftG5U!+#SQY<5B}A6~Z$<8gS&|Sp12|!1ReEvgfAh8uzZnuiAdH5k zxl0KDV_KEo?RW<)YIKUVB_3OvJD&sO`u zTynr>XRIS8uLwJ(e~-9}T^!tX=G)L_bY~~SR8{B~2UEnC&C3G&h(Y_mrNbM$e>wr! zVbcj^R^6os-)N@-r)5-a=JfC~q5YrSJ@F#tn7tJp41)`k7D{&8I*$ASG&P;io#cI8 z=yO$B_rEO35XA2D)-&r;LoNlRF1+XzJ&$cJiy1Tm6r`)-l3vXRgL9whQ1%U$Vygv0 z+ot)YXQ(^1zvdyett}I*{@=+7lw(>w%R(A>si^?rh|e#7((caqSJxL$gsNAAHZF!L z?HbXar*?;1Ai?p+Q>LlvSfJ!srctLf*^&0bv4|4q)U!^7OEc{gMWa%H zAY%J+H#%m+&(MjFM62QcV#(tPZoum*mLp$va#}TRJ*6D-jgbuLt5+|*>p9oS9x8^q;E5t*NQV=;BeE$HYkg^O z2nIMDE@6G_s;2#p?LeQbVQp{lI=DfD^MxF_3)6y+jmGFd7;X58ZW z5sQE)ymW|%O*{Gr3=`~Y@}P z^*xT-1$&bhiwCm|1DN$VRA|P>1s6W_OI0Ki1clPOo^&GAdP??gVX}`yTR31u7;6;f zQ@4XYNkpHmyY|-hPJT^Hh<>N>GcJZt4uSg6f{1p{cb(cdMEDR#J}|7rQr}4Pejh~l zXdqDrOzFr{5wqE|i8fyWTqzOuE;s7;2$A4KS8eYBsWNDzXq}T_lwa%KV_o3|LJy-EmsI?|zvAWG4DGvHWf@ z;!bo;=#RkYMjyl_6TdF}YMz3IW?U$&)O*}b<`|qmN^2J#3!jc;Js*w=xe+F}v=aqu zNVg60$}#lXVFYAZgm%D|yrBu)!xhep50h2F?^IHGU~jlkq|^41G>Vu14@$c~`OS_> z=IW#SJ^x7tUWRW7ZPsj$%nS5dhcAUpW2)zN)Y5~!R*}@{GlPh!+4AD2*_DyK zd#gy3x-%@zrKN#rk^2QK^y2$drF|a9pl6OIVVV+Hwpds0uz{&Syfzn%0*0T_n9`G#BDbG?JG zo~A0zc&91Oqo~o;=^9K{*)3q=%=r9H(R@Q$J8b(ymxKKz9A9Mk!zcA)BFiU$r!*Xp zSS*$6p#o#~1?(AaHaWU|VnjuG)6;HsR8JV$hi$7q#{=LK=D~G2Scx=i{u>!0#b#Gr zCmh+=By3K?DGT*14Lcb*ndPX;dcK26fu-{LPa>PSJSt@Fp^RMmKUAKC-{)L47zv^_dWMlfK`E)VEvJI4a- z8Fv55+_+bHE`!j4UZ~1$piR#_Ecd!6YO(!<TkH9;1+!g)TVKR?JjS-`-^9;U$Z!1QxJ$);Yl?~M?cFdD-f(|vS-3Ov;JRaJX21TBLyGeVtG}5Im;V+DU(b*AV?(#$Q(u1eiZ{yaK zDq0)A-%+kI4+)8TsE!OokQjY)L>2DDiEl=#6bo0lPkl_h?$TTfDHdc|s@||gN*SFW zFX6=b*fh4ZaG0tf7FMZgy^Bb0&%Mj*fk?B+3^@8nEVo=d`;@h4fq#vjXsa=M8*|R- z-y~c`QTe^vGiHOSEFvx)&#iqsjgJ}6aSNv(Za zC<-%w4XB11p$jm@S=%m@`Vv^VPpv+n1n)yPA)4cEQ9Jgx4EZ2ALRCD+w7gczA@gM; zdv+}9kogSa`_qmIHu<60o-Yk+7!4E4Xjp=1aBYJNx;q7kA=+V>932V%6R>36 zmtUPa{RY7}_LMP@SK5;Y118EV9j~~*AdOs!*(@ebn?-&rSLB&-V;3J%j}{PEBkOru z2KE?KHUh&%=8dEcx}E;hP#iph*&s|BWZr^aWAQz zh(6p*hH2v9aQUA8g&ND_Fm%dC;M_Odi{wzC=-i{-o8F6*&^RGhphX_+vlxP^lp`r5 zHWsA#)b_$R$E3pE1H%CavGKE+sAbG6v1ImY0nK2fiZIV=@Z?(~;imi(=tJ?#qo3tr z#>I!h(icioy&W)pD=|lTU&;uES-~E9shyc88395-jGx9f&-^+s?4uF)=ot18mWhtH zhET1gaKaL{l;Z$}{f%ZfID?kOHsi~TIWZpg%oUa5sEyBlD|*OqUw7cXIZM3B9#Xlm zII*%k+pF_}@sEJdzGr<&q%+w`h5AxvVdvf!e-Wm7)M;%;(vI|I25f9Sa}xe*^PKlK z9RHWgtwUg|j1hua9YnJkA4ijau|yf_OL@qIS8er0k zUgv~%6sBeQ8+;c*1ln~SoY(yiTegJWNW3YZ)X}SG0q#X+dW>pY9ciR0&)N?WyFaN4 zk1bm!vz74yC!m}{!nW9j8yS_wvR(GXRVds^?-Z~< zpsIA8?ncjZp-E*di?|b^4QqJTpDXr81JgVt30Ljo5kvIehH+lPGX%S#b&&|roP$$i z%NJW@VANSO*MeuSiBg_##JTjCX%<4ce1#nr7obDbEqmU6cMlgz2{*W`8=eViQ_+1P zrh-q~IC)UerhXBYMkYE*(|YUCk+8YoN#+nXWaNYx~c$QmWk( zCqk{Ol;=OHwJPUFI8Oa4vMyxFde=F&8boHK|II>BYbexBk@ul;VT8~zZ;uY52tI*f z#&le~8Wa-Y+pfoG(KuP8LjeHtIyP-4xBxup3&D=17GWMsEs+J1$drCOvvO`td^|+x zek8AYD4`H-**GFR9^s?ZotUhbmTa3E!<`k7Ik6f}+3)iKw`ZC;B^h^H*b$teby^b6 zh?C#UDb2XsEwq2;96Z>`pSzhTNPs42?2GdOX6?NC$1M$=s+)4B1D+~xg5>QWRoSI6 zDChSU?*QdNTldz~Qx4|zAj#tUFhrFwC1LZsL*5TMuIf%m-l4uGd?zYVfNE;s*!890 zmnY<#a)f$O1&0m_67Hcuxa^_kH)!$*(WJR;BZnq!(&{9HJ)aY7D{2^om0vFUcsk)D zIf330H~*2f*&zw^j!U3da!CXU;SX-q3$A`VPBXrCWtN-eLH(XE`8GL=;MtR}50DxxroeOQgI8i5X>dZ_9Ib(PyqDXG?=!!Z@|>(-Vlug172kYQPUM;q=AK-|`b7v%cf3IWjy|X8;f_lHlmN z1!Mj(72{z?JV^aSGq;mSCdDE(#k&TXIEM-(oNf}Ij`l1I1UsUrQlxPa!! znl{YZbnDzR=NoS(LM%f0r4_-|$xgtRgMVTq1vV{(&>ywH+&sSz7vwbs)v^wS4fzn{ zWc@%o>LTL*+-~aCu@(!;f|I=ax6<%iwi?=tY!W+j26( z{UtrQe7vQf4yWd4*DvD8khL-(>dyBeAcI7LNX3Ljwa`;qlL2?BL!#$YuzxL%Ci~L8 zijWQGOBDsF1p-n|q)2kuvc+MBjgpmO4q3<==k)k<`KryGomKpZ#rX7wdK1 z1ni{_ADS4^SDw?@;KpP2UaC&yU)Zx-%OY*E=~ydr{9>pD%Z_p0J0Rs$zw(GCk7D-h zT;E;+?^L+PkJ2aoXR#?%3!(4e)v3l4Y`=(4meNQV&)hmpEK193Qj`=kFD%-M<$TI% zU-9ncN`Y=kjjEQIr`TgU{ExVeGv%VdP#>0Hfp^HbPKOCZpTWBN##bffb&1W63 z$`|Tz*qNsM$WcAHKe7xl%kgF!j)GRx|Nu329*UD4r}StoF*1`N0W zXa69Vs(Vt$YOa3}9n_pK5ohcf8R4{}C}BpRNArJE(K|`sIAzbnQs0lot}cI>RIqwEu}bRaRx9CgS25 ztWn(a#FsvjSd*!MJtY$I(%dSQ-%((RRLk5dAnnXXvv$lL@dJ^MLVwBK8NDa@^Ib~U zvZ80-3GK1FJ%K%Y$NGY`eq()CJ-3`*V9)C9`vp(>DX}8nwrg)h70_pFo)wL0sZ%qG zaflJA=&(?eTNfl1oSAc&eb*mA4bM~Agt25eN?JxU%`7e#RUY-aY=1Pu0Y1pHjsH3~ zbsrn&lcLYep--Zp(@Mp!?L0Wc9E|3V$#2iHr+gnp#j^fM;wx-WB3!S;_F2K|cPy+4 zi!B>`w76xXdWi?b$BNe;G}_0N_*gnIu-2GgOKLo9Rt|LXq%yu)NMWp*%s*d#?d`3? zGl#q*zo~eM-yk2IQCYj-=dJ3f&6bDPxm5m!g1ZcPoL?OECq1T=#=bks#!!kAzd?>g z+e_l8@zM?Czz5s>nm$Q{LZ0v~FW??BvU#7mmva6%d9bw9 z<5{d?zu67ce&rPE%+c@11qBv2#O2FmW|^g^CZ0aJZ({?~AG@wh+%Lux2Yq_I?E4aa z4eh&h%(F$5<+rFFzKq8@a-I%dm|HuoN%q4`j}%H+*UnJNeWj9qxH zuhliFCd*T}`2OI@;e)(CBQ}4qnO|4J73RCCQbh`A!J?RM8I z(sM5y7VAS^k#4buGl*v^(7Am}`8va?z-x z{Z0Fyh11L|ro)Rvr(9Bpd-L_0Yw8*jlf&qq(M6mSCdY_pk0ni(?{QW$d^vwNLG+r5 zh~0~Fu8BX+$})qWm|xwrtsosbwrsZ+FyAFIK(92x&FT74J`X3S`n_ZR4bCjjl4VAX zT#M4MVXIX$r&Ls%hV&r9PMtL~P4@SLM1?`aWo>l6%PgN_XxdoU2mOyjtkP8w?}+9>9YBbqx}oN@kycVU`Sp#A-bYG+ho@jj06 zNM)gkoviv~w(a3ZMpPHmPFd$uy`vv0cr#_c<;PX)jRO}+TJ@tUSeOE`ez3;QOQ88U zIHRuZat>e}XovMJGv)^NSPzzB?l0lKWHjo&3bc1OsT*Yqbl4s2(-7976CWS#kyS3%4{q0_I4Oxw#{d9db1A*`F( zQNBk*_xE4RP5*QW$}(?j;;cQQ3j95NNoN|PW>t>C-0h`yclkR82 zBIGW~?QhtL8NI)wwdPT!NwXo?Q&GM=E@#2Z_1!91JFn$x#Jy2+3W}5I@e{4~v3+q?4!@1~c^|>3PWLI-nn~!sBpSYl9af9XZ)ia;H6z%Eu=o79OG7$+p{~^z{ z&d9`F>MsbES(+e@@z1Yt9#$TzwQplQ#tfWbV zk32s#GdlWf%9phK*PHc%;r3zstslJiUdri52Qc-HJ*@uEt;R(vWiBG&)5eEcju$Aa z_lz_be~t>)esAK}4r<%gBf6>^%H4YA2FGEFrD)8k;#nWOUK{^OO+Nvv`+sd1tztQp z4=VyS>O>+dEez>iQ~Qfq3=A0v>U%c1Cs|Pt>DAwJIQ2*I${&i4?-b>Y{7Snj82UVV ziS^0!N<{=27jl2RPs(^*Ubw7^33PXNVRBshbD=bJW%qumN`&aM_IJ;SKb5)X3>8;k z&z(%JU`@3&YGuGQFz?&L`E)v~PNLx_iuCa->yW*Vst46W z3g^z8Dp6y&T!E=8u2<@n5PXE|PLsS7 zXY^S&aoI46UflUQU5#zsw;&6=_v7%_ak=gL_eR&Mi1(>nr>&Z21sE5fsPjo)an2ku zchh9l96eDo{gjh0y`v~#f(i9#{p1PxTlwC~SlrrS&0|g*{B=xpAS`dD7-d~k2TrHk_IJ=Y-2EXB0FO&BTJ^q zPRK;|Ft%)i8jK}_WY4}#LY8bzNcd$W|<1p11S<_1^o(eeQkEJ>Tb# z`<#2u=bZc8LXl%FaX5Vt`-k)Sfd->2yV^a-B(uu#*e>bCldBQTs+_>tXVWR%!}Qvvhp4j{iX592#!!Tgv&+bk%Lt9LetrAs zRTwL((~R?H0~f>Qxlb{W-d?M7s42$GM(i}XfT#Kzu9;&Y{I$oqLqq#|5PP0wzwVgd zd!9;mt4EX&e+YG;XSrgo4#=vNO|*c~=h)ZGPNblvDTzek(4y{TgTyT~ON=JR^qcxn zC{UeN-fsN`q6g3ZEDj9dOn@eblt)<%kqn1jGWgANgTpMnJw5g?Rqq0Z#xC(-LR=G@l8fi3#1DZ{PC+6F z%C>cqv_C>QKUg^^Z6kTOb$aH#Z4srI-Cvad@(d=oePNkb)i*TcB3HQ+N)gYwv3iTC|ssnuV9oUH^eEC_@;Y`>+~}CyayDHH**DHbMCRh zz6HT}grDE#;7Qu$5tDA^2^CcaCPPeLQ5AKvCob7Ym+Z%1M>qH)ANby=$5QaG8AOK;P9xy>d zv54-$unBidLNiN5N*ewirz$dYX9Z_uAk2XO8m`GF#q;tC(znQZ6$<}>82wUdeW$zE zxEt_^TSZ$-s0yKZ+dF_F(f}~aB+F%~S2IPIocCg3%^Q5U@KWU{#MD8;+7U+4hShg1 zoDe*?y?O0pzCbQAU(e1@gQLZ}EFOB~>|3K7T}IRoQB(yqBX_DE9eOYSUaQ>F~aK+v;ty%K6b* z1Y+vkE8DU)-`09Htzv;A%csZ`%nXb8$T~&49OtycaJNFO(^OQHrp25q^{(zk!&>gK zipjbax^+I|!a!dlr%8-oTbE<2s|HqzurV=;-}XV5aO{5=;p(XPL>TTbN!zmin- zy&RL)&>@{NL$Z@?UKoYk0{X1$mkXuy3Sr|{$Mc`HESdPgy2EQEma4*MJ9V2#2lmc4 z&enbPw{s|QkKxsjHk>-bn~6LKTK(2e+8OlX*|`WFuQcc`PCmH^mVU99L8}9sv;Qd- zD7P>kL^-P`L{`;}ZzucJelHJBqMQ(hz`w|-0CvpT{;oFn)HJ8w6faCuy~a}0W|rr7 z{m`ryea)BZ!i&TyG@)ZpO?a@qutmR98~7_=M+RPC$V6=ve=K;mId%V}EgbRq$k(Ot z$2w^`!av#{Qiwg%Mhq+tm7=w*;i7I;O`!Ri91@8Npq2jf=O|* zNwh91aOIGr>4O8h(b1IS&W*qQbPGb`V|TI1yB}q>euOS;6xZA(^~Vau8Ki@wc@RQg zGJxBhqANg9={|Q5*xH%2q3M5#9q9LNd}wERPtlVab>aTiUCzz0+&XMVhOd7%jP^UEUgQB&6<)PIgP7Buv#&VO$Cg#<%cbK z_53wMqy7?y<1e*7j!v(rpgZZ7n9^X36cfJB zdeWV*JVbR?8EO+popj5xw|8!OGAp(8ZDP~v)T;Hy9$GODa9azW(;E|mx3Tw$zi4zc zI@ISM_T%#?ja+U{Bn{^eR;R z%stksOaFrhCHN{qBdHzBtIKn!O}$zD4`( zL$pEbs^9IF1}3h>IP=;`){XKj34*yJoET4IB=`%B>m_l$iSmtJ*w z<9&sfOdGs2eU)ZZr6;ad3u(s`(MBmLh?rtG6G$+ZcytJ=v;K!4}k?yiBp{-KUAIeB?GWqDPZQv)WaAg}1? z9_;QD2z3nz{!=Q+W|hUk7XWx53Iyo>qjNeo$4s3D@c&5py1EAW`@8$Ny8kb|KT+L3 qlFc!hiT?(7e+Kzy8vkcg?W6xBH4?$V_}fE&+6`#{0GHg~vws1&;B939 diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_emof.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_emof.csv new file mode 100644 index 0000000..0a22421 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_emof.csv @@ -0,0 +1,5 @@ +eventID,occurrenceID,measurementValue,measurementType,measurementTypeID,measurementMethod,measurementUnit,measurementUnitID +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T03:00:00Z_0.0_bearded_seal,10A0200,tag serial number,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000189/,,, +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T03:00:00Z_0.0_bearded_seal,Wildlife Computers,tag manufacturer,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000183/,,, +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T03:00:00Z_0.0_bearded_seal,SPLASH10,tag make and model,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000185/,,, +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T03:00:00Z_0.0_bearded_seal,head,tag attachment location,http://vocab.nerc.ac.uk/collection/MVB/current/MVB000395/,,, diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv index 019999d..0fd7d9a 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv @@ -1,2 +1,2 @@ eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol -atn_38553_bearded-seal_trajectory_20110618-20120314,2011-06-18T03:00:00Z/2012-03-11T01:09:51Z,"MULTIPOINT (-163 66.64, -162.994 66.62, -163.014 66.617, -163.135 66.6, -163.123 66.601, -163.096 66.605, -163.083 66.625, -163.08 66.64, -163.001 66.662, -162.988 66.644, -163.001 66.644, -162.988 66.646, -162.978 66.665, -163.029 66.652, -163.01 66.629, -162.881 66.58, -162.937 66.537, -162.825 66.559, -162.824 66.548, -162.981 66.631, -162.983 66.639, -162.998 66.632, -162.947 66.583, -162.848 66.561, -162.942 66.603, -162.94 66.61, -163 66.597, -162.873 66.593, -162.829 66.527, -162.779 66.528, -162.656 66.505, -162.697 66.431, -162.769 66.457, -162.784 66.475, -162.779 66.501, -162.824 66.508, -162.924 66.56, -162.906 66.593, -162.942 66.603, -162.96 66.615, -162.957 66.614, -162.97 66.611, -162.933 66.609, -162.991 66.614, -163.019 66.625, -163.039 66.616, -163.005 66.626, -163.006 66.611, -162.988 66.621, -162.996 66.618, -162.991 66.634, -163.013 66.611, -162.962 66.612, -162.97 66.606, -162.981 66.628, -162.954 66.615, -162.949 66.611, -162.892 66.628, -162.903 66.625, -163.081 66.504, -163.059 66.527, -163.036 66.508, -163.019 66.518, -163.038 66.525, -163.048 66.532, -162.988 66.627, -163.002 66.634, -163.072 66.636, -163.082 66.631, -163.072 66.63, -163.059 66.617, -163.172 66.7, -163.152 66.74, -163.6 66.842, -163.624 66.86, -163.661 66.861, -163.65 66.937, -163.93 66.988, -164.349 67.031, -164.584 67.042, -165.046 67.083, -165.827 67.429, -165.951 67.524, -166.001 67.563, -166.067 67.594, -166.111 67.624, -166.456 67.724, -166.485 67.726, -166.589 67.754, -166.746 67.83, -167.802 68.531, -167.901 68.614, -167.235 68.814, -167.21 68.799, -166.734 68.875, -166.703 68.88, -166.442 69.014, -165.98 69.275, -165.986 69.283, -165.892 69.309, -165.82 69.322, -165.812 69.32, -165.751 69.341, -165.787 69.346, -165.385 69.399, -165.368 69.416, -165.219 69.43, -165.189 69.436, -164.969 69.543, -164.92 69.629, -164.257 69.682, -163.637 69.818, -163.632 69.824, -163.637 69.835, -163.663 69.83, -163.604 69.85, -163.621 69.834, -163.666 69.825, -163.661 69.836, -163.643 69.857, -163.635 69.849, -163.63 69.858, -163.589 69.867, -163.604 69.87, -163.589 69.875, -163.606 69.857, -163.596 69.863, -163.605 69.858, -163.571 69.869, -163.599 69.874, -163.526 69.768, -163.568 69.779, -163.647 69.816, -163.673 69.827, -163.654 69.831, -163.61 69.85, -163.61 69.867, -163.098 70.028, -163.085 70.03, -162.602 70.184, -161.647 70.381, -161.378 70.453, -161.425 70.456, -161.502 70.42, -161.553 70.445, -161.522 70.415, -161.58 70.4, -161.573 70.403, -161.595 70.409, -161.614 70.396, -161.632 70.398, -161.67 70.386, -161.767 70.405, -161.77 70.407, -162.431 70.349, -162.562 70.311, -162.621 70.287, -162.645 70.275, -162.748 70.234, -162.93 70.114, -162.963 70.084, -163.008 70.07, -162.965 70.08, -162.938 70.082, -162.982 70.082, -162.968 70.086, -163.647 69.829, -163.702 69.814, -163.661 69.822, -163.712 69.842, -163.711 69.757, -163.72 69.756, -163.631 69.734, -163.638 69.748, -163.615 69.755, -163.609 69.755, -163.605 69.761, -163.638 69.711, -163.611 69.706, -163.635 69.706, -163.644 69.693, -163.754 69.68, -163.905 69.691, -163.947 69.667, -163.917 69.628, -163.877 69.6, -163.875 69.6, -163.968 69.605, -163.757 69.613, -163.881 69.688, -163.9 69.7, -163.899 69.696, -163.935 69.728, -163.942 69.748, -163.677 69.72, -163.677 69.717, -163.628 69.749, -163.585 69.78, -163.644 69.774, -163.644 69.767, -163.66 69.756, -163.556 69.766, -163.596 69.775, -163.629 69.785, -163.651 69.8, -163.654 69.798, -163.651 69.802, -163.655 69.83, -163.668 69.801, -163.599 69.744, -163.643 69.735, -163.638 69.736, -163.52 69.729, -163.641 69.696, -163.644 69.702, -163.622 69.679, -163.628 69.669, -163.626 69.669, -163.615 69.668, -163.649 69.666, -163.635 69.669, -163.672 69.655, -163.688 69.656, -163.625 69.667, -163.638 69.665, -163.67 69.668, -163.642 69.669, -163.642 69.664, -163.64 69.67, -163.739 69.672, -163.646 69.678, -163.631 69.68, -163.628 69.656, -163.67 69.675, -163.653 69.675, -163.667 69.663, -163.686 69.67, -163.647 69.675, -163.672 69.685, -163.678 69.685, -163.663 69.685, -163.637 69.688, -163.647 69.694, -163.59 69.699, -163.633 69.697, -163.637 69.676, -163.666 69.69, -163.66 69.687, -163.666 69.668, -163.61 69.658, -163.603 69.659, -163.568 69.653, -163.565 69.65, -163.567 69.644, -163.652 69.741, -163.653 69.731, -163.651 69.732, -163.653 69.737, -163.635 69.743, -163.625 69.747, -163.619 69.741, -163.635 69.732, -163.7 69.724, -163.643 69.732, -163.641 69.732, -163.65 69.725, -163.639 69.706, -163.645 69.704, -163.656 69.7, -163.64 69.698, -163.663 69.698, -163.677 69.678, -163.668 69.708, -163.665 69.707, -163.665 69.72, -163.714 69.721, -163.711 69.725, -163.622 69.711, -163.642 69.699, -163.821 69.642, -163.686 69.686, -163.689 69.684, -163.684 69.684, -163.643 69.69, -163.672 69.689, -163.629 69.689, -163.65 69.689, -163.66 69.681, -163.691 69.686, -163.653 69.69, -163.676 69.689, -163.633 69.697, -163.672 69.68, -163.717 69.671, -163.696 69.668, -163.661 69.674, -163.652 69.693, -163.658 69.681, -163.689 69.686, -163.654 69.694, -163.638 69.691, -163.644 69.634, -163.694 69.659, -163.706 69.644, -163.754 69.677, -163.689 69.696, -163.68 69.701, -163.669 69.711, -163.655 69.712, -163.656 69.688, -163.663 69.689, -163.693 69.692, -163.665 69.689, -163.669 69.678, -163.66 69.674, -163.675 69.686, -163.643 69.676, -163.653 69.665, -163.66 69.662, -163.832 69.671, -163.833 69.714, -163.824 69.712, -163.819 69.711, -163.811 69.713, -163.817 69.71, -163.665 69.641, -163.7 69.64, -163.712 69.638, -163.663 69.675, -163.678 69.681, -163.692 69.68, -163.677 69.736, -163.685 69.746, -163.7 69.751, -163.624 69.758, -163.681 69.689, -163.715 69.692, -163.698 69.676, -163.696 69.678, -163.701 69.685, -163.695 69.677, -163.694 69.688, -163.712 69.685, -163.687 69.689, -163.709 69.684, -163.642 69.666, -163.65 69.669, -163.691 69.682, -163.672 69.682, -163.668 69.693, -163.708 69.688, -163.726 69.682, -163.694 69.684, -163.669 69.687, -163.662 69.696, -163.662 69.686, -163.673 69.685, -163.683 69.682, -163.68 69.683, -163.687 69.682, -163.705 69.668, -163.699 69.68, -163.69 69.68, -163.657 69.691, -163.63 69.687, -163.632 69.693, -163.638 69.691, -163.682 69.704, -163.688 69.698, -163.666 69.688, -163.687 69.68, -163.696 69.683, -163.693 69.678, -163.704 69.686, -163.704 69.676, -163.664 69.682, -163.691 69.684, -163.673 69.666, -163.699 69.683, -163.702 69.687, -163.691 69.677, -163.694 69.697, -163.72 69.682, -163.755 69.674, -163.757 69.683, -163.75 69.816, -163.715 69.678, -163.862 69.693, -163.856 69.698, -163.857 69.692, -163.865 69.691, -164.088 69.688, -164.081 69.69, -164.09 69.686, -164.094 69.691, -164.073 69.694, -164.087 69.632, -164.105 69.635, -164.094 69.633, -164.14 69.637, -164.132 69.63, -164.153 69.61, -164.134 69.607, -164.151 69.603, -164.163 69.596, -164.2 69.597, -164.211 69.594, -164.168 69.602, -164.16 69.608, -164.178 69.605, -163.734 69.749, -163.736 69.752, -163.138 70.054, -163.173 70.041, -163.18 70.038, -162.403 70.169, -161.314 70.423, -161.298 70.43, -161.263 70.438, -161.012 70.454, -160.972 70.456, -158.767 70.965, -157.374 71.244, -157.235 71.228, -156.734 71.43, -156.446 71.46, -156.283 71.478, -154.494 71.198, -154.595 71.122, -154.668 71.055, -154.613 71.05, -154.597 71.066, -154.575 71.094, -156.058 71.356, -156.197 71.355, -156.556 71.414, -156.625 71.406, -156.842 71.383, -157.014 71.358, -157.451 71.25, -157.974 71.162, -158.309 71.154, -158.298 71.154, -158.324 71.148, -158.292 71.15, -158.234 71.156, -158.281 71.165, -158.25 71.165, -158.327 71.155, -158.324 71.151, -158.329 71.157, -158.325 71.17, -158.568 71.1, -158.342 71.152, -162.084 70.489, -162.198 70.501, -162.447 70.493, -162.583 70.501, -162.61 70.503, -163.578 70.299, -163.614 70.302, -163.624 70.287, -163.644 70.284, -163.66 70.278, -163.72 70.265, -164.038 70.241, -164.12 70.205, -164.113 70.205, -164.113 70.193, -164.093 70.19, -164.112 70.189, -164.142 70.178, -164.149 70.175, -164.156 70.171, -164.174 70.168, -164.25 70.133, -164.239 70.122, -164.237 70.127, -164.248 70.125, -164.223 70.125, -164.254 70.093, -164.312 70.098, -164.315 70.081, -164.344 70.065, -164.341 70.071, -164.452 70.068, -164.392 70.068, -164.273 70.099, -164.249 70.108, -164.245 70.103, -164.226 70.109, -164.234 70.116, -164.269 70.1, -164.296 70.085, -164.292 70.09, -164.246 70.093, -164.29 70.102, -164.272 70.078, -164.225 70.214, -164.141 70.243, -164.047 70.246, -164.01 70.257, -164.241 70.152, -164.271 70.106, -164.335 70.058, -164.316 70.049, -164.411 70.022, -164.403 70.025, -164.417 70.025, -164.673 69.916, -164.822 69.875, -164.838 69.874, -164.859 69.871, -164.879 69.864, -164.503 70.011, -164.472 70.005, -164.462 70.015, -164.46 70.025, -164.47 70.035, -164.506 70.04, -164.547 70.042, -163.699 69.87, -162.371 70.231, -162.31 70.228, -162.167 70.245, -162.141 70.484, -162.1 70.461, -162.459 70.499, -162.627 70.503, -162.639 70.512, -162.755 70.513, -162.811 70.516, -163.676 70.451, -163.844 70.433, -164.024 70.374, -164.042 70.354, -164.066 70.345, -164.034 70.322, -164.118 70.285, -164.145 70.289, -164.256 70.22, -164.33 70.067, -164.356 70.066, -164.367 70.052, -164.399 70.031, -164.41 70.02, -164.437 70.074, -164.378 70.051, -164.377 70.041, -164.351 70.048, -164.746 69.979, -164.814 69.968, -164.881 69.942, -164.982 69.93, -165.292 69.869, -165.476 69.895, -165.509 69.903, -165.546 69.912, -165.683 69.995, -165.735 70.005, -165.849 70.009, -165.922 70.012, -165.914 70.025, -165.887 70.028, -165.863 70.035, -166.043 69.941, -165.936 69.867, -165.926 69.847, -165.808 69.651, -165.873 69.622, -165.888 69.601, -165.878 69.487, -165.798 69.351, -165.818 69.328, -165.773 69.279, -165.773 69.272, -165.597 68.941, -165.539 68.898, -165.455 68.866, -165.315 68.863, -165.252 68.871, -165.134 68.884, -165.248 68.885, -165.231 68.893, -167.053 68.395, -167.165 68.392, -167.24 68.385, -167.28 68.377, -167.368 68.342, -167.409 68.318, -167.398 68.309, -167.434 68.318, -167.446 68.339, -167.464 68.37, -167.661 68.15, -167.701 68.076, -167.716 68.064, -167.876 67.946, -167.853 67.909, -167.755 67.855, -167.331 67.717, -167.298 67.728, -167.307 67.724, -167.295 67.732, -167.266 67.745, -166.433 67.601, -166.32 67.551, -165.916 67.3, -165.901 67.154, -165.865 67.12, -165.825 67.106, -165.857 67.096, -165.918 67.072, -165.878 67.082, -166.069 67.135, -166.061 67.149, -166.179 67.179, -166.165 67.183, -166.187 67.195, -166.406 67.244, -166.518 67.252, -166.601 67.239, -166.684 67.243, -167.062 67.167, -167.053 67.161, -167.43 67.255, -167.424 67.281, -167.414 67.316, -167.342 67.423, -167.288 67.456, -166.994 67.689, -167.015 67.702, -167.074 67.855, -167.03 67.877, -167.031 67.911, -167.119 67.893, -167.119 67.903, -167.259 67.942, -167.312 67.958, -167.409 67.955, -167.426 67.958, -167.466 67.979, -167.502 67.951, -167.637 67.974, -167.96 68.211, -167.786 68.267, -167.787 68.278, -167.266 68.562, -167.233 68.553, -167.248 68.554, -167.223 68.544, -167.216 68.552, -167.183 68.545, -167.169 68.564, -167.183 68.558, -167.189 68.557, -167.205 68.553, -167.165 68.556, -167.168 68.547, -167.157 68.55, -167.17 68.552, -167.164 68.552, -167.182 68.555, -167.17 68.561, -167.168 68.564, -167.163 68.567, -167.167 68.557, -167.167 68.558, -167.183 68.543, -167.168 68.537, -167.177 68.531, -167.164 68.531, -167.166 68.563, -167.192 68.548, -167.15 68.544, -167.124 68.541, -167.121 68.535, -167.092 68.519, -167.085 68.523, -167.113 68.512, -167.173 68.555, -167.128 68.559, -167.085 68.557, -167.053 68.55, -167.032 68.533, -167.043 68.534, -167.005 68.506, -166.997 68.515, -166.918 68.518, -166.944 68.505, -166.966 68.502, -166.984 68.495, -166.981 68.492, -166.961 68.502, -166.98 68.505, -167.02 68.5, -167.012 68.506, -167.02 68.507, -166.995 68.512, -167.033 68.489, -167.005 68.508, -167.008 68.532, -167.044 68.527, -167.081 68.522, -167.079 68.525, -167.1 68.545, -167.104 68.543, -167.038 68.531, -167.062 68.528, -167.067 68.529, -167.007 68.527, -166.992 68.54, -167.09 68.542, -167.09 68.54, -167.11 68.538, -167.121 68.537, -167.1 68.54, -167.17 68.522, -167.129 68.536, -167.09 68.534, -166.956 68.637, -167.23 68.545, -167.132 68.538, -167.12 68.545, -167.117 68.542, -167.014 68.524, -167.011 68.516, -167.021 68.511, -167.051 68.53, -166.975 68.526, -166.825 68.527, -166.84 68.532, -166.756 68.562, -166.796 68.584, -166.818 68.594, -167.153 68.513, -167.117 68.512, -167.127 68.517, -167.134 68.507, -167.133 68.508, -167.134 68.509, -167.098 68.494, -167.087 68.497, -167.068 68.496, -167.035 68.513, -167.033 68.51, -167.034 68.502, -167.048 68.506, -167.038 68.493, -167.019 68.495, -167.044 68.482, -166.97 68.492, -167.061 68.496, -167.123 68.446, -167.107 68.465, -167.125 68.485, -167.114 68.486, -167.044 68.499, -166.996 68.505, -167.049 68.546, -167.094 68.493, -167.147 68.48, -167.149 68.482, -167.194 68.473, -167.002 68.424, -166.996 68.423, -167.001 68.425, -166.999 68.432, -166.978 68.432, -166.982 68.424, -167.013 68.299, -167.002 68.286, -166.997 68.278, -166.978 68.264, -166.962 68.245, -166.956 68.236, -166.716 68.224, -166.719 68.228, -166.718 68.233, -166.729 68.243, -166.729 68.248, -166.738 68.258, -166.799 68.306, -166.962 68.384, -166.985 68.391, -167.145 68.496, -167.103 68.53, -167.099 68.534, -167.109 68.539, -167.116 68.535, -167.122 68.536, -167.133 68.539, -167.135 68.539, -167.137 68.479, -167.152 68.474, -167.174 68.468, -167.182 68.457, -167.199 68.449, -167.208 68.441, -167.228 68.429, -167.554 68.16, -167.544 68.139, -167.508 68.069, -167.502 68.074, -167.492 68.052, -167.473 68.041, -167.48 68.032, -167.199 67.684, -167.284 67.427, -167.285 67.366, -167.287 67.339, -167.791 67.016, -168.194 66.906, -168.234 66.896, -168.639 66.766, -168.85 66.653, -168.853 66.6, -168.81 66.566, -168.538 66.385, -168.447 66.374, -168.433 66.366, -168.025 66.018, -168.514 65.697, -168.587 65.456, -168.672 65.406, -168.681 65.381, -168.662 65.358, -168.655 65.295, -168.632 65.263, -168.572 65.179, -168.665 65.063, -168.737 65.025, -168.73 65.006, -168.753 64.98, -168.755 64.965, -168.747 64.918, -168.758 64.739, -168.742 64.732, -168.732 64.695, -168.624 64.626, -168.394 64.443, -168.43 64.302, -168.447 64.227, -168.459 64.196, -168.481 64.17, -168.476 64.073, -168.463 64.044, -168.495 64.035, -168.469 64.005, -168.568 63.893, -168.708 63.714, -168.682 63.643, -168.513 63.552, -168.487 63.519, -168.373 63.38, -168.261 63.179, -168.433 63.044, -168.509 62.941, -168.526 62.919, -168.758 62.886, -168.823 62.855, -169.054 62.793, -169.059 62.792, -170.217 62.72, -170.227 62.722, -170.219 62.718, -170.236 62.704, -170.254 62.685, -170.344 62.684, -170.008 62.475, -169.978 62.449, -169.975 62.452, -169.869 62.461, -169.892 62.462, -169.864 62.471, -169.844 62.477, -169.86 62.519, -169.859 62.513, -169.832 62.499, -169.821 62.479, -170.279 62.354, -170.292 62.351, -170.344 62.349, -170.365 62.372, -170.518 62.565, -170.512 62.578, -170.508 62.605, -170.493 62.628, -170.441 62.668, -170.406 62.737, -170.392 62.75, -170.382 62.792, -170.236 62.87, -170.221 62.872, -170.227 62.869, -170.187 62.835, -170.183 62.869, -170.098 62.882, -169.746 62.835, -169.534 62.804, -169.45 62.799, -169.417 62.815, -169.227 62.838, -169.122 62.868, -168.79 62.882, -168.76 62.878, -168.747 62.879, -168.702 62.894, -168.675 62.902, -168.626 62.926, -168.481 62.881, -168.522 62.847, -168.406 62.782, -168.399 62.788, -168.416 62.788, -168.267 62.791, -168.26 62.77, -168.234 62.773, -168.199 62.758, -168.224 62.753, -168.178 62.798, -168.2 62.795, -168.168 62.806, -168.169 62.804, -168.573 62.669, -168.605 62.654, -168.846 62.506, -168.853 62.471, -168.87 62.468, -169.198 62.326, -169.578 62.316, -169.708 62.311, -169.742 62.314, -169.767 62.307, -169.914 62.254, -170.194 62.205, -170.292 62.245, -170.34 62.309, -170.37 62.332, -170.403 62.351, -170.479 62.398, -170.483 62.395, -170.496 62.398, -170.669 62.437, -170.797 62.519, -170.747 62.522, -170.75 62.522, -170.79 62.438, -170.784 62.436, -170.799 62.428, -170.803 62.429, -170.816 62.435, -170.777 62.52, -170.777 62.525, -170.766 62.535, -170.732 62.537, -170.712 62.531, -170.702 62.529, -170.667 62.526, -170.632 62.482, -170.78 62.41, -170.773 62.405, -170.807 62.309, -170.905 62.274, -171.095 62.232, -171.159 62.198, -171.209 62.17, -171.287 62.11, -171.594 61.942, -171.625 61.912, -171.144 61.638, -171.054 61.515, -171.266 61.414, -171.259 61.386, -171.254 61.346, -171.634 61.145, -171.664 61.141, -171.847 60.937, -171.842 60.725, -171.711 60.671, -171.684 60.702, -171.778 60.719, -171.793 60.763, -171.672 61.111, -171.621 61.136, -171.65 61.139, -171.722 61.154, -171.929 61.156, -171.906 61.181, -171.99 61.118, -172.037 61.106, -172.172 61.099, -172.133 61.071, -172.135 61.078, -172.164 61.064, -172.135 61.068, -172.176 61.051, -172.225 61.067, -172.437 61.022, -172.58 60.938, -172.545 60.951, -172.543 60.949, -172.556 60.95, -172.435 61.007, -172.453 60.996, -172.407 60.931, -172.307 60.886, -172.101 60.756, -171.9 60.768, -171.917 60.78, -171.661 60.749, -171.519 60.749, -171.464 60.77, -171.522 60.776, -171.439 60.805, -171.494 60.775, -171.524 60.766, -171.48 60.762, -172.201 61.009, -172.133 61.001, -172 60.912, -172.031 60.878, -172.019 60.886, -172.022 60.887, -172.085 60.9, -172.018 60.86, -172.032 60.865, -172.039 60.852, -172.038 60.848, -171.873 60.953, -171.773 60.945, -171.968 61.006, -171.998 61.024, -172.056 61.064, -172.363 61.087, -172.368 61.054, -172.368 61.084, -172.485 61.232, -172.514 61.201, -172.529 61.191, -172.534 61.185, -172.57 61.186, -172.573 61.186, -172.576 61.19, -172.27 61.253, -172.26 61.255, -172.276 61.242, -172.283 61.248, -172.316 61.246, -172.34 61.25, -172.294 61.265, -172.304 61.261, -172.274 61.259, -172.387 61.221, -172.482 61.227, -172.728 60.996, -172.732 61.012, -172.874 60.975, -172.367 60.925, -172.313 60.933, -172.083 60.96, -171.862 60.913, -171.901 60.939, -171.841 60.966, -171.757 60.982, -171.768 60.973, -171.77 60.957, -171.828 60.857, -171.835 60.829, -171.994 60.771, -171.915 60.796, -171.742 60.78, -171.746 60.729, -171.779 60.717, -171.794 60.703, -172.019 60.705, -171.886 60.704, -171.965 60.666, -171.965 60.637, -171.912 60.624, -171.794 60.627, -171.994 60.495, -171.905 60.504, -171.865 60.509, -171.946 60.627, -171.963 60.649, -171.934 60.675, -171.926 60.682, -171.976 60.656, -172.041 60.683, -171.786 60.842, -171.593 60.894, -171.546 60.898, -171.633 60.883, -171.633 60.884, -171.636 60.887, -171.638 60.891, -171.815 60.941, -171.852 61.026, -171.86 61.033, -171.844 61.047, -172.037 61.083, -172.076 61.067, -172.074 61.064, -172.068 61.055, -172.059 61.056, -173.014 60.796, -173.023 60.777, -173.014 60.769, -173.049 60.771, -173.049 60.774, -172.609 60.827, -172.608 60.81, -172.612 60.776, -172.6 60.78, -172.635 60.791, -172.618 60.771, -172.524 60.76, -172.573 60.76, -172.731 60.759, -172.734 60.78, -172.687 60.796, -172.728 60.808, -172.75 60.819, -172.733 60.815, -172.753 60.818, -172.749 60.81, -172.77 60.818, -172.778 60.831, -172.719 60.821, -172.764 60.825, -172.754 60.85, -172.782 60.843, -172.783 60.846, -172.784 60.847, -172.778 60.846, -172.754 60.886, -172.756 60.885, -172.747 60.896, -172.79 60.883, -172.818 60.886, -172.835 60.893, -172.49 60.996, -172.453 61.008, -172.282 60.973, -172.243 60.974, -172.264 60.949, -172.273 60.953, -172.287 60.963, -172.27 60.985, -172.266 60.988, -172.095 61.036, -172.03 61.036, -172.033 61.029, -172.049 61.027, -172.064 61.03, -172.105 61.039, -172.108 61.042, -172.087 61.082, -172.172 61.018, -172.371 60.951, -172.353 60.952, -172.431 60.912, -172.538 60.907, -172.592 60.868, -172.237 60.998, -172.236 60.998, -172.364 61.029, -172.351 61.009, -172.332 60.992, -172.378 60.971, -172.406 60.981, -172.386 60.987, -172.331 60.97, -172.341 60.945, -172.368 60.966, -172.3 60.924, -172.338 60.967, -172.392 60.951, -172.362 60.968, -172.37 61.034, -172.332 61.029, -172.343 61.034, -172.177 60.968, -172.363 60.933, -172.246 60.915, -172.276 60.921, -172.278 60.929, -172.283 60.927, -172.279 60.957, -172.6 60.953, -172.79 60.933, -172.924 60.889, -173.103 60.806, -172.729 60.811, -172.521 60.89, -172.55 60.875, -172.558 60.879, -172.519 60.898, -172.603 60.889, -172.565 60.894, -172.577 61.012, -172.552 61.006, -172.366 60.936, -172.328 60.93, -172.331 60.92, -172.219 60.914, -172.22 60.88, -172.239 60.896, -171.893 61.033, -171.993 61.091, -171.987 61.074, -171.921 61.083, -171.99 61.091, -172.193 60.917, -172.092 60.819, -172.07 60.816, -172.102 60.817)",0.0,0.0,deployment,US,satellite telemetry +atn_38553_bearded-seal_trajectory_20110618-20120314,2011-06-18T03:00:00Z/2012-03-11T01:09:51Z,"POLYGON ((-171.994 60.495, -173.049 60.771, -173.103 60.806, -167.901 68.614, -166.043 69.941, -165.914 70.025, -163.844 70.433, -156.734 71.43, -156.283 71.478, -154.494 71.198, -154.575 71.094, -154.597 71.066, -154.613 71.05, -171.865 60.509, -171.905 60.504, -171.994 60.495))",0.0,0.0,deployment,US,satellite telemetry diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv index a89bae2..0c00df1 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv @@ -1,1219 +1,1219 @@ eventID,occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,minimumDepthInMeters,maximumDepthInMeters,dataGeneralizations,bibliographicCitation,occurrenceRemarks -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T03:00:00Z_0.0_bearded_seal,present,HumanObservation,137079_bearded_seal,2011-06-18T03:00:00Z,66.64,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,0,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T04:07:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T04:07:02Z,66.62,-162.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T05:16:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T05:16:18Z,66.617,-163.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T07:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T07:03:35Z,66.6,-163.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T09:11:19Z,66.601,-163.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T11:13:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T11:13:42Z,66.605,-163.096,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T12:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T12:50:52Z,66.625,-163.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T14:14:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T14:14:40Z,66.64,-163.08,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T00:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T00:08:08Z,66.662,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 6 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T01:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T01:46:52Z,66.644,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T02:17:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T02:17:16Z,66.644,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T03:25:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T03:25:37Z,66.646,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T05:06:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T05:06:44Z,66.665,-162.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T07:08:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T07:08:49Z,66.652,-163.029,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T00:07:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T00:07:22Z,66.629,-163.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T03:16:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T03:16:21Z,66.58,-162.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T04:53:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T04:53:44Z,66.537,-162.937,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T05:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T05:04:36Z,66.559,-162.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T06:38:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T06:38:36Z,66.548,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T00:19:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T00:19:43Z,66.631,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T01:19:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T01:19:38Z,66.639,-162.983,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T03:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T03:01:07Z,66.632,-162.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T04:47:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T04:47:17Z,66.583,-162.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T06:27:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T06:27:31Z,66.561,-162.848,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T00:02:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T00:02:33Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T01:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T01:03:38Z,66.61,-162.94,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T02:17:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T02:17:13Z,66.597,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T04:10:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T04:10:21Z,66.593,-162.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T05:52:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T05:52:14Z,66.527,-162.829,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T06:06:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T06:06:27Z,66.528,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T07:45:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T07:45:44Z,66.505,-162.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T01:34:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T01:34:03Z,66.431,-162.697,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T03:33:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T03:33:52Z,66.457,-162.769,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T04:23:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T04:23:32Z,66.475,-162.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T07:13:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T07:13:31Z,66.501,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T08:53:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T08:53:26Z,66.508,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T13:42:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T13:42:55Z,66.56,-162.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T00:32:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T00:32:04Z,66.593,-162.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T03:07:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T03:07:08Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T05:51:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T05:51:21Z,66.615,-162.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T06:51:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T06:51:41Z,66.614,-162.957,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T07:10:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T07:10:49Z,66.611,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T08:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T08:51:08Z,66.609,-162.933,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T00:09:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T00:09:16Z,66.614,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T01:18:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T01:18:26Z,66.625,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T02:41:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T02:41:14Z,66.616,-163.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T03:29:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T03:29:42Z,66.626,-163.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T04:41:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T04:41:52Z,66.611,-163.006,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T05:04:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T05:04:57Z,66.621,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T06:26:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T06:26:11Z,66.618,-162.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T07:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T07:22:06Z,66.634,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T08:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T08:06:03Z,66.611,-163.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T00:38:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T00:38:51Z,66.612,-162.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T02:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T02:03:51Z,66.606,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T03:09:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T03:09:42Z,66.628,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T04:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T04:20:01Z,66.615,-162.954,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T05:25:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T05:25:22Z,66.611,-162.949,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T06:24:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T06:24:28Z,66.628,-162.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T08:06:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T08:06:47Z,66.625,-162.903,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T00:53:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T00:53:46Z,66.504,-163.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T01:08:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T01:08:26Z,66.527,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T02:18:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T02:18:56Z,66.508,-163.036,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T03:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T03:33:11Z,66.518,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T04:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T04:29:26Z,66.525,-163.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T05:36:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T05:36:11Z,66.532,-163.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T03:03:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T03:03:22Z,66.627,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T05:00:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T05:00:08Z,66.634,-163.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T06:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T06:45:07Z,66.636,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T07:23:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T07:23:57Z,66.631,-163.082,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T08:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T08:36:02Z,66.63,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T09:04:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T09:04:12Z,66.617,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T00:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T00:29:26Z,66.7,-163.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T03:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T03:09:48Z,66.74,-163.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T17:38:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T17:38:47Z,66.842,-163.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T18:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T18:06:09Z,66.86,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-30T02:06:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T02:06:33Z,66.861,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-30T04:36:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T04:36:27Z,66.937,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-30T10:05:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T10:05:17Z,66.988,-163.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-01T01:02:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T01:02:21Z,67.031,-164.349,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-01T07:50:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T07:50:05Z,67.042,-164.584,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-01T15:35:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T15:35:51Z,67.083,-165.046,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T07:42:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T07:42:23Z,67.429,-165.827,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T12:06:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T12:06:46Z,67.524,-165.951,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T13:32:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T13:32:11Z,67.563,-166.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T15:24:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T15:24:00Z,67.594,-166.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T16:51:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T16:51:50Z,67.624,-166.111,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T00:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T00:42:52Z,67.724,-166.456,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T01:09:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T01:09:17Z,67.726,-166.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T03:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T03:14:13Z,67.754,-166.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T07:19:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T07:19:08Z,67.83,-166.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-04T10:27:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T10:27:18Z,68.531,-167.802,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-04T13:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T13:22:06Z,68.614,-167.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T00:48:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T00:48:34Z,68.814,-167.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T01:15:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T01:15:53Z,68.799,-167.21,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T05:46:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T05:46:44Z,68.875,-166.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T07:07:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T07:07:39Z,68.88,-166.703,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T13:16:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T13:16:41Z,69.014,-166.442,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T01:45:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T01:45:55Z,69.275,-165.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T02:05:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T02:05:39Z,69.283,-165.986,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T04:37:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T04:37:29Z,69.309,-165.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T06:18:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T06:18:21Z,69.322,-165.82,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T07:08:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T07:08:44Z,69.32,-165.812,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T09:40:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T09:40:17Z,69.341,-165.751,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T11:20:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T11:20:44Z,69.346,-165.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T00:54:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T00:54:05Z,69.399,-165.385,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T01:01:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T01:01:21Z,69.416,-165.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T04:54:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T04:54:31Z,69.43,-165.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T05:05:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T05:05:05Z,69.436,-165.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T13:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T13:02:46Z,69.543,-164.969,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T20:22:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T20:22:52Z,69.629,-164.92,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-08T12:40:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-08T12:40:55Z,69.682,-164.257,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T02:34:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T02:34:30Z,69.818,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T05:23:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T05:23:26Z,69.824,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T06:57:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T06:57:06Z,69.835,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T08:01:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T08:01:24Z,69.83,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T10:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T10:51:51Z,69.85,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T14:09:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T14:09:09Z,69.834,-163.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T15:51:15Z,69.825,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T03:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T03:51:31Z,69.836,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T06:34:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T06:34:13Z,69.857,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T07:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T07:13:38Z,69.849,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T12:21:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T12:21:32Z,69.858,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T13:59:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T13:59:06Z,69.867,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T14:02:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T14:02:19Z,69.87,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T15:15:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T15:15:43Z,69.875,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T00:11:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T00:11:33Z,69.857,-163.606,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T01:49:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T01:49:20Z,69.863,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T02:56:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T02:56:55Z,69.858,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T03:27:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T03:27:49Z,69.869,-163.571,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T13:15:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T13:15:14Z,69.874,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T02:11:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T02:11:32Z,69.768,-163.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T06:30:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T06:30:41Z,69.779,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T09:19:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T09:19:42Z,69.816,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T11:59:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T11:59:25Z,69.827,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T13:37:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T13:37:28Z,69.831,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T17:42:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T17:42:31Z,69.85,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T18:41:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T18:41:42Z,69.867,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-13T13:29:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T13:29:37Z,70.028,-163.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-13T14:09:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T14:09:22Z,70.03,-163.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-14T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T05:10:23Z,70.184,-162.602,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-14T21:56:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T21:56:00Z,70.381,-161.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T11:28:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T11:28:11Z,70.453,-161.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T13:07:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T13:07:28Z,70.456,-161.425,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T15:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T15:02:20Z,70.42,-161.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T16:25:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T16:25:24Z,70.445,-161.553,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T17:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T17:03:38Z,70.415,-161.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T00:50:28Z,70.4,-161.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T01:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T01:32:28Z,70.403,-161.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T02:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T02:32:28Z,70.409,-161.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T03:06:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T03:06:58Z,70.396,-161.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T04:17:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T04:17:28Z,70.398,-161.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T01:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T01:06:22Z,70.386,-161.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T02:17:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T02:17:01Z,70.405,-161.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T06:13:20Z,70.407,-161.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T14:32:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T14:32:02Z,70.349,-162.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T16:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T16:08:51Z,70.311,-162.562,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T17:45:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T17:45:06Z,70.287,-162.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T18:11:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T18:11:09Z,70.275,-162.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T19:32:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T19:32:36Z,70.234,-162.748,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T00:27:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T00:27:32Z,70.114,-162.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T02:43:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T02:43:18Z,70.084,-162.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T03:28:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T03:28:15Z,70.07,-163.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T04:04:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T04:04:15Z,70.08,-162.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T05:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T05:07:15Z,70.082,-162.938,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T06:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T06:07:15Z,70.082,-162.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T07:09:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T07:09:55Z,70.086,-162.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T00:51:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T00:51:20Z,69.829,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T03:03:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T03:03:50Z,69.814,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T04:11:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T04:11:20Z,69.822,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T08:29:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T08:29:50Z,69.842,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T12:28:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T12:28:03Z,69.757,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T13:17:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T13:17:09Z,69.756,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T03:13:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T03:13:16Z,69.734,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T05:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T05:41:26Z,69.748,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T06:39:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T06:39:56Z,69.755,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T07:22:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T07:22:41Z,69.755,-163.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T08:09:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T08:09:11Z,69.761,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-21T12:05:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T12:05:51Z,69.711,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-21T13:46:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T13:46:00Z,69.706,-163.611,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-21T15:21:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T15:21:15Z,69.706,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T00:08:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T00:08:54Z,69.693,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T04:08:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T04:08:05Z,69.68,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T11:52:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T11:52:21Z,69.691,-163.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T13:52:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T13:52:57Z,69.667,-163.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T01:32:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T01:32:47Z,69.628,-163.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T06:48:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T06:48:48Z,69.6,-163.877,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T07:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T07:06:03Z,69.6,-163.875,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T08:31:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T08:31:13Z,69.605,-163.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T11:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T11:41:00Z,69.613,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T00:10:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T00:10:03Z,69.688,-163.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T01:41:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T01:41:51Z,69.7,-163.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T02:51:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T02:51:36Z,69.696,-163.899,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T06:36:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T06:36:50Z,69.728,-163.935,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T08:20:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T08:20:12Z,69.748,-163.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T13:12:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T13:12:12Z,69.72,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T14:56:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T14:56:47Z,69.717,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T02:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T02:21:25Z,69.749,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T06:24:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T06:24:49Z,69.78,-163.585,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T11:23:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T11:23:44Z,69.774,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T13:04:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T13:04:26Z,69.767,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T14:14:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T14:14:49Z,69.756,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T04:29:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T04:29:07Z,69.766,-163.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T06:16:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T06:16:26Z,69.775,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T09:26:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T09:26:49Z,69.785,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T12:52:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T12:52:06Z,69.8,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T16:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T16:06:53Z,69.798,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-27T00:42:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T00:42:15Z,69.802,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-27T02:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T02:14:06Z,69.83,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-27T03:11:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T03:11:21Z,69.801,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-28T03:26:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T03:26:35Z,69.744,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-28T04:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T04:03:51Z,69.735,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-28T05:22:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T05:22:01Z,69.736,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-29T12:18:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T12:18:23Z,69.729,-163.52,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-29T20:02:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T20:02:45Z,69.696,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T01:53:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T01:53:52Z,69.702,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T04:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T04:47:02Z,69.679,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T05:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T05:22:07Z,69.669,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T06:03:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T06:03:17Z,69.669,-163.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T07:03:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T07:03:27Z,69.668,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T00:07:45Z,69.666,-163.649,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T03:13:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T03:13:57Z,69.669,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T07:42:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T07:42:40Z,69.655,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T09:02:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T09:02:22Z,69.656,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T13:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T13:36:04Z,69.667,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T01:18:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T01:18:30Z,69.665,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T03:15:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T03:15:30Z,69.668,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T04:31:07Z,69.669,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T05:13:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T05:13:58Z,69.664,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T06:42:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T06:42:09Z,69.67,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T02:27:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T02:27:23Z,69.672,-163.739,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T03:11:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T03:11:08Z,69.678,-163.646,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T04:06:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T04:06:38Z,69.68,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T14:54:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T14:54:19Z,69.656,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T01:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T01:09:48Z,69.675,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T02:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T02:00:42Z,69.675,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T04:31:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T04:31:10Z,69.663,-163.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T05:21:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T05:21:24Z,69.67,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T06:16:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T06:16:19Z,69.675,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T04:21:21Z,69.685,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T05:45:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T05:45:49Z,69.685,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T07:26:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T07:26:17Z,69.685,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T11:06:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T11:06:32Z,69.688,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T12:58:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T12:58:21Z,69.694,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T13:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T13:33:49Z,69.699,-163.59,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T14:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T14:33:26Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T00:58:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T00:58:31Z,69.676,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T04:21:21Z,69.69,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T05:20:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T05:20:19Z,69.687,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T12:47:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T12:47:47Z,69.668,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T15:58:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T15:58:19Z,69.658,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T17:42:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T17:42:10Z,69.659,-163.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-06T00:00:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T00:00:25Z,69.653,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 6 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-06T01:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T01:38:40Z,69.65,-163.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-06T02:06:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T02:06:40Z,69.644,-163.567,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T04:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T04:33:23Z,69.741,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T05:24:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T05:24:22Z,69.731,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T06:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T06:53:55Z,69.732,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T07:10:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T07:10:55Z,69.737,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T09:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T09:38:40Z,69.743,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T10:25:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T10:25:10Z,69.747,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-08T01:45:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T01:45:33Z,69.741,-163.619,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-08T03:22:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T03:22:23Z,69.732,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-08T10:03:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T10:03:23Z,69.724,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T00:04:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T00:04:58Z,69.732,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T01:16:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T01:16:31Z,69.732,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T03:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T03:24:48Z,69.725,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T06:47:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T06:47:37Z,69.706,-163.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T07:10:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T07:10:20Z,69.704,-163.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T08:01:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T08:01:20Z,69.7,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T09:36:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T09:36:35Z,69.698,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T10:26:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T10:26:05Z,69.698,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T04:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T04:13:56Z,69.678,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T05:59:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T05:59:52Z,69.708,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T06:45:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T06:45:48Z,69.707,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T09:14:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T09:14:52Z,69.72,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T11:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T11:46:33Z,69.721,-163.714,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T12:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T12:49:55Z,69.725,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-11T02:59:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T02:59:33Z,69.711,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-11T07:14:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T07:14:21Z,69.699,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-11T18:14:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T18:14:48Z,69.642,-163.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-12T14:46:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T14:46:19Z,69.686,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-12T15:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T15:08:55Z,69.684,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-12T16:25:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T16:25:21Z,69.684,-163.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T04:14:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T04:14:44Z,69.69,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T12:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T12:55:34Z,69.689,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T17:54:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T17:54:16Z,69.689,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T18:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T18:07:01Z,69.689,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-14T06:47:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-14T06:47:14Z,69.681,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T02:09:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T02:09:24Z,69.686,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T04:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T04:46:52Z,69.69,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T12:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T12:34:32Z,69.689,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T14:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T14:09:46Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-16T06:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T06:08:45Z,69.68,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-16T12:37:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T12:37:44Z,69.671,-163.717,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-16T17:02:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T17:02:18Z,69.668,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T07:19:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T07:19:25Z,69.674,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T18:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T18:20:04Z,69.693,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T20:32:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T20:32:27Z,69.681,-163.658,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T22:46:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T22:46:07Z,69.686,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-18T16:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T16:13:38Z,69.694,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-18T17:18:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T17:18:15Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T00:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T00:02:43Z,69.634,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T04:49:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T04:49:42Z,69.659,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T06:07:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T06:07:54Z,69.644,-163.706,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T14:10:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T14:10:48Z,69.677,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T09:08:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T09:08:38Z,69.696,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T10:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T10:12:46Z,69.701,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T11:38:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T11:38:32Z,69.711,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T12:06:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T12:06:52Z,69.712,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T07:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T07:06:53Z,69.688,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T08:48:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T08:48:04Z,69.689,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T16:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T16:50:54Z,69.692,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T17:45:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T17:45:54Z,69.689,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T20:02:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T20:02:14Z,69.678,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T21:30:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T21:30:56Z,69.674,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T03:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T03:29:55Z,69.686,-163.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T05:10:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T05:10:29Z,69.676,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T06:44:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T06:44:54Z,69.665,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T07:04:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T07:04:18Z,69.662,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T03:56:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T03:56:30Z,69.671,-163.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T16:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T16:23:01Z,69.714,-163.833,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T17:33:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T17:33:56Z,69.712,-163.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T19:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T19:43:17Z,69.711,-163.819,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T21:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T21:07:36Z,69.713,-163.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T22:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T22:33:49Z,69.71,-163.817,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-24T07:07:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T07:07:27Z,69.641,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-24T08:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T08:53:27Z,69.64,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-24T09:25:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T09:25:30Z,69.638,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-25T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T16:45:07Z,69.675,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-25T17:49:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T17:49:47Z,69.681,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-25T22:59:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T22:59:37Z,69.68,-163.692,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-26T07:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T07:02:20Z,69.736,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-26T08:43:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T08:43:55Z,69.746,-163.685,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-26T10:51:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T10:51:10Z,69.751,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-27T00:43:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T00:43:42Z,69.758,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-27T10:04:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T10:04:20Z,69.689,-163.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-27T12:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T12:03:00Z,69.692,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T04:38:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T04:38:52Z,69.676,-163.698,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T06:21:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T06:21:05Z,69.678,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T09:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T09:48:01Z,69.685,-163.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T10:12:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T10:12:16Z,69.677,-163.695,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T11:50:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T11:50:56Z,69.688,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T12:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T12:07:36Z,69.685,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T04:23:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T04:23:52Z,69.689,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T07:54:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T07:54:54Z,69.684,-163.709,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T09:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T09:19:26Z,69.666,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T10:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T10:01:01Z,69.669,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T04:28:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T04:28:16Z,69.682,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T05:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T05:32:28Z,69.682,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T09:01:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T09:01:06Z,69.693,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T10:09:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T10:09:41Z,69.688,-163.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T11:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T11:33:26Z,69.682,-163.726,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-31T00:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T00:24:48Z,69.684,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-31T08:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T08:39:37Z,69.687,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-31T12:59:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T12:59:16Z,69.696,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T00:30:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T00:30:29Z,69.686,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T02:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T02:09:46Z,69.685,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T03:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T03:43:17Z,69.682,-163.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T06:45:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T06:45:01Z,69.683,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T07:12:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T07:12:04Z,69.682,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T08:09:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T08:09:57Z,69.668,-163.705,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T09:48:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T09:48:12Z,69.68,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T10:06:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T10:06:57Z,69.68,-163.69,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T07:58:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T07:58:57Z,69.691,-163.657,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T09:40:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T09:40:52Z,69.687,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T10:56:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T10:56:57Z,69.693,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T11:20:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T11:20:42Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T00:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T00:41:30Z,69.704,-163.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T02:18:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T02:18:07Z,69.698,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T05:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T05:39:01Z,69.688,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T07:20:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T07:20:03Z,69.68,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T08:32:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T08:32:12Z,69.683,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T09:03:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T09:03:57Z,69.678,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T10:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T10:49:16Z,69.686,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T12:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T12:49:48Z,69.676,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-04T02:14:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T02:14:56Z,69.682,-163.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-04T08:57:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T08:57:37Z,69.684,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-04T22:39:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T22:39:59Z,69.666,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-05T02:05:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T02:05:44Z,69.683,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-05T10:23:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T10:23:09Z,69.687,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-05T19:01:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T19:01:41Z,69.677,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T06:34:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T06:34:11Z,69.697,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T07:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T07:52:15Z,69.682,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T08:54:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T08:54:36Z,69.674,-163.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T09:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T09:34:14Z,69.683,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-07T09:15:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-07T09:15:50Z,69.816,-163.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T04:04:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T04:04:27Z,69.678,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T07:30:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T07:30:16Z,69.693,-163.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T08:44:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T08:44:44Z,69.698,-163.856,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T09:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T09:20:10Z,69.692,-163.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T10:15:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T10:15:04Z,69.691,-163.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T01:22:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T01:22:57Z,69.688,-164.088,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T03:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T03:53:55Z,69.69,-164.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T04:54:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T04:54:40Z,69.686,-164.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T07:16:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T07:16:53Z,69.691,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T08:53:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T08:53:14Z,69.694,-164.073,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T02:54:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T02:54:12Z,69.632,-164.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T03:41:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T03:41:02Z,69.635,-164.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T05:22:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T05:22:51Z,69.633,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T07:05:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T07:05:49Z,69.637,-164.14,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T08:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T08:34:21Z,69.63,-164.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T11:14:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T11:14:32Z,69.61,-164.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T00:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T00:34:50Z,69.607,-164.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T01:19:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T01:19:22Z,69.603,-164.151,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T03:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T03:15:32Z,69.596,-164.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T04:50:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T04:50:43Z,69.597,-164.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T05:53:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T05:53:29Z,69.594,-164.211,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T13:06:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T13:06:36Z,69.602,-164.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T16:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T16:01:07Z,69.608,-164.16,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T17:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T17:15:32Z,69.605,-164.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-12T07:52:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T07:52:25Z,69.749,-163.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-12T08:30:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T08:30:40Z,69.752,-163.736,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T06:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T06:34:50Z,70.054,-163.138,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T07:30:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T07:30:20Z,70.041,-163.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T08:13:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T08:13:05Z,70.038,-163.18,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T19:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T19:02:46Z,70.169,-162.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-14T20:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T20:33:23Z,70.423,-161.314,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-14T22:13:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T22:13:11Z,70.43,-161.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-14T23:52:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T23:52:41Z,70.438,-161.263,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-15T06:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T06:48:01Z,70.454,-161.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-15T07:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T07:42:11Z,70.456,-160.972,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-17T02:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T02:20:01Z,70.965,-158.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-17T23:07:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T23:07:30Z,71.244,-157.374,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-18T00:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T00:27:05Z,71.228,-157.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-18T15:37:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T15:37:55Z,71.43,-156.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-19T01:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T01:03:35Z,71.46,-156.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-19T03:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T03:07:01Z,71.478,-156.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T05:39:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T05:39:40Z,71.198,-154.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T09:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T09:51:31Z,71.122,-154.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T11:31:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T11:31:18Z,71.055,-154.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T12:45:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T12:45:28Z,71.05,-154.613,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T13:02:32Z,71.066,-154.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T14:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T14:25:16Z,71.094,-154.575,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T00:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T00:42:11Z,71.356,-156.058,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T01:28:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T01:28:02Z,71.355,-156.197,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T04:50:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T04:50:51Z,71.414,-156.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T06:23:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T06:23:45Z,71.406,-156.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T09:39:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T09:39:45Z,71.383,-156.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T10:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T10:55:34Z,71.358,-157.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T12:58:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T12:58:33Z,71.25,-157.451,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T17:34:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T17:34:06Z,71.162,-157.974,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T02:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T02:48:06Z,71.154,-158.309,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T04:49:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T04:49:54Z,71.154,-158.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T06:09:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T06:09:56Z,71.148,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T08:05:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T08:05:34Z,71.15,-158.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T12:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T12:25:31Z,71.156,-158.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T14:07:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T14:07:32Z,71.165,-158.281,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T15:37:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T15:37:45Z,71.165,-158.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T16:45:07Z,71.155,-158.327,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T17:18:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T17:18:10Z,71.151,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-23T00:06:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T00:06:34Z,71.157,-158.329,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-23T04:08:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T04:08:23Z,71.17,-158.325,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-23T12:10:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T12:10:45Z,71.1,-158.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-24T05:46:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-24T05:46:01Z,71.152,-158.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-25T22:21:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-25T22:21:18Z,70.489,-162.084,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T01:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T01:23:07Z,70.501,-162.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T04:47:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T04:47:46Z,70.493,-162.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T07:14:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T07:14:38Z,70.501,-162.583,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T08:01:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T08:01:56Z,70.503,-162.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T01:35:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T01:35:00Z,70.299,-163.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T02:44:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T02:44:50Z,70.302,-163.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T04:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T04:27:15Z,70.287,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T05:24:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T05:24:12Z,70.284,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T07:07:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T07:07:34Z,70.278,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T09:22:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T09:22:45Z,70.265,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T15:18:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T15:18:43Z,70.241,-164.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T00:09:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T00:09:33Z,70.205,-164.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T02:24:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T02:24:10Z,70.205,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T03:30:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T03:30:30Z,70.193,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T04:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T04:11:43Z,70.19,-164.093,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T05:12:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T05:12:11Z,70.189,-164.112,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T06:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T06:51:08Z,70.178,-164.142,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T07:20:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T07:20:30Z,70.175,-164.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T08:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T08:23:25Z,70.171,-164.156,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T09:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T09:02:07Z,70.168,-164.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T02:08:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T02:08:12Z,70.133,-164.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T03:48:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T03:48:43Z,70.122,-164.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T06:44:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T06:44:34Z,70.127,-164.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T07:08:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T07:08:36Z,70.125,-164.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T08:29:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T08:29:36Z,70.125,-164.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T00:17:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T00:17:46Z,70.093,-164.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T01:24:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T01:24:34Z,70.098,-164.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T03:05:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T03:05:42Z,70.081,-164.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T04:45:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T04:45:38Z,70.065,-164.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T05:03:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T05:03:44Z,70.071,-164.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T08:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T08:10:17Z,70.068,-164.452,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T09:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T09:47:02Z,70.068,-164.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T01:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T01:24:18Z,70.099,-164.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T03:16:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T03:16:13Z,70.108,-164.249,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T07:58:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T07:58:23Z,70.103,-164.245,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T08:10:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T08:10:13Z,70.109,-164.226,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T09:34:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T09:34:35Z,70.116,-164.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T15:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T15:20:01Z,70.1,-164.269,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T00:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T00:08:45Z,70.085,-164.296,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T01:03:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T01:03:21Z,70.09,-164.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T02:41:57Z,70.093,-164.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T04:20:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T04:20:36Z,70.102,-164.29,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T07:47:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T07:47:49Z,70.078,-164.272,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T00:31:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T00:31:26Z,70.214,-164.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T03:56:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T03:56:15Z,70.243,-164.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T05:35:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T05:35:57Z,70.246,-164.047,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T07:18:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T07:18:20Z,70.257,-164.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T16:11:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T16:11:31Z,70.152,-164.241,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T00:21:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T00:21:07Z,70.106,-164.271,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T03:46:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T03:46:32Z,70.058,-164.335,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T05:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T05:08:47Z,70.049,-164.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T06:52:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T06:52:55Z,70.022,-164.411,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T07:22:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T07:22:40Z,70.025,-164.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T08:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T08:37:00Z,70.025,-164.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T02:05:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T02:05:06Z,69.916,-164.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T05:23:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T05:23:51Z,69.875,-164.822,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T06:29:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T06:29:21Z,69.874,-164.838,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T07:10:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T07:10:39Z,69.871,-164.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T08:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T08:12:01Z,69.864,-164.879,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T00:12:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T00:12:18Z,70.011,-164.503,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T03:34:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T03:34:18Z,70.005,-164.472,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T04:24:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T04:24:44Z,70.015,-164.462,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T05:14:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T05:14:37Z,70.025,-164.46,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T06:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T06:06:22Z,70.035,-164.47,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T07:47:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T07:47:10Z,70.04,-164.506,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T08:40:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T08:40:02Z,70.042,-164.547,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-07T05:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-07T05:45:00Z,69.87,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T04:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T04:51:51Z,70.231,-162.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T05:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T05:14:55Z,70.228,-162.31,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T06:31:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T06:31:25Z,70.245,-162.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T19:32:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T19:32:32Z,70.484,-162.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T20:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T20:42:54Z,70.461,-162.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T00:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T00:33:11Z,70.499,-162.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T02:57:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T02:57:24Z,70.503,-162.627,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T03:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T03:12:01Z,70.512,-162.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T04:54:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T04:54:13Z,70.513,-162.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T06:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T06:23:07Z,70.516,-162.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T17:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T17:01:07Z,70.451,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T20:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T20:17:48Z,70.433,-163.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T00:31:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T00:31:49Z,70.374,-164.024,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T01:35:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T01:35:53Z,70.354,-164.042,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T02:45:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T02:45:29Z,70.345,-164.066,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T04:24:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T04:24:13Z,70.322,-164.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T06:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T06:07:55Z,70.285,-164.118,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T07:51:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T07:51:45Z,70.289,-164.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T13:02:32Z,70.22,-164.256,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T01:54:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T01:54:17Z,70.067,-164.33,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T02:30:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T02:30:02Z,70.066,-164.356,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T04:12:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T04:12:50Z,70.052,-164.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T05:47:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T05:47:36Z,70.031,-164.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T06:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T06:10:17Z,70.02,-164.41,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T00:31:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T00:31:30Z,70.074,-164.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T03:44:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T03:44:13Z,70.051,-164.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T05:21:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T05:21:13Z,70.041,-164.377,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T07:02:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T07:02:37Z,70.048,-164.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T00:29:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T00:29:13Z,69.979,-164.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T01:46:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T01:46:11Z,69.968,-164.814,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T03:53:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T03:53:43Z,69.942,-164.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T05:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T05:33:21Z,69.93,-164.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T12:28:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T12:28:12Z,69.869,-165.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T15:51:15Z,69.895,-165.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T17:41:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T17:41:36Z,69.903,-165.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T18:37:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T18:37:53Z,69.912,-165.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T00:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T00:15:05Z,69.995,-165.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T01:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T01:51:13Z,70.005,-165.735,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T03:36:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T03:36:45Z,70.009,-165.849,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T05:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T05:08:51Z,70.012,-165.922,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T06:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T06:48:13Z,70.025,-165.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T07:04:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T07:04:21Z,70.028,-165.887,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T08:00:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T08:00:16Z,70.035,-165.863,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T00:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T00:07:48Z,69.941,-166.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T04:10:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T04:10:52Z,69.867,-165.936,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T05:07:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T05:07:23Z,69.847,-165.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T13:50:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T13:50:42Z,69.651,-165.808,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T14:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T14:59:21Z,69.622,-165.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T16:15:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T16:15:03Z,69.601,-165.888,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T20:36:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T20:36:05Z,69.487,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T02:07:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T02:07:56Z,69.351,-165.798,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T04:57:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T04:57:44Z,69.328,-165.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T11:27:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T11:27:46Z,69.279,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T12:04:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T12:04:10Z,69.272,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T01:47:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T01:47:12Z,68.941,-165.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T03:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T03:04:22Z,68.898,-165.539,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T04:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T04:12:46Z,68.866,-165.455,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T05:46:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T05:46:28Z,68.863,-165.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T06:46:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T06:46:05Z,68.871,-165.252,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T07:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T07:27:15Z,68.884,-165.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T08:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T08:09:30Z,68.885,-165.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T09:08:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T09:08:13Z,68.893,-165.231,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-18T21:06:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T21:06:28Z,68.395,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-18T23:21:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T23:21:47Z,68.392,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T00:09:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T00:09:54Z,68.385,-167.24,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T01:03:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T01:03:52Z,68.377,-167.28,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T03:30:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T03:30:48Z,68.342,-167.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T05:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T05:04:51Z,68.318,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T06:45:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T06:45:16Z,68.309,-167.398,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T07:40:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T07:40:46Z,68.318,-167.434,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T08:27:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T08:27:16Z,68.339,-167.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T10:08:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T10:08:31Z,68.37,-167.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T01:26:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T01:26:36Z,68.15,-167.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T04:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T04:50:52Z,68.076,-167.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T05:33:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T05:33:55Z,68.064,-167.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T11:17:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T11:17:40Z,67.946,-167.876,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T14:04:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T14:04:09Z,67.909,-167.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T17:55:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T17:55:10Z,67.855,-167.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T03:58:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T03:58:17Z,67.717,-167.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T04:29:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T04:29:40Z,67.728,-167.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T05:13:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T05:13:37Z,67.724,-167.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T06:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T06:51:07Z,67.732,-167.295,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T07:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T07:44:22Z,67.745,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T01:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T01:33:11Z,67.601,-166.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T04:07:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T04:07:00Z,67.551,-166.32,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T13:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T13:41:00Z,67.3,-165.916,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T20:56:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T20:56:49Z,67.154,-165.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T00:17:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T00:17:27Z,67.12,-165.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T01:27:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T01:27:33Z,67.106,-165.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T02:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T02:46:02Z,67.096,-165.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T05:13:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T05:13:14Z,67.072,-165.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T06:03:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T06:03:39Z,67.082,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T00:14:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T00:14:18Z,67.135,-166.069,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T01:40:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T01:40:00Z,67.149,-166.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T03:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T03:59:21Z,67.179,-166.179,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T04:03:01Z,67.183,-166.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T05:02:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T05:02:59Z,67.195,-166.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T12:16:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T12:16:22Z,67.244,-166.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T13:58:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T13:58:42Z,67.252,-166.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T15:58:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T15:58:38Z,67.239,-166.601,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T17:41:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T17:41:20Z,67.243,-166.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T01:59:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T01:59:27Z,67.167,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T02:04:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T02:04:07Z,67.161,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T18:53:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T18:53:48Z,67.255,-167.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T20:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T20:20:10Z,67.281,-167.424,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T22:00:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T22:00:30Z,67.316,-167.414,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T03:16:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T03:16:10Z,67.423,-167.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T06:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T06:38:11Z,67.456,-167.288,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T15:15:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T15:15:42Z,67.689,-166.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T16:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T16:21:25Z,67.702,-167.015,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T00:43:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T00:43:29Z,67.855,-167.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T01:08:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T01:08:00Z,67.877,-167.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T02:24:24Z,67.911,-167.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T04:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T04:22:30Z,67.893,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T06:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T06:07:52Z,67.903,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T11:42:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T11:42:26Z,67.942,-167.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T12:47:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T12:47:55Z,67.958,-167.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T00:32:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T00:32:30Z,67.955,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T01:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T01:10:36Z,67.958,-167.426,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T02:15:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T02:15:46Z,67.979,-167.466,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T07:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T07:36:02Z,67.951,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T13:13:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T13:13:21Z,67.974,-167.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T00:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T00:18:22Z,68.211,-167.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T03:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T03:45:00Z,68.267,-167.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T04:03:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T04:03:31Z,68.278,-167.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T14:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T14:04:36Z,68.562,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T15:41:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T15:41:17Z,68.553,-167.233,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T16:26:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T16:26:40Z,68.554,-167.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T17:30:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T17:30:38Z,68.544,-167.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T18:56:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T18:56:52Z,68.552,-167.216,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T19:08:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T19:08:41Z,68.545,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T00:10:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T00:10:15Z,68.564,-167.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T01:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T01:54:43Z,68.558,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T02:10:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T02:10:32Z,68.557,-167.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T03:03:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T03:03:04Z,68.553,-167.205,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T04:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T04:37:00Z,68.556,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T05:28:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T05:28:22Z,68.547,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T06:23:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T06:23:03Z,68.55,-167.157,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T07:58:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T07:58:32Z,68.552,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T09:44:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T09:44:16Z,68.552,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T00:39:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T00:39:24Z,68.555,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T01:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T01:41:26Z,68.561,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T02:41:57Z,68.564,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T03:36:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T03:36:34Z,68.567,-167.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T04:34:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T04:34:07Z,68.557,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T05:17:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T05:17:26Z,68.558,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T06:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T06:18:36Z,68.543,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T07:38:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T07:38:19Z,68.537,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T08:00:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T08:00:31Z,68.531,-167.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T09:18:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T09:18:59Z,68.531,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T00:49:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T00:49:31Z,68.563,-167.166,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T01:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T01:30:26Z,68.548,-167.192,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T02:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T02:07:01Z,68.544,-167.15,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T04:03:01Z,68.541,-167.124,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T05:07:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T05:07:25Z,68.535,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T06:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T06:44:12Z,68.519,-167.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T07:15:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T07:15:10Z,68.523,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T08:56:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T08:56:10Z,68.512,-167.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T00:19:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T00:19:00Z,68.555,-167.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T01:21:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T01:21:14Z,68.559,-167.128,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T02:04:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T02:04:06Z,68.557,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T03:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T03:41:30Z,68.55,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T05:26:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T05:26:25Z,68.533,-167.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T06:33:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T06:33:41Z,68.534,-167.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T12:22:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T12:22:54Z,68.506,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T15:07:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T15:07:44Z,68.515,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T03:03:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T03:03:09Z,68.518,-166.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T05:00:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T05:00:07Z,68.505,-166.944,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T08:22:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T08:22:18Z,68.502,-166.966,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T12:11:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T12:11:58Z,68.495,-166.984,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T13:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T13:13:56Z,68.492,-166.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T14:57:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T14:57:05Z,68.502,-166.961,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T15:21:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T15:21:31Z,68.505,-166.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T01:20:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T01:20:28Z,68.5,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T02:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T02:49:16Z,68.506,-167.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T03:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T03:03:00Z,68.507,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T04:42:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T04:42:32Z,68.512,-166.995,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T07:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T07:53:27Z,68.489,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T13:08:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T13:08:43Z,68.508,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T00:47:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T00:47:53Z,68.532,-167.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T02:31:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T02:31:45Z,68.527,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T04:21:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T04:21:16Z,68.522,-167.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T06:00:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T06:00:43Z,68.525,-167.079,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T07:38:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T07:38:23Z,68.545,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T13:31:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T13:31:47Z,68.543,-167.104,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T00:26:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T00:26:03Z,68.531,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T01:18:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T01:18:01Z,68.528,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T02:17:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T02:17:38Z,68.529,-167.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T03:54:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T03:54:20Z,68.527,-167.007,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T05:34:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T05:34:44Z,68.54,-166.992,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T00:21:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T00:21:54Z,68.542,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T01:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T01:11:39Z,68.54,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T02:03:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T02:03:24Z,68.538,-167.11,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T03:31:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T03:31:15Z,68.537,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T05:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T05:06:09Z,68.54,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T06:52:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T06:52:10Z,68.522,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T07:16:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T07:16:55Z,68.536,-167.129,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T14:13:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T14:13:12Z,68.534,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T00:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T00:08:55Z,68.637,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T11:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T11:18:22Z,68.545,-167.23,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T13:58:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T13:58:34Z,68.538,-167.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T15:40:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T15:40:34Z,68.545,-167.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T16:20:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T16:20:51Z,68.542,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T00:55:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T00:55:21Z,68.524,-167.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T02:45:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T02:45:22Z,68.516,-167.011,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T04:16:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T04:16:37Z,68.511,-167.021,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T12:49:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T12:49:01Z,68.53,-167.051,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T02:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T02:12:01Z,68.526,-166.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T03:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T03:50:53Z,68.527,-166.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T04:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T04:14:13Z,68.532,-166.84,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T06:36:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T06:36:46Z,68.562,-166.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T12:38:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T12:38:15Z,68.584,-166.796,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T13:38:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T13:38:05Z,68.594,-166.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T00:04:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T00:04:33Z,68.513,-167.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T01:22:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T01:22:13Z,68.512,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T03:04:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T03:04:40Z,68.517,-167.127,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T04:47:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T04:47:26Z,68.507,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T05:15:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T05:15:35Z,68.508,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T06:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T06:24:38Z,68.509,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T10:46:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T10:46:03Z,68.494,-167.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T12:28:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T12:28:51Z,68.497,-167.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T13:48:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T13:48:03Z,68.496,-167.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T00:14:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T00:14:16Z,68.513,-167.035,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T01:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T01:51:15Z,68.51,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T02:53:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T02:53:05Z,68.502,-167.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T03:00:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T03:00:15Z,68.506,-167.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T04:37:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T04:37:04Z,68.493,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T05:14:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T05:14:29Z,68.495,-167.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T06:39:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T06:39:34Z,68.482,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T12:15:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T12:15:49Z,68.492,-166.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T13:19:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T13:19:17Z,68.496,-167.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T00:56:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T00:56:40Z,68.446,-167.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T02:41:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T02:41:45Z,68.465,-167.107,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T04:31:07Z,68.485,-167.125,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T06:16:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T06:16:01Z,68.486,-167.114,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T13:05:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T13:05:22Z,68.499,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T00:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T00:34:21Z,68.505,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T01:13:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T01:13:40Z,68.546,-167.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T02:53:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T02:53:11Z,68.493,-167.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T03:54:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T03:54:41Z,68.48,-167.147,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T04:07:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T04:07:41Z,68.482,-167.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T05:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T05:50:11Z,68.473,-167.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T00:49:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T00:49:43Z,68.424,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T01:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T01:50:53Z,68.423,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T02:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T02:04:51Z,68.425,-167.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T03:28:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T03:28:37Z,68.432,-166.999,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T04:00:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T04:00:52Z,68.432,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T05:22:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T05:22:37Z,68.424,-166.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T00:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T00:28:23Z,68.299,-167.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T01:41:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T01:41:08Z,68.286,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T02:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T02:08:08Z,68.278,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T03:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T03:05:08Z,68.264,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T04:46:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T04:46:23Z,68.245,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T05:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T05:28:23Z,68.236,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T00:17:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T00:17:08Z,68.224,-166.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T01:02:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T01:02:08Z,68.228,-166.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T02:00:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T02:00:38Z,68.233,-166.718,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T03:36:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T03:36:38Z,68.243,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T04:23:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T04:23:08Z,68.248,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T05:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T05:14:53Z,68.258,-166.738,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T01:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T01:28:50Z,68.306,-166.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T07:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T07:36:04Z,68.384,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T08:05:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T08:05:29Z,68.391,-166.985,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T13:53:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T13:53:49Z,68.496,-167.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T00:10:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T00:10:25Z,68.53,-167.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T01:33:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T01:33:40Z,68.534,-167.099,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T02:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T02:49:55Z,68.539,-167.109,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T03:50:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T03:50:10Z,68.535,-167.116,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T04:29:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T04:29:10Z,68.536,-167.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T05:27:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T05:27:40Z,68.539,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T06:09:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T06:09:40Z,68.539,-167.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T00:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T00:24:38Z,68.479,-167.137,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T01:30:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T01:30:31Z,68.474,-167.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T02:29:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T02:29:01Z,68.468,-167.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T03:09:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T03:09:04Z,68.457,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T04:09:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T04:09:31Z,68.449,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T05:06:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T05:06:31Z,68.441,-167.208,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T06:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T06:23:01Z,68.429,-167.228,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T00:18:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T00:18:08Z,68.16,-167.554,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T01:05:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T01:05:19Z,68.139,-167.544,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T02:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T02:49:15Z,68.069,-167.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T03:02:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T03:02:50Z,68.074,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T04:24:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T04:24:37Z,68.052,-167.492,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T05:27:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T05:27:37Z,68.041,-167.473,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T06:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T06:11:43Z,68.032,-167.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T01:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T01:03:51Z,67.684,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T10:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T10:30:26Z,67.427,-167.284,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T12:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T12:14:14Z,67.366,-167.285,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T13:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T13:07:52Z,67.339,-167.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T01:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T01:53:55Z,67.016,-167.791,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T07:14:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T07:14:50Z,66.906,-168.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T08:02:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T08:02:51Z,66.896,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T17:49:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T17:49:44Z,66.766,-168.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T00:39:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T00:39:05Z,66.653,-168.85,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T03:14:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T03:14:05Z,66.6,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T05:09:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T05:09:53Z,66.566,-168.81,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T14:29:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T14:29:57Z,66.385,-168.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T15:15:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T15:15:58Z,66.374,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T16:09:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T16:09:35Z,66.366,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-25T05:18:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T05:18:45Z,66.018,-168.025,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-25T14:46:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T14:46:54Z,65.697,-168.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-25T20:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T20:07:55Z,65.456,-168.587,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T00:18:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T00:18:17Z,65.406,-168.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T01:46:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T01:46:57Z,65.381,-168.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T02:42:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T02:42:07Z,65.358,-168.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T07:00:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T07:00:48Z,65.295,-168.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T08:38:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T08:38:37Z,65.263,-168.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T14:10:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T14:10:09Z,65.179,-168.572,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T00:17:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T00:17:18Z,65.063,-168.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T03:18:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T03:18:46Z,65.025,-168.737,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T04:58:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T04:58:58Z,65.006,-168.73,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T06:35:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T06:35:04Z,64.98,-168.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T07:25:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T07:25:15Z,64.965,-168.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T11:23:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T11:23:35Z,64.918,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T00:47:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T00:47:32Z,64.739,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T01:36:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T01:36:15Z,64.732,-168.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T03:09:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T03:09:49Z,64.695,-168.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T06:59:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T06:59:22Z,64.626,-168.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T18:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T18:33:22Z,64.443,-168.394,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T00:36:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T00:36:13Z,64.302,-168.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T04:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T04:51:13Z,64.227,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T06:39:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T06:39:41Z,64.196,-168.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T07:58:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T07:58:16Z,64.17,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T13:34:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T13:34:05Z,64.073,-168.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T15:14:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T15:14:35Z,64.044,-168.463,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T16:02:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T16:02:17Z,64.035,-168.495,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T18:21:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T18:21:52Z,64.005,-168.469,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T02:21:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T02:21:35Z,63.893,-168.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T12:30:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T12:30:14Z,63.714,-168.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T15:03:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T15:03:02Z,63.643,-168.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T18:18:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T18:18:19Z,63.552,-168.513,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T19:49:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T19:49:53Z,63.519,-168.487,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T00:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T00:52:15Z,63.38,-168.373,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T05:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T05:51:46Z,63.179,-168.261,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T08:42:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T08:42:24Z,63.044,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T13:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T13:12:37Z,62.941,-168.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T15:52:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T15:52:12Z,62.919,-168.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T23:57:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T23:57:47Z,62.886,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-02T02:41:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T02:41:10Z,62.855,-168.823,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-02T12:10:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T12:10:31Z,62.793,-169.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-02T13:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T13:03:01Z,62.792,-169.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T02:11:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T02:11:24Z,62.72,-170.217,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T03:33:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T03:33:19Z,62.722,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T04:11:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T04:11:49Z,62.718,-170.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T05:15:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T05:15:15Z,62.704,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T07:32:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T07:32:57Z,62.685,-170.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T11:49:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T11:49:08Z,62.684,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T04:10:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T04:10:22Z,62.475,-170.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T05:56:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T05:56:27Z,62.449,-169.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T07:14:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T07:14:31Z,62.452,-169.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T12:27:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T12:27:54Z,62.461,-169.869,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T13:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T13:17:30Z,62.462,-169.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T17:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T17:27:05Z,62.471,-169.864,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T18:49:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T18:49:00Z,62.477,-169.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T00:07:45Z,62.519,-169.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T01:01:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T01:01:45Z,62.513,-169.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T03:16:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T03:16:45Z,62.499,-169.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T05:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T05:17:30Z,62.479,-169.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T00:45:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T00:45:17Z,62.354,-170.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T01:18:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T01:18:04Z,62.351,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T03:23:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T03:23:10Z,62.349,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T05:02:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T05:02:23Z,62.372,-170.365,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T00:53:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T00:53:34Z,62.565,-170.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T02:19:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T02:19:55Z,62.578,-170.512,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T04:17:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T04:17:23Z,62.605,-170.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T06:05:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T06:05:35Z,62.628,-170.493,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T09:33:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T09:33:01Z,62.668,-170.441,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T13:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T13:38:11Z,62.737,-170.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T14:26:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T14:26:58Z,62.75,-170.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T16:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T16:08:08Z,62.792,-170.382,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T00:58:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T00:58:03Z,62.87,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T01:15:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T01:15:18Z,62.872,-170.221,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T02:09:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T02:09:18Z,62.869,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T03:07:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T03:07:47Z,62.835,-170.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T06:03:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T06:03:34Z,62.869,-170.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T09:11:19Z,62.882,-170.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T00:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T00:23:25Z,62.835,-169.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T05:29:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T05:29:56Z,62.804,-169.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T07:25:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T07:25:51Z,62.799,-169.45,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T08:48:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T08:48:37Z,62.815,-169.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T14:57:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T14:57:43Z,62.838,-169.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T18:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T18:44:22Z,62.868,-169.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T03:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T03:48:13Z,62.882,-168.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T04:41:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T04:41:21Z,62.878,-168.76,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T05:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T05:09:51Z,62.879,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T06:49:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T06:49:21Z,62.894,-168.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T07:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T07:14:06Z,62.902,-168.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T08:29:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T08:29:51Z,62.926,-168.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T01:32:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T01:32:39Z,62.881,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T04:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T04:17:48Z,62.847,-168.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T13:44:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T13:44:07Z,62.782,-168.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T14:37:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T14:37:47Z,62.788,-168.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T16:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T16:19:26Z,62.788,-168.416,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T00:07:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T00:07:18Z,62.791,-168.267,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T06:06:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T06:06:00Z,62.77,-168.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T07:45:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T07:45:47Z,62.773,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T13:37:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T13:37:40Z,62.758,-168.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T15:52:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T15:52:11Z,62.753,-168.224,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T00:22:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T00:22:02Z,62.798,-168.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T01:37:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T01:37:23Z,62.795,-168.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T02:33:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T02:33:24Z,62.806,-168.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T03:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T03:14:14Z,62.804,-168.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T03:02:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T03:02:30Z,62.669,-168.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T04:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T04:44:22Z,62.654,-168.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T14:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T14:04:22Z,62.506,-168.846,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T15:46:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T15:46:04Z,62.471,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T16:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T16:46:02Z,62.468,-168.87,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T04:49:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T04:49:26Z,62.326,-169.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T11:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T11:22:07Z,62.316,-169.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T15:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T15:34:14Z,62.311,-169.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T16:17:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T16:17:29Z,62.314,-169.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T18:01:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T18:01:02Z,62.307,-169.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T00:46:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T00:46:09Z,62.254,-169.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T12:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T12:51:46Z,62.205,-170.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T14:33:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T14:33:25Z,62.245,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T18:42:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T18:42:06Z,62.309,-170.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T19:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T19:49:15Z,62.332,-170.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T21:31:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T21:31:14Z,62.351,-170.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T03:31:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T03:31:59Z,62.398,-170.479,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T04:03:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T04:03:55Z,62.395,-170.483,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T07:42:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T07:42:35Z,62.398,-170.496,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T16:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T16:50:28Z,62.437,-170.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-19T03:03:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T03:03:58Z,62.519,-170.797,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-19T05:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T05:18:36Z,62.522,-170.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-19T07:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T07:08:47Z,62.522,-170.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T04:56:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T04:56:42Z,62.438,-170.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T05:28:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T05:28:27Z,62.436,-170.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T06:45:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T06:45:42Z,62.428,-170.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T07:02:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T07:02:57Z,62.429,-170.803,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T08:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T08:44:12Z,62.435,-170.816,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T00:44:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T00:44:43Z,62.52,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T01:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T01:17:50Z,62.525,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T02:32:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T02:32:53Z,62.535,-170.766,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T03:31:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T03:31:23Z,62.537,-170.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T04:33:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T04:33:38Z,62.531,-170.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T05:10:23Z,62.529,-170.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T06:20:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T06:20:53Z,62.526,-170.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T00:36:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T00:36:01Z,62.482,-170.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T04:08:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T04:08:59Z,62.41,-170.78,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T05:49:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T05:49:11Z,62.405,-170.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T09:42:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T09:42:44Z,62.309,-170.807,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T14:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T14:25:59Z,62.274,-170.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T00:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T00:33:21Z,62.232,-171.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T01:30:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T01:30:22Z,62.198,-171.159,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T03:45:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T03:45:10Z,62.17,-171.209,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T07:15:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T07:15:13Z,62.11,-171.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T20:15:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T20:15:19Z,61.942,-171.594,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T21:25:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T21:25:39Z,61.912,-171.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-25T16:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T16:01:01Z,61.638,-171.144,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-25T21:49:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T21:49:25Z,61.515,-171.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T03:17:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T03:17:34Z,61.414,-171.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T04:13:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T04:13:26Z,61.386,-171.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T05:49:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T05:49:13Z,61.346,-171.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T23:44:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T23:44:51Z,61.145,-171.634,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-27T01:27:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T01:27:56Z,61.141,-171.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-27T14:29:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T14:29:22Z,60.937,-171.847,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T05:08:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T05:08:52Z,60.725,-171.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T12:39:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T12:39:46Z,60.671,-171.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T14:27:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T14:27:22Z,60.702,-171.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T15:05:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T15:05:41Z,60.719,-171.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T16:00:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T16:00:46Z,60.763,-171.793,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T06:59:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T06:59:09Z,61.111,-171.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T12:28:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T12:28:13Z,61.136,-171.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T14:51:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T14:51:39Z,61.139,-171.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T17:51:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T17:51:14Z,61.154,-171.722,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-30T00:47:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T00:47:08Z,61.156,-171.929,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-30T03:43:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T03:43:02Z,61.181,-171.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-30T14:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T14:42:52Z,61.118,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T00:38:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T00:38:33Z,61.106,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T01:45:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T01:45:02Z,61.099,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T02:25:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T02:25:55Z,61.071,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T03:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T03:11:39Z,61.078,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T04:57:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T04:57:50Z,61.064,-172.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T05:00:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T05:00:50Z,61.068,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T06:35:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T06:35:20Z,61.051,-172.176,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-01T00:36:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T00:36:20Z,61.067,-172.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-01T07:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T07:00:42Z,61.022,-172.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-01T21:40:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T21:40:32Z,60.938,-172.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T02:22:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T02:22:11Z,60.951,-172.545,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T06:12:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T06:12:45Z,60.949,-172.543,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T07:33:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T07:33:15Z,60.95,-172.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T18:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T18:27:03Z,61.007,-172.435,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T20:16:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T20:16:40Z,60.996,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-03T03:37:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T03:37:22Z,60.931,-172.407,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-03T17:18:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T17:18:27Z,60.886,-172.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T01:23:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T01:23:16Z,60.756,-172.101,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T06:30:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T06:30:25Z,60.768,-171.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T07:00:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T07:00:01Z,60.78,-171.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T21:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T21:02:07Z,60.749,-171.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T01:13:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T01:13:18Z,60.749,-171.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T02:29:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T02:29:35Z,60.77,-171.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T03:40:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T03:40:57Z,60.776,-171.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T04:10:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T04:10:02Z,60.805,-171.439,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T05:50:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T05:50:07Z,60.775,-171.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T06:11:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T06:11:07Z,60.766,-171.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T07:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T07:02:43Z,60.762,-171.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-07T14:59:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T14:59:56Z,61.009,-172.201,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-07T15:53:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T15:53:35Z,61.001,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T03:24:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T03:24:06Z,60.912,-172.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T18:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T18:46:33Z,60.878,-172.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T19:36:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T19:36:36Z,60.886,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T20:55:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T20:55:23Z,60.887,-172.022,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-09T20:14:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T20:14:54Z,60.9,-172.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-09T23:54:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T23:54:32Z,60.86,-172.018,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T00:38:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T00:38:41Z,60.865,-172.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T01:37:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T01:37:56Z,60.852,-172.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T02:36:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T02:36:53Z,60.848,-172.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T21:59:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T21:59:38Z,60.953,-171.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T23:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T23:39:01Z,60.945,-171.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-12T23:59:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-12T23:59:26Z,61.006,-171.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-13T01:44:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T01:44:14Z,61.024,-171.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-13T03:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T03:50:54Z,61.064,-172.056,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-13T22:32:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T22:32:37Z,61.087,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-14T02:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T02:42:54Z,61.054,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-14T10:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T10:12:37Z,61.084,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T00:33:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T00:33:43Z,61.232,-172.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T01:55:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T01:55:03Z,61.201,-172.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T02:14:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T02:14:51Z,61.191,-172.529,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T03:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T03:07:48Z,61.185,-172.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T04:44:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T04:44:33Z,61.186,-172.57,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T05:31:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T05:31:03Z,61.186,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T06:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T06:24:18Z,61.19,-172.576,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T01:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T01:15:05Z,61.253,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T02:53:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T02:53:04Z,61.255,-172.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T03:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T03:20:04Z,61.242,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T04:20:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T04:20:49Z,61.248,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T05:01:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T05:01:42Z,61.246,-172.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T06:05:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T06:05:04Z,61.25,-172.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T00:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T00:54:43Z,61.265,-172.294,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T01:25:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T01:25:45Z,61.261,-172.304,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T02:44:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T02:44:52Z,61.259,-172.274,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T07:25:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T07:25:06Z,61.221,-172.387,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T16:43:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T16:43:31Z,61.227,-172.482,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-18T05:59:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T05:59:48Z,60.996,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-18T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T06:13:20Z,61.012,-172.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-18T12:17:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T12:17:42Z,60.975,-172.874,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T04:22:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T04:22:42Z,60.925,-172.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T06:41:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T06:41:13Z,60.933,-172.313,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T13:49:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T13:49:23Z,60.96,-172.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T22:09:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T22:09:03Z,60.913,-171.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T23:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T23:48:06Z,60.939,-171.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T06:00:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T06:00:39Z,60.966,-171.841,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T11:58:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T11:58:12Z,60.982,-171.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T17:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T17:20:06Z,60.973,-171.768,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T19:41:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T19:41:46Z,60.957,-171.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T01:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T01:58:36Z,60.857,-171.828,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T04:00:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T04:00:49Z,60.829,-171.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T13:27:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T13:27:08Z,60.771,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T16:50:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T16:50:02Z,60.796,-171.915,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T19:31:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T19:31:28Z,60.78,-171.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T22:20:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T22:20:17Z,60.729,-171.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T23:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T23:25:16Z,60.717,-171.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-22T01:03:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T01:03:16Z,60.703,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-22T17:13:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T17:13:17Z,60.705,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-22T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T20:47:29Z,60.704,-171.886,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T00:53:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T00:53:18Z,60.666,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T02:22:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T02:22:34Z,60.637,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T04:01:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T04:01:29Z,60.624,-171.912,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T06:37:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T06:37:11Z,60.627,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T20:47:29Z,60.495,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T00:50:28Z,60.504,-171.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T01:22:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T01:22:43Z,60.509,-171.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T15:14:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T15:14:07Z,60.627,-171.946,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T18:57:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T18:57:40Z,60.649,-171.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T20:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T20:34:32Z,60.675,-171.934,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T22:09:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T22:09:59Z,60.682,-171.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-25T01:12:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T01:12:57Z,60.656,-171.976,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-25T04:58:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T04:58:52Z,60.683,-172.041,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-26T00:56:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-26T00:56:18Z,60.842,-171.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T02:24:24Z,60.894,-171.593,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T03:25:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T03:25:03Z,60.898,-171.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T04:31:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T04:31:48Z,60.883,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T05:01:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T05:01:48Z,60.884,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T06:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T06:16:03Z,60.887,-171.636,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T07:18:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T07:18:18Z,60.891,-171.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-28T16:09:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T16:09:15Z,60.941,-171.815,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-28T23:49:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T23:49:34Z,61.026,-171.852,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T00:22:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T00:22:49Z,61.033,-171.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T01:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T01:33:22Z,61.047,-171.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T15:57:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T15:57:01Z,61.083,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T19:44:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T19:44:01Z,61.067,-172.076,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T21:15:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T21:15:39Z,61.064,-172.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T23:46:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T23:46:36Z,61.055,-172.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-30T02:44:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-30T02:44:23Z,61.056,-172.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-05T08:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T08:17:50Z,60.796,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-05T12:30:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T12:30:12Z,60.777,-173.023,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-06T07:34:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T07:34:57Z,60.769,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-06T08:51:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T08:51:16Z,60.771,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-06T09:15:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T09:15:16Z,60.774,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T02:51:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T02:51:53Z,60.827,-172.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T05:45:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T05:45:57Z,60.81,-172.608,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T07:17:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T07:17:06Z,60.776,-172.612,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T08:30:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T08:30:21Z,60.78,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T09:04:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T09:04:32Z,60.791,-172.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T10:17:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T10:17:02Z,60.771,-172.618,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T02:26:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T02:26:57Z,60.76,-172.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T05:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T05:25:31Z,60.76,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T14:12:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T14:12:54Z,60.759,-172.731,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T20:47:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T20:47:54Z,60.78,-172.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T21:00:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T21:00:32Z,60.796,-172.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T01:26:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T01:26:42Z,60.808,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T03:52:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T03:52:28Z,60.819,-172.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T05:12:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T05:12:49Z,60.815,-172.733,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T06:38:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T06:38:46Z,60.818,-172.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T07:55:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T07:55:44Z,60.81,-172.749,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T13:26:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T13:26:27Z,60.818,-172.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T15:06:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T15:06:35Z,60.831,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T01:35:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T01:35:01Z,60.821,-172.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T03:18:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T03:18:09Z,60.825,-172.764,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T05:04:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T05:04:05Z,60.85,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T06:16:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T06:16:05Z,60.843,-172.782,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T07:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T07:28:50Z,60.846,-172.783,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T08:27:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T08:27:20Z,60.847,-172.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T09:09:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T09:09:20Z,60.846,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T00:54:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T00:54:06Z,60.886,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T01:33:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T01:33:51Z,60.885,-172.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T02:13:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T02:13:36Z,60.896,-172.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T03:00:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T03:00:06Z,60.883,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T04:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T04:10:36Z,60.886,-172.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T05:31:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T05:31:36Z,60.893,-172.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T06:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T06:23:27Z,60.996,-172.49,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T08:26:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T08:26:18Z,61.008,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T20:08:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T20:08:15Z,60.973,-172.282,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T22:56:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T22:56:36Z,60.974,-172.243,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T04:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T04:27:03Z,60.949,-172.264,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T05:00:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T05:00:54Z,60.953,-172.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T06:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T06:05:08Z,60.963,-172.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T07:56:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T07:56:53Z,60.985,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T08:05:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T08:05:38Z,60.988,-172.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T00:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T00:23:27Z,61.036,-172.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T01:46:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T01:46:39Z,61.036,-172.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T02:13:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T02:13:39Z,61.029,-172.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T03:01:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T03:01:39Z,61.027,-172.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T04:15:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T04:15:09Z,61.03,-172.064,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T05:53:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T05:53:24Z,61.039,-172.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T06:05:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T06:05:24Z,61.042,-172.108,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-15T00:12:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T00:12:23Z,61.082,-172.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-15T07:36:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T07:36:58Z,61.018,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-15T22:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T22:51:07Z,60.951,-172.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T00:28:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T00:28:35Z,60.952,-172.353,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T04:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T04:14:53Z,60.912,-172.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T07:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T07:16:03Z,60.907,-172.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T16:17:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T16:17:45Z,60.868,-172.592,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T01:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T01:27:03Z,60.998,-172.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T06:28:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T06:28:55Z,60.998,-172.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T15:19:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T15:19:37Z,61.029,-172.364,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T20:10:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T20:10:57Z,61.009,-172.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T21:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T21:49:48Z,60.992,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T01:17:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T01:17:19Z,60.971,-172.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T03:10:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T03:10:46Z,60.981,-172.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T04:55:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T04:55:31Z,60.987,-172.386,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T07:40:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T07:40:59Z,60.97,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T11:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T11:39:37Z,60.945,-172.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T15:07:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T15:07:16Z,60.966,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T01:08:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T01:08:21Z,60.924,-172.3,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T07:19:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T07:19:40Z,60.967,-172.338,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T09:00:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T09:00:02Z,60.951,-172.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T11:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T11:33:21Z,60.968,-172.362,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T16:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T16:58:36Z,61.034,-172.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-21T01:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T01:22:30Z,61.029,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-21T02:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T02:20:06Z,61.034,-172.343,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-22T00:38:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-22T00:38:04Z,60.968,-172.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T02:11:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T02:11:45Z,60.933,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T03:05:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T03:05:45Z,60.915,-172.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T04:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T04:09:30Z,60.921,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T05:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T05:49:15Z,60.929,-172.278,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T06:06:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T06:06:30Z,60.927,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-24T23:08:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-24T23:08:42Z,60.957,-172.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-25T13:58:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T13:58:47Z,60.953,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-25T20:55:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T20:55:47Z,60.933,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-26T01:59:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T01:59:55Z,60.889,-172.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-26T06:42:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T06:42:50Z,60.806,-173.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-27T07:55:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T07:55:19Z,60.811,-172.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-27T21:34:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T21:34:24Z,60.89,-172.521,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T02:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T02:50:11Z,60.875,-172.55,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T04:07:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T04:07:53Z,60.879,-172.558,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T07:55:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T07:55:54Z,60.898,-172.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T08:13:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T08:13:07Z,60.889,-172.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T09:37:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T09:37:07Z,60.894,-172.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-29T05:21:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T05:21:48Z,61.012,-172.577,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-29T06:21:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T06:21:28Z,61.006,-172.552,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-29T23:07:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T23:07:10Z,60.936,-172.366,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-01T03:09:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T03:09:25Z,60.93,-172.328,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-01T04:22:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T04:22:46Z,60.92,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-02T02:59:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T02:59:35Z,60.914,-172.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-02T06:22:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T06:22:25Z,60.88,-172.22,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-02T08:03:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T08:03:30Z,60.896,-172.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T00:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T00:25:59Z,61.033,-171.893,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T02:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T02:14:55Z,61.091,-171.993,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T06:23:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T06:23:29Z,61.074,-171.987,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T08:07:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T08:07:06Z,61.083,-171.921,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-07T04:37:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-07T04:37:13Z,61.091,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-10T06:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T06:29:55Z,60.917,-172.193,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-10T22:53:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T22:53:10Z,60.819,-172.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-10T23:30:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T23:30:55Z,60.816,-172.07,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. -atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-11T01:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-11T01:09:51Z,60.817,-172.102,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://doi.org/10.25921/wp4e-ph20. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T03:00:00Z_0.0_bearded_seal,present,HumanObservation,137079_bearded_seal,2011-06-18T03:00:00Z,66.64,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,0,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T04:07:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T04:07:02Z,66.62,-162.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T05:16:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T05:16:18Z,66.617,-163.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T07:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T07:03:35Z,66.6,-163.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T09:11:19Z,66.601,-163.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T11:13:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T11:13:42Z,66.605,-163.096,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T12:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T12:50:52Z,66.625,-163.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-18T14:14:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-18T14:14:40Z,66.64,-163.08,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T00:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T00:08:08Z,66.662,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 6 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T01:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T01:46:52Z,66.644,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T02:17:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T02:17:16Z,66.644,-163.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T03:25:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T03:25:37Z,66.646,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T05:06:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T05:06:44Z,66.665,-162.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-19T07:08:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-19T07:08:49Z,66.652,-163.029,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T00:07:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T00:07:22Z,66.629,-163.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T03:16:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T03:16:21Z,66.58,-162.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T04:53:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T04:53:44Z,66.537,-162.937,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T05:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T05:04:36Z,66.559,-162.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-20T06:38:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-20T06:38:36Z,66.548,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T00:19:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T00:19:43Z,66.631,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T01:19:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T01:19:38Z,66.639,-162.983,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T03:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T03:01:07Z,66.632,-162.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T04:47:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T04:47:17Z,66.583,-162.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-21T06:27:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-21T06:27:31Z,66.561,-162.848,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T00:02:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T00:02:33Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T01:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T01:03:38Z,66.61,-162.94,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T02:17:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T02:17:13Z,66.597,-163.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T04:10:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T04:10:21Z,66.593,-162.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T05:52:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T05:52:14Z,66.527,-162.829,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T06:06:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T06:06:27Z,66.528,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-22T07:45:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-22T07:45:44Z,66.505,-162.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T01:34:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T01:34:03Z,66.431,-162.697,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T03:33:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T03:33:52Z,66.457,-162.769,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T04:23:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T04:23:32Z,66.475,-162.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T07:13:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T07:13:31Z,66.501,-162.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T08:53:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T08:53:26Z,66.508,-162.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-23T13:42:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-23T13:42:55Z,66.56,-162.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T00:32:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T00:32:04Z,66.593,-162.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T03:07:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T03:07:08Z,66.603,-162.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T05:51:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T05:51:21Z,66.615,-162.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T06:51:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T06:51:41Z,66.614,-162.957,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T07:10:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T07:10:49Z,66.611,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-24T08:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-24T08:51:08Z,66.609,-162.933,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T00:09:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T00:09:16Z,66.614,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T01:18:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T01:18:26Z,66.625,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T02:41:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T02:41:14Z,66.616,-163.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T03:29:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T03:29:42Z,66.626,-163.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T04:41:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T04:41:52Z,66.611,-163.006,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T05:04:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T05:04:57Z,66.621,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T06:26:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T06:26:11Z,66.618,-162.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T07:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T07:22:06Z,66.634,-162.991,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-25T08:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-25T08:06:03Z,66.611,-163.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T00:38:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T00:38:51Z,66.612,-162.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T02:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T02:03:51Z,66.606,-162.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T03:09:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T03:09:42Z,66.628,-162.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T04:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T04:20:01Z,66.615,-162.954,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T05:25:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T05:25:22Z,66.611,-162.949,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T06:24:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T06:24:28Z,66.628,-162.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-26T08:06:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-26T08:06:47Z,66.625,-162.903,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T00:53:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T00:53:46Z,66.504,-163.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T01:08:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T01:08:26Z,66.527,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T02:18:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T02:18:56Z,66.508,-163.036,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T03:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T03:33:11Z,66.518,-163.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T04:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T04:29:26Z,66.525,-163.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-27T05:36:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-27T05:36:11Z,66.532,-163.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T03:03:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T03:03:22Z,66.627,-162.988,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T05:00:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T05:00:08Z,66.634,-163.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T06:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T06:45:07Z,66.636,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T07:23:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T07:23:57Z,66.631,-163.082,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T08:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T08:36:02Z,66.63,-163.072,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-28T09:04:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-28T09:04:12Z,66.617,-163.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T00:29:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T00:29:26Z,66.7,-163.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T03:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T03:09:48Z,66.74,-163.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T17:38:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T17:38:47Z,66.842,-163.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-29T18:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-29T18:06:09Z,66.86,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-30T02:06:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T02:06:33Z,66.861,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-30T04:36:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T04:36:27Z,66.937,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-06-30T10:05:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-06-30T10:05:17Z,66.988,-163.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-01T01:02:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T01:02:21Z,67.031,-164.349,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-01T07:50:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T07:50:05Z,67.042,-164.584,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-01T15:35:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-01T15:35:51Z,67.083,-165.046,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T07:42:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T07:42:23Z,67.429,-165.827,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T12:06:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T12:06:46Z,67.524,-165.951,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T13:32:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T13:32:11Z,67.563,-166.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T15:24:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T15:24:00Z,67.594,-166.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-02T16:51:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-02T16:51:50Z,67.624,-166.111,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T00:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T00:42:52Z,67.724,-166.456,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T01:09:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T01:09:17Z,67.726,-166.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T03:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T03:14:13Z,67.754,-166.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-03T07:19:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-03T07:19:08Z,67.83,-166.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-04T10:27:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T10:27:18Z,68.531,-167.802,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-04T13:22:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-04T13:22:06Z,68.614,-167.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T00:48:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T00:48:34Z,68.814,-167.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T01:15:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T01:15:53Z,68.799,-167.21,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T05:46:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T05:46:44Z,68.875,-166.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T07:07:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T07:07:39Z,68.88,-166.703,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-05T13:16:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-05T13:16:41Z,69.014,-166.442,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T01:45:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T01:45:55Z,69.275,-165.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T02:05:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T02:05:39Z,69.283,-165.986,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T04:37:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T04:37:29Z,69.309,-165.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T06:18:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T06:18:21Z,69.322,-165.82,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T07:08:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T07:08:44Z,69.32,-165.812,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T09:40:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T09:40:17Z,69.341,-165.751,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-06T11:20:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-06T11:20:44Z,69.346,-165.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T00:54:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T00:54:05Z,69.399,-165.385,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T01:01:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T01:01:21Z,69.416,-165.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T04:54:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T04:54:31Z,69.43,-165.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T05:05:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T05:05:05Z,69.436,-165.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T13:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T13:02:46Z,69.543,-164.969,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-07T20:22:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-07T20:22:52Z,69.629,-164.92,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-08T12:40:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-08T12:40:55Z,69.682,-164.257,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T02:34:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T02:34:30Z,69.818,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T05:23:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T05:23:26Z,69.824,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T06:57:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T06:57:06Z,69.835,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T08:01:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T08:01:24Z,69.83,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T10:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T10:51:51Z,69.85,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T14:09:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T14:09:09Z,69.834,-163.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-09T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-09T15:51:15Z,69.825,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T03:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T03:51:31Z,69.836,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T06:34:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T06:34:13Z,69.857,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T07:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T07:13:38Z,69.849,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T12:21:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T12:21:32Z,69.858,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T13:59:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T13:59:06Z,69.867,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T14:02:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T14:02:19Z,69.87,-163.604,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-10T15:15:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-10T15:15:43Z,69.875,-163.589,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T00:11:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T00:11:33Z,69.857,-163.606,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T01:49:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T01:49:20Z,69.863,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T02:56:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T02:56:55Z,69.858,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T03:27:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T03:27:49Z,69.869,-163.571,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-11T13:15:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-11T13:15:14Z,69.874,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T02:11:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T02:11:32Z,69.768,-163.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T06:30:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T06:30:41Z,69.779,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T09:19:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T09:19:42Z,69.816,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T11:59:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T11:59:25Z,69.827,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T13:37:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T13:37:28Z,69.831,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T17:42:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T17:42:31Z,69.85,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-12T18:41:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-12T18:41:42Z,69.867,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-13T13:29:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T13:29:37Z,70.028,-163.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-13T14:09:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-13T14:09:22Z,70.03,-163.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-14T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T05:10:23Z,70.184,-162.602,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-14T21:56:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-14T21:56:00Z,70.381,-161.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T11:28:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T11:28:11Z,70.453,-161.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T13:07:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T13:07:28Z,70.456,-161.425,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T15:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T15:02:20Z,70.42,-161.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T16:25:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T16:25:24Z,70.445,-161.553,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-15T17:03:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-15T17:03:38Z,70.415,-161.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T00:50:28Z,70.4,-161.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T01:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T01:32:28Z,70.403,-161.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T02:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T02:32:28Z,70.409,-161.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T03:06:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T03:06:58Z,70.396,-161.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-16T04:17:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-16T04:17:28Z,70.398,-161.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T01:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T01:06:22Z,70.386,-161.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T02:17:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T02:17:01Z,70.405,-161.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T06:13:20Z,70.407,-161.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T14:32:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T14:32:02Z,70.349,-162.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T16:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T16:08:51Z,70.311,-162.562,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T17:45:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T17:45:06Z,70.287,-162.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T18:11:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T18:11:09Z,70.275,-162.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-17T19:32:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-17T19:32:36Z,70.234,-162.748,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T00:27:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T00:27:32Z,70.114,-162.93,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T02:43:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T02:43:18Z,70.084,-162.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T03:28:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T03:28:15Z,70.07,-163.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T04:04:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T04:04:15Z,70.08,-162.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T05:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T05:07:15Z,70.082,-162.938,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T06:07:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T06:07:15Z,70.082,-162.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-18T07:09:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-18T07:09:55Z,70.086,-162.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T00:51:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T00:51:20Z,69.829,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T03:03:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T03:03:50Z,69.814,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T04:11:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T04:11:20Z,69.822,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T08:29:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T08:29:50Z,69.842,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T12:28:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T12:28:03Z,69.757,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-19T13:17:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-19T13:17:09Z,69.756,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T03:13:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T03:13:16Z,69.734,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T05:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T05:41:26Z,69.748,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T06:39:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T06:39:56Z,69.755,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T07:22:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T07:22:41Z,69.755,-163.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-20T08:09:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-20T08:09:11Z,69.761,-163.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-21T12:05:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T12:05:51Z,69.711,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-21T13:46:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T13:46:00Z,69.706,-163.611,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-21T15:21:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-21T15:21:15Z,69.706,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T00:08:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T00:08:54Z,69.693,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T04:08:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T04:08:05Z,69.68,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T11:52:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T11:52:21Z,69.691,-163.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-22T13:52:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-22T13:52:57Z,69.667,-163.947,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T01:32:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T01:32:47Z,69.628,-163.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T06:48:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T06:48:48Z,69.6,-163.877,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T07:06:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T07:06:03Z,69.6,-163.875,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T08:31:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T08:31:13Z,69.605,-163.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-23T11:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-23T11:41:00Z,69.613,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T00:10:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T00:10:03Z,69.688,-163.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T01:41:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T01:41:51Z,69.7,-163.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T02:51:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T02:51:36Z,69.696,-163.899,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T06:36:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T06:36:50Z,69.728,-163.935,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T08:20:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T08:20:12Z,69.748,-163.942,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T13:12:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T13:12:12Z,69.72,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-24T14:56:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-24T14:56:47Z,69.717,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T02:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T02:21:25Z,69.749,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T06:24:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T06:24:49Z,69.78,-163.585,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T11:23:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T11:23:44Z,69.774,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T13:04:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T13:04:26Z,69.767,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-25T14:14:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-25T14:14:49Z,69.756,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T04:29:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T04:29:07Z,69.766,-163.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T06:16:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T06:16:26Z,69.775,-163.596,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T09:26:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T09:26:49Z,69.785,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T12:52:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T12:52:06Z,69.8,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-26T16:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-26T16:06:53Z,69.798,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-27T00:42:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T00:42:15Z,69.802,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-27T02:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T02:14:06Z,69.83,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-27T03:11:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-27T03:11:21Z,69.801,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-28T03:26:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T03:26:35Z,69.744,-163.599,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-28T04:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T04:03:51Z,69.735,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-28T05:22:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-28T05:22:01Z,69.736,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-29T12:18:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T12:18:23Z,69.729,-163.52,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-29T20:02:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-29T20:02:45Z,69.696,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T01:53:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T01:53:52Z,69.702,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T04:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T04:47:02Z,69.679,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T05:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T05:22:07Z,69.669,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T06:03:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T06:03:17Z,69.669,-163.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-30T07:03:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-30T07:03:27Z,69.668,-163.615,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T00:07:45Z,69.666,-163.649,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T03:13:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T03:13:57Z,69.669,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T07:42:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T07:42:40Z,69.655,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T09:02:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T09:02:22Z,69.656,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-07-31T13:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-07-31T13:36:04Z,69.667,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T01:18:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T01:18:30Z,69.665,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T03:15:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T03:15:30Z,69.668,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T04:31:07Z,69.669,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T05:13:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T05:13:58Z,69.664,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-01T06:42:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-01T06:42:09Z,69.67,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T02:27:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T02:27:23Z,69.672,-163.739,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T03:11:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T03:11:08Z,69.678,-163.646,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T04:06:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T04:06:38Z,69.68,-163.631,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-02T14:54:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-02T14:54:19Z,69.656,-163.628,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T01:09:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T01:09:48Z,69.675,-163.67,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T02:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T02:00:42Z,69.675,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T04:31:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T04:31:10Z,69.663,-163.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T05:21:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T05:21:24Z,69.67,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-03T06:16:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-03T06:16:19Z,69.675,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T04:21:21Z,69.685,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T05:45:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T05:45:49Z,69.685,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T07:26:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T07:26:17Z,69.685,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T11:06:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T11:06:32Z,69.688,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T12:58:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T12:58:21Z,69.694,-163.647,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T13:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T13:33:49Z,69.699,-163.59,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-04T14:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-04T14:33:26Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T00:58:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T00:58:31Z,69.676,-163.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T04:21:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T04:21:21Z,69.69,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T05:20:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T05:20:19Z,69.687,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T12:47:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T12:47:47Z,69.668,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T15:58:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T15:58:19Z,69.658,-163.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-05T17:42:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-05T17:42:10Z,69.659,-163.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-06T00:00:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T00:00:25Z,69.653,-163.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 6 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-06T01:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T01:38:40Z,69.65,-163.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-06T02:06:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-06T02:06:40Z,69.644,-163.567,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T04:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T04:33:23Z,69.741,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T05:24:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T05:24:22Z,69.731,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T06:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T06:53:55Z,69.732,-163.651,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T07:10:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T07:10:55Z,69.737,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T09:38:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T09:38:40Z,69.743,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-07T10:25:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-07T10:25:10Z,69.747,-163.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-08T01:45:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T01:45:33Z,69.741,-163.619,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-08T03:22:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T03:22:23Z,69.732,-163.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-08T10:03:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-08T10:03:23Z,69.724,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T00:04:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T00:04:58Z,69.732,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T01:16:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T01:16:31Z,69.732,-163.641,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T03:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T03:24:48Z,69.725,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T06:47:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T06:47:37Z,69.706,-163.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T07:10:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T07:10:20Z,69.704,-163.645,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T08:01:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T08:01:20Z,69.7,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T09:36:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T09:36:35Z,69.698,-163.64,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-09T10:26:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-09T10:26:05Z,69.698,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T04:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T04:13:56Z,69.678,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T05:59:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T05:59:52Z,69.708,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T06:45:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T06:45:48Z,69.707,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T09:14:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T09:14:52Z,69.72,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T11:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T11:46:33Z,69.721,-163.714,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-10T12:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-10T12:49:55Z,69.725,-163.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-11T02:59:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T02:59:33Z,69.711,-163.622,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-11T07:14:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T07:14:21Z,69.699,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-11T18:14:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-11T18:14:48Z,69.642,-163.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-12T14:46:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T14:46:19Z,69.686,-163.686,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-12T15:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T15:08:55Z,69.684,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-12T16:25:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-12T16:25:21Z,69.684,-163.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T04:14:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T04:14:44Z,69.69,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T12:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T12:55:34Z,69.689,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T17:54:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T17:54:16Z,69.689,-163.629,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-13T18:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-13T18:07:01Z,69.689,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-14T06:47:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-14T06:47:14Z,69.681,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T02:09:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T02:09:24Z,69.686,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T04:46:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T04:46:52Z,69.69,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T12:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T12:34:32Z,69.689,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-15T14:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-15T14:09:46Z,69.697,-163.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-16T06:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T06:08:45Z,69.68,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-16T12:37:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T12:37:44Z,69.671,-163.717,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-16T17:02:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-16T17:02:18Z,69.668,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T07:19:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T07:19:25Z,69.674,-163.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T18:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T18:20:04Z,69.693,-163.652,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T20:32:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T20:32:27Z,69.681,-163.658,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-17T22:46:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-17T22:46:07Z,69.686,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-18T16:13:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T16:13:38Z,69.694,-163.654,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-18T17:18:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-18T17:18:15Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T00:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T00:02:43Z,69.634,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T04:49:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T04:49:42Z,69.659,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T06:07:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T06:07:54Z,69.644,-163.706,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-19T14:10:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-19T14:10:48Z,69.677,-163.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T09:08:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T09:08:38Z,69.696,-163.689,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T10:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T10:12:46Z,69.701,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T11:38:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T11:38:32Z,69.711,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-20T12:06:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-20T12:06:52Z,69.712,-163.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T07:06:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T07:06:53Z,69.688,-163.656,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T08:48:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T08:48:04Z,69.689,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T16:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T16:50:54Z,69.692,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T17:45:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T17:45:54Z,69.689,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T20:02:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T20:02:14Z,69.678,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-21T21:30:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-21T21:30:56Z,69.674,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T03:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T03:29:55Z,69.686,-163.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T05:10:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T05:10:29Z,69.676,-163.643,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T06:44:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T06:44:54Z,69.665,-163.653,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-22T07:04:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-22T07:04:18Z,69.662,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T03:56:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T03:56:30Z,69.671,-163.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T16:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T16:23:01Z,69.714,-163.833,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T17:33:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T17:33:56Z,69.712,-163.824,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T19:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T19:43:17Z,69.711,-163.819,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T21:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T21:07:36Z,69.713,-163.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-23T22:33:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-23T22:33:49Z,69.71,-163.817,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-24T07:07:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T07:07:27Z,69.641,-163.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-24T08:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T08:53:27Z,69.64,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-24T09:25:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-24T09:25:30Z,69.638,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-25T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T16:45:07Z,69.675,-163.663,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-25T17:49:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T17:49:47Z,69.681,-163.678,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-25T22:59:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-25T22:59:37Z,69.68,-163.692,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-26T07:02:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T07:02:20Z,69.736,-163.677,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-26T08:43:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T08:43:55Z,69.746,-163.685,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-26T10:51:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-26T10:51:10Z,69.751,-163.7,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-27T00:43:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T00:43:42Z,69.758,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-27T10:04:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T10:04:20Z,69.689,-163.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-27T12:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-27T12:03:00Z,69.692,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T04:38:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T04:38:52Z,69.676,-163.698,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T06:21:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T06:21:05Z,69.678,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T09:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T09:48:01Z,69.685,-163.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T10:12:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T10:12:16Z,69.677,-163.695,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T11:50:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T11:50:56Z,69.688,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-28T12:07:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-28T12:07:36Z,69.685,-163.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T04:23:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T04:23:52Z,69.689,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T07:54:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T07:54:54Z,69.684,-163.709,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T09:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T09:19:26Z,69.666,-163.642,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-29T10:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-29T10:01:01Z,69.669,-163.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T04:28:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T04:28:16Z,69.682,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T05:32:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T05:32:28Z,69.682,-163.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T09:01:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T09:01:06Z,69.693,-163.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T10:09:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T10:09:41Z,69.688,-163.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-30T11:33:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-30T11:33:26Z,69.682,-163.726,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-31T00:24:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T00:24:48Z,69.684,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-31T08:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T08:39:37Z,69.687,-163.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-08-31T12:59:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-08-31T12:59:16Z,69.696,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T00:30:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T00:30:29Z,69.686,-163.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T02:09:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T02:09:46Z,69.685,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T03:43:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T03:43:17Z,69.682,-163.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T06:45:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T06:45:01Z,69.683,-163.68,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T07:12:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T07:12:04Z,69.682,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T08:09:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T08:09:57Z,69.668,-163.705,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T09:48:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T09:48:12Z,69.68,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-01T10:06:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-01T10:06:57Z,69.68,-163.69,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T07:58:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T07:58:57Z,69.691,-163.657,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T09:40:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T09:40:52Z,69.687,-163.63,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T10:56:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T10:56:57Z,69.693,-163.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-02T11:20:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-02T11:20:42Z,69.691,-163.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T00:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T00:41:30Z,69.704,-163.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T02:18:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T02:18:07Z,69.698,-163.688,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T05:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T05:39:01Z,69.688,-163.666,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T07:20:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T07:20:03Z,69.68,-163.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T08:32:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T08:32:12Z,69.683,-163.696,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T09:03:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T09:03:57Z,69.678,-163.693,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T10:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T10:49:16Z,69.686,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-03T12:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-03T12:49:48Z,69.676,-163.704,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-04T02:14:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T02:14:56Z,69.682,-163.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-04T08:57:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T08:57:37Z,69.684,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-04T22:39:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-04T22:39:59Z,69.666,-163.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-05T02:05:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T02:05:44Z,69.683,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-05T10:23:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T10:23:09Z,69.687,-163.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-05T19:01:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-05T19:01:41Z,69.677,-163.691,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T06:34:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T06:34:11Z,69.697,-163.694,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T07:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T07:52:15Z,69.682,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T08:54:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T08:54:36Z,69.674,-163.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-06T09:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-06T09:34:14Z,69.683,-163.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-07T09:15:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-07T09:15:50Z,69.816,-163.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T04:04:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T04:04:27Z,69.678,-163.715,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T07:30:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T07:30:16Z,69.693,-163.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T08:44:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T08:44:44Z,69.698,-163.856,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T09:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T09:20:10Z,69.692,-163.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-08T10:15:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-08T10:15:04Z,69.691,-163.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T01:22:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T01:22:57Z,69.688,-164.088,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T03:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T03:53:55Z,69.69,-164.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T04:54:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T04:54:40Z,69.686,-164.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T07:16:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T07:16:53Z,69.691,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-09T08:53:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-09T08:53:14Z,69.694,-164.073,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T02:54:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T02:54:12Z,69.632,-164.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T03:41:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T03:41:02Z,69.635,-164.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T05:22:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T05:22:51Z,69.633,-164.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T07:05:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T07:05:49Z,69.637,-164.14,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T08:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T08:34:21Z,69.63,-164.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-10T11:14:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-10T11:14:32Z,69.61,-164.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T00:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T00:34:50Z,69.607,-164.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T01:19:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T01:19:22Z,69.603,-164.151,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T03:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T03:15:32Z,69.596,-164.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T04:50:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T04:50:43Z,69.597,-164.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T05:53:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T05:53:29Z,69.594,-164.211,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T13:06:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T13:06:36Z,69.602,-164.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T16:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T16:01:07Z,69.608,-164.16,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-11T17:15:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-11T17:15:32Z,69.605,-164.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-12T07:52:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T07:52:25Z,69.749,-163.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-12T08:30:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-12T08:30:40Z,69.752,-163.736,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T06:34:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T06:34:50Z,70.054,-163.138,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T07:30:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T07:30:20Z,70.041,-163.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T08:13:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T08:13:05Z,70.038,-163.18,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-13T19:02:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-13T19:02:46Z,70.169,-162.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-14T20:33:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T20:33:23Z,70.423,-161.314,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-14T22:13:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T22:13:11Z,70.43,-161.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-14T23:52:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-14T23:52:41Z,70.438,-161.263,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-15T06:48:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T06:48:01Z,70.454,-161.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-15T07:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-15T07:42:11Z,70.456,-160.972,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-17T02:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T02:20:01Z,70.965,-158.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-17T23:07:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-17T23:07:30Z,71.244,-157.374,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-18T00:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T00:27:05Z,71.228,-157.235,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-18T15:37:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-18T15:37:55Z,71.43,-156.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-19T01:03:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T01:03:35Z,71.46,-156.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-19T03:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-19T03:07:01Z,71.478,-156.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T05:39:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T05:39:40Z,71.198,-154.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T09:51:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T09:51:31Z,71.122,-154.595,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T11:31:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T11:31:18Z,71.055,-154.668,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T12:45:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T12:45:28Z,71.05,-154.613,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T13:02:32Z,71.066,-154.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-20T14:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-20T14:25:16Z,71.094,-154.575,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T00:42:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T00:42:11Z,71.356,-156.058,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T01:28:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T01:28:02Z,71.355,-156.197,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T04:50:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T04:50:51Z,71.414,-156.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T06:23:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T06:23:45Z,71.406,-156.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T09:39:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T09:39:45Z,71.383,-156.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T10:55:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T10:55:34Z,71.358,-157.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T12:58:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T12:58:33Z,71.25,-157.451,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-21T17:34:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-21T17:34:06Z,71.162,-157.974,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T02:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T02:48:06Z,71.154,-158.309,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T04:49:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T04:49:54Z,71.154,-158.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T06:09:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T06:09:56Z,71.148,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T08:05:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T08:05:34Z,71.15,-158.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T12:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T12:25:31Z,71.156,-158.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T14:07:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T14:07:32Z,71.165,-158.281,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T15:37:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T15:37:45Z,71.165,-158.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T16:45:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T16:45:07Z,71.155,-158.327,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-22T17:18:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-22T17:18:10Z,71.151,-158.324,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-23T00:06:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T00:06:34Z,71.157,-158.329,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-23T04:08:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T04:08:23Z,71.17,-158.325,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-23T12:10:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-23T12:10:45Z,71.1,-158.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-24T05:46:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-24T05:46:01Z,71.152,-158.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-25T22:21:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-25T22:21:18Z,70.489,-162.084,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T01:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T01:23:07Z,70.501,-162.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T04:47:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T04:47:46Z,70.493,-162.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T07:14:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T07:14:38Z,70.501,-162.583,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-26T08:01:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-26T08:01:56Z,70.503,-162.61,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T01:35:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T01:35:00Z,70.299,-163.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T02:44:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T02:44:50Z,70.302,-163.614,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T04:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T04:27:15Z,70.287,-163.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T05:24:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T05:24:12Z,70.284,-163.644,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T07:07:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T07:07:34Z,70.278,-163.66,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T09:22:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T09:22:45Z,70.265,-163.72,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-27T15:18:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-27T15:18:43Z,70.241,-164.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T00:09:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T00:09:33Z,70.205,-164.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T02:24:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T02:24:10Z,70.205,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T03:30:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T03:30:30Z,70.193,-164.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T04:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T04:11:43Z,70.19,-164.093,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T05:12:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T05:12:11Z,70.189,-164.112,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T06:51:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T06:51:08Z,70.178,-164.142,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T07:20:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T07:20:30Z,70.175,-164.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T08:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T08:23:25Z,70.171,-164.156,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-28T09:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-28T09:02:07Z,70.168,-164.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T02:08:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T02:08:12Z,70.133,-164.25,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T03:48:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T03:48:43Z,70.122,-164.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T06:44:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T06:44:34Z,70.127,-164.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T07:08:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T07:08:36Z,70.125,-164.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-29T08:29:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-29T08:29:36Z,70.125,-164.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T00:17:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T00:17:46Z,70.093,-164.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T01:24:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T01:24:34Z,70.098,-164.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T03:05:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T03:05:42Z,70.081,-164.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T04:45:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T04:45:38Z,70.065,-164.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T05:03:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T05:03:44Z,70.071,-164.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T08:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T08:10:17Z,70.068,-164.452,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-09-30T09:47:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-09-30T09:47:02Z,70.068,-164.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T01:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T01:24:18Z,70.099,-164.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T03:16:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T03:16:13Z,70.108,-164.249,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T07:58:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T07:58:23Z,70.103,-164.245,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T08:10:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T08:10:13Z,70.109,-164.226,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T09:34:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T09:34:35Z,70.116,-164.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-01T15:20:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-01T15:20:01Z,70.1,-164.269,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T00:08:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T00:08:45Z,70.085,-164.296,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T01:03:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T01:03:21Z,70.09,-164.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T02:41:57Z,70.093,-164.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T04:20:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T04:20:36Z,70.102,-164.29,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-02T07:47:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-02T07:47:49Z,70.078,-164.272,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T00:31:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T00:31:26Z,70.214,-164.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T03:56:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T03:56:15Z,70.243,-164.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T05:35:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T05:35:57Z,70.246,-164.047,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T07:18:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T07:18:20Z,70.257,-164.01,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-03T16:11:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-03T16:11:31Z,70.152,-164.241,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T00:21:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T00:21:07Z,70.106,-164.271,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T03:46:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T03:46:32Z,70.058,-164.335,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T05:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T05:08:47Z,70.049,-164.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T06:52:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T06:52:55Z,70.022,-164.411,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T07:22:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T07:22:40Z,70.025,-164.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-04T08:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-04T08:37:00Z,70.025,-164.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T02:05:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T02:05:06Z,69.916,-164.673,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T05:23:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T05:23:51Z,69.875,-164.822,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T06:29:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T06:29:21Z,69.874,-164.838,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T07:10:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T07:10:39Z,69.871,-164.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-05T08:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-05T08:12:01Z,69.864,-164.879,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T00:12:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T00:12:18Z,70.011,-164.503,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T03:34:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T03:34:18Z,70.005,-164.472,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T04:24:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T04:24:44Z,70.015,-164.462,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T05:14:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T05:14:37Z,70.025,-164.46,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T06:06:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T06:06:22Z,70.035,-164.47,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T07:47:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T07:47:10Z,70.04,-164.506,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-06T08:40:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-06T08:40:02Z,70.042,-164.547,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-07T05:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-07T05:45:00Z,69.87,-163.699,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T04:51:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T04:51:51Z,70.231,-162.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T05:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T05:14:55Z,70.228,-162.31,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T06:31:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T06:31:25Z,70.245,-162.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T19:32:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T19:32:32Z,70.484,-162.141,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-08T20:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-08T20:42:54Z,70.461,-162.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T00:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T00:33:11Z,70.499,-162.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T02:57:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T02:57:24Z,70.503,-162.627,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T03:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T03:12:01Z,70.512,-162.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T04:54:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T04:54:13Z,70.513,-162.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T06:23:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T06:23:07Z,70.516,-162.811,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T17:01:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T17:01:07Z,70.451,-163.676,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-09T20:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-09T20:17:48Z,70.433,-163.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T00:31:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T00:31:49Z,70.374,-164.024,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T01:35:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T01:35:53Z,70.354,-164.042,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T02:45:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T02:45:29Z,70.345,-164.066,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T04:24:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T04:24:13Z,70.322,-164.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T06:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T06:07:55Z,70.285,-164.118,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T07:51:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T07:51:45Z,70.289,-164.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-10T13:02:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-10T13:02:32Z,70.22,-164.256,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T01:54:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T01:54:17Z,70.067,-164.33,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T02:30:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T02:30:02Z,70.066,-164.356,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T04:12:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T04:12:50Z,70.052,-164.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T05:47:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T05:47:36Z,70.031,-164.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-11T06:10:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-11T06:10:17Z,70.02,-164.41,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T00:31:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T00:31:30Z,70.074,-164.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T03:44:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T03:44:13Z,70.051,-164.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T05:21:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T05:21:13Z,70.041,-164.377,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-12T07:02:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-12T07:02:37Z,70.048,-164.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T00:29:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T00:29:13Z,69.979,-164.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T01:46:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T01:46:11Z,69.968,-164.814,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T03:53:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T03:53:43Z,69.942,-164.881,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T05:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T05:33:21Z,69.93,-164.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T12:28:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T12:28:12Z,69.869,-165.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T15:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T15:51:15Z,69.895,-165.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T17:41:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T17:41:36Z,69.903,-165.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-13T18:37:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-13T18:37:53Z,69.912,-165.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T00:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T00:15:05Z,69.995,-165.683,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T01:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T01:51:13Z,70.005,-165.735,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T03:36:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T03:36:45Z,70.009,-165.849,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T05:08:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T05:08:51Z,70.012,-165.922,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T06:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T06:48:13Z,70.025,-165.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T07:04:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T07:04:21Z,70.028,-165.887,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-14T08:00:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-14T08:00:16Z,70.035,-165.863,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T00:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T00:07:48Z,69.941,-166.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T04:10:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T04:10:52Z,69.867,-165.936,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T05:07:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T05:07:23Z,69.847,-165.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T13:50:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T13:50:42Z,69.651,-165.808,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T14:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T14:59:21Z,69.622,-165.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T16:15:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T16:15:03Z,69.601,-165.888,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-15T20:36:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-15T20:36:05Z,69.487,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T02:07:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T02:07:56Z,69.351,-165.798,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T04:57:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T04:57:44Z,69.328,-165.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T11:27:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T11:27:46Z,69.279,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-16T12:04:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-16T12:04:10Z,69.272,-165.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T01:47:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T01:47:12Z,68.941,-165.597,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T03:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T03:04:22Z,68.898,-165.539,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T04:12:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T04:12:46Z,68.866,-165.455,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T05:46:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T05:46:28Z,68.863,-165.315,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T06:46:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T06:46:05Z,68.871,-165.252,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T07:27:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T07:27:15Z,68.884,-165.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T08:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T08:09:30Z,68.885,-165.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-17T09:08:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-17T09:08:13Z,68.893,-165.231,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-18T21:06:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T21:06:28Z,68.395,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-18T23:21:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-18T23:21:47Z,68.392,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T00:09:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T00:09:54Z,68.385,-167.24,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T01:03:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T01:03:52Z,68.377,-167.28,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T03:30:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T03:30:48Z,68.342,-167.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T05:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T05:04:51Z,68.318,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T06:45:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T06:45:16Z,68.309,-167.398,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T07:40:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T07:40:46Z,68.318,-167.434,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T08:27:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T08:27:16Z,68.339,-167.446,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-19T10:08:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-19T10:08:31Z,68.37,-167.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T01:26:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T01:26:36Z,68.15,-167.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T04:50:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T04:50:52Z,68.076,-167.701,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T05:33:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T05:33:55Z,68.064,-167.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T11:17:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T11:17:40Z,67.946,-167.876,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T14:04:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T14:04:09Z,67.909,-167.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-20T17:55:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-20T17:55:10Z,67.855,-167.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T03:58:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T03:58:17Z,67.717,-167.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T04:29:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T04:29:40Z,67.728,-167.298,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T05:13:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T05:13:37Z,67.724,-167.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T06:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T06:51:07Z,67.732,-167.295,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-21T07:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-21T07:44:22Z,67.745,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T01:33:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T01:33:11Z,67.601,-166.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T04:07:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T04:07:00Z,67.551,-166.32,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T13:41:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T13:41:00Z,67.3,-165.916,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-22T20:56:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-22T20:56:49Z,67.154,-165.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T00:17:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T00:17:27Z,67.12,-165.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T01:27:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T01:27:33Z,67.106,-165.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T02:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T02:46:02Z,67.096,-165.857,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T05:13:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T05:13:14Z,67.072,-165.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-23T06:03:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-23T06:03:39Z,67.082,-165.878,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T00:14:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T00:14:18Z,67.135,-166.069,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T01:40:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T01:40:00Z,67.149,-166.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T03:59:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T03:59:21Z,67.179,-166.179,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T04:03:01Z,67.183,-166.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T05:02:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T05:02:59Z,67.195,-166.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T12:16:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T12:16:22Z,67.244,-166.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T13:58:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T13:58:42Z,67.252,-166.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T15:58:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T15:58:38Z,67.239,-166.601,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-24T17:41:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-24T17:41:20Z,67.243,-166.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T01:59:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T01:59:27Z,67.167,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T02:04:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T02:04:07Z,67.161,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T18:53:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T18:53:48Z,67.255,-167.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T20:20:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T20:20:10Z,67.281,-167.424,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-25T22:00:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-25T22:00:30Z,67.316,-167.414,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T03:16:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T03:16:10Z,67.423,-167.342,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T06:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T06:38:11Z,67.456,-167.288,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T15:15:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T15:15:42Z,67.689,-166.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-26T16:21:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-26T16:21:25Z,67.702,-167.015,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T00:43:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T00:43:29Z,67.855,-167.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T01:08:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T01:08:00Z,67.877,-167.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T02:24:24Z,67.911,-167.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T04:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T04:22:30Z,67.893,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T06:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T06:07:52Z,67.903,-167.119,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T11:42:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T11:42:26Z,67.942,-167.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-27T12:47:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-27T12:47:55Z,67.958,-167.312,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T00:32:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T00:32:30Z,67.955,-167.409,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T01:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T01:10:36Z,67.958,-167.426,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T02:15:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T02:15:46Z,67.979,-167.466,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T07:36:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T07:36:02Z,67.951,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-28T13:13:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-28T13:13:21Z,67.974,-167.637,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T00:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T00:18:22Z,68.211,-167.96,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T03:45:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T03:45:00Z,68.267,-167.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T04:03:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T04:03:31Z,68.278,-167.787,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T14:04:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T14:04:36Z,68.562,-167.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T15:41:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T15:41:17Z,68.553,-167.233,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T16:26:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T16:26:40Z,68.554,-167.248,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T17:30:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T17:30:38Z,68.544,-167.223,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T18:56:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T18:56:52Z,68.552,-167.216,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-29T19:08:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-29T19:08:41Z,68.545,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T00:10:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T00:10:15Z,68.564,-167.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T01:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T01:54:43Z,68.558,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T02:10:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T02:10:32Z,68.557,-167.189,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T03:03:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T03:03:04Z,68.553,-167.205,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T04:37:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T04:37:00Z,68.556,-167.165,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T05:28:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T05:28:22Z,68.547,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T06:23:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T06:23:03Z,68.55,-167.157,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T07:58:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T07:58:32Z,68.552,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-30T09:44:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-30T09:44:16Z,68.552,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T00:39:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T00:39:24Z,68.555,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T01:41:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T01:41:26Z,68.561,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T02:41:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T02:41:57Z,68.564,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T03:36:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T03:36:34Z,68.567,-167.163,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T04:34:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T04:34:07Z,68.557,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T05:17:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T05:17:26Z,68.558,-167.167,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T06:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T06:18:36Z,68.543,-167.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T07:38:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T07:38:19Z,68.537,-167.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T08:00:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T08:00:31Z,68.531,-167.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-10-31T09:18:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-10-31T09:18:59Z,68.531,-167.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T00:49:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T00:49:31Z,68.563,-167.166,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T01:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T01:30:26Z,68.548,-167.192,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T02:07:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T02:07:01Z,68.544,-167.15,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T04:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T04:03:01Z,68.541,-167.124,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T05:07:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T05:07:25Z,68.535,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T06:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T06:44:12Z,68.519,-167.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T07:15:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T07:15:10Z,68.523,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-01T08:56:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-01T08:56:10Z,68.512,-167.113,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T00:19:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T00:19:00Z,68.555,-167.173,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T01:21:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T01:21:14Z,68.559,-167.128,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T02:04:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T02:04:06Z,68.557,-167.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T03:41:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T03:41:30Z,68.55,-167.053,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T05:26:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T05:26:25Z,68.533,-167.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T06:33:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T06:33:41Z,68.534,-167.043,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T12:22:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T12:22:54Z,68.506,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-02T15:07:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-02T15:07:44Z,68.515,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T03:03:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T03:03:09Z,68.518,-166.918,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T05:00:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T05:00:07Z,68.505,-166.944,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T08:22:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T08:22:18Z,68.502,-166.966,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T12:11:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T12:11:58Z,68.495,-166.984,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T13:13:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T13:13:56Z,68.492,-166.981,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T14:57:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T14:57:05Z,68.502,-166.961,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-03T15:21:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-03T15:21:31Z,68.505,-166.98,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T01:20:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T01:20:28Z,68.5,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T02:49:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T02:49:16Z,68.506,-167.012,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T03:03:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T03:03:00Z,68.507,-167.02,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T04:42:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T04:42:32Z,68.512,-166.995,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T07:53:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T07:53:27Z,68.489,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-04T13:08:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-04T13:08:43Z,68.508,-167.005,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T00:47:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T00:47:53Z,68.532,-167.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T02:31:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T02:31:45Z,68.527,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T04:21:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T04:21:16Z,68.522,-167.081,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T06:00:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T06:00:43Z,68.525,-167.079,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T07:38:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T07:38:23Z,68.545,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-05T13:31:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-05T13:31:47Z,68.543,-167.104,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T00:26:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T00:26:03Z,68.531,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T01:18:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T01:18:01Z,68.528,-167.062,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T02:17:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T02:17:38Z,68.529,-167.067,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T03:54:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T03:54:20Z,68.527,-167.007,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-06T05:34:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-06T05:34:44Z,68.54,-166.992,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T00:21:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T00:21:54Z,68.542,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T01:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T01:11:39Z,68.54,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T02:03:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T02:03:24Z,68.538,-167.11,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T03:31:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T03:31:15Z,68.537,-167.121,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T05:06:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T05:06:09Z,68.54,-167.1,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T06:52:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T06:52:10Z,68.522,-167.17,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T07:16:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T07:16:55Z,68.536,-167.129,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-07T14:13:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-07T14:13:12Z,68.534,-167.09,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T00:08:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T00:08:55Z,68.637,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T11:18:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T11:18:22Z,68.545,-167.23,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T13:58:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T13:58:34Z,68.538,-167.132,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T15:40:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T15:40:34Z,68.545,-167.12,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-08T16:20:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-08T16:20:51Z,68.542,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T00:55:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T00:55:21Z,68.524,-167.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T02:45:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T02:45:22Z,68.516,-167.011,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T04:16:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T04:16:37Z,68.511,-167.021,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-09T12:49:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-09T12:49:01Z,68.53,-167.051,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T02:12:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T02:12:01Z,68.526,-166.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T03:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T03:50:53Z,68.527,-166.825,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T04:14:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T04:14:13Z,68.532,-166.84,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T06:36:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T06:36:46Z,68.562,-166.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T12:38:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T12:38:15Z,68.584,-166.796,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-10T13:38:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-10T13:38:05Z,68.594,-166.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T00:04:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T00:04:33Z,68.513,-167.153,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T01:22:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T01:22:13Z,68.512,-167.117,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T03:04:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T03:04:40Z,68.517,-167.127,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T04:47:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T04:47:26Z,68.507,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T05:15:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T05:15:35Z,68.508,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T06:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T06:24:38Z,68.509,-167.134,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T10:46:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T10:46:03Z,68.494,-167.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T12:28:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T12:28:51Z,68.497,-167.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-11T13:48:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-11T13:48:03Z,68.496,-167.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T00:14:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T00:14:16Z,68.513,-167.035,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T01:51:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T01:51:15Z,68.51,-167.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T02:53:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T02:53:05Z,68.502,-167.034,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T03:00:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T03:00:15Z,68.506,-167.048,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T04:37:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T04:37:04Z,68.493,-167.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T05:14:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T05:14:29Z,68.495,-167.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T06:39:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T06:39:34Z,68.482,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T12:15:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T12:15:49Z,68.492,-166.97,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-12T13:19:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-12T13:19:17Z,68.496,-167.061,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T00:56:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T00:56:40Z,68.446,-167.123,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T02:41:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T02:41:45Z,68.465,-167.107,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T04:31:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T04:31:07Z,68.485,-167.125,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T06:16:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T06:16:01Z,68.486,-167.114,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-13T13:05:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-13T13:05:22Z,68.499,-167.044,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T00:34:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T00:34:21Z,68.505,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T01:13:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T01:13:40Z,68.546,-167.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T02:53:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T02:53:11Z,68.493,-167.094,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T03:54:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T03:54:41Z,68.48,-167.147,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T04:07:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T04:07:41Z,68.482,-167.149,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-14T05:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-14T05:50:11Z,68.473,-167.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T00:49:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T00:49:43Z,68.424,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T01:50:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T01:50:53Z,68.423,-166.996,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T02:04:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T02:04:51Z,68.425,-167.001,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T03:28:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T03:28:37Z,68.432,-166.999,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T04:00:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T04:00:52Z,68.432,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-15T05:22:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-15T05:22:37Z,68.424,-166.982,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T00:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T00:28:23Z,68.299,-167.013,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T01:41:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T01:41:08Z,68.286,-167.002,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T02:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T02:08:08Z,68.278,-166.997,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T03:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T03:05:08Z,68.264,-166.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T04:46:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T04:46:23Z,68.245,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-16T05:28:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-16T05:28:23Z,68.236,-166.956,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T00:17:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T00:17:08Z,68.224,-166.716,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T01:02:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T01:02:08Z,68.228,-166.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 5 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T02:00:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T02:00:38Z,68.233,-166.718,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T03:36:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T03:36:38Z,68.243,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T04:23:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T04:23:08Z,68.248,-166.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-17T05:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-17T05:14:53Z,68.258,-166.738,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T01:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T01:28:50Z,68.306,-166.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T07:36:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T07:36:04Z,68.384,-166.962,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T08:05:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T08:05:29Z,68.391,-166.985,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-18T13:53:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-18T13:53:49Z,68.496,-167.145,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T00:10:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T00:10:25Z,68.53,-167.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T01:33:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T01:33:40Z,68.534,-167.099,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T02:49:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T02:49:55Z,68.539,-167.109,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T03:50:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T03:50:10Z,68.535,-167.116,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T04:29:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T04:29:10Z,68.536,-167.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T05:27:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T05:27:40Z,68.539,-167.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-19T06:09:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-19T06:09:40Z,68.539,-167.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T00:24:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T00:24:38Z,68.479,-167.137,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T01:30:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T01:30:31Z,68.474,-167.152,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T02:29:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T02:29:01Z,68.468,-167.174,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T03:09:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T03:09:04Z,68.457,-167.182,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T04:09:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T04:09:31Z,68.449,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T05:06:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T05:06:31Z,68.441,-167.208,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-20T06:23:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-20T06:23:01Z,68.429,-167.228,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T00:18:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T00:18:08Z,68.16,-167.554,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T01:05:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T01:05:19Z,68.139,-167.544,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T02:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T02:49:15Z,68.069,-167.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T03:02:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T03:02:50Z,68.074,-167.502,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T04:24:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T04:24:37Z,68.052,-167.492,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T05:27:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T05:27:37Z,68.041,-167.473,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-21T06:11:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-21T06:11:43Z,68.032,-167.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T01:03:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T01:03:51Z,67.684,-167.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T10:30:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T10:30:26Z,67.427,-167.284,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T12:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T12:14:14Z,67.366,-167.285,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-22T13:07:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-22T13:07:52Z,67.339,-167.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T01:53:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T01:53:55Z,67.016,-167.791,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T07:14:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T07:14:50Z,66.906,-168.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T08:02:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T08:02:51Z,66.896,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-23T17:49:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-23T17:49:44Z,66.766,-168.639,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T00:39:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T00:39:05Z,66.653,-168.85,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T03:14:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T03:14:05Z,66.6,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T05:09:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T05:09:53Z,66.566,-168.81,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T14:29:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T14:29:57Z,66.385,-168.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T15:15:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T15:15:58Z,66.374,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-24T16:09:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-24T16:09:35Z,66.366,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-25T05:18:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T05:18:45Z,66.018,-168.025,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-25T14:46:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T14:46:54Z,65.697,-168.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-25T20:07:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-25T20:07:55Z,65.456,-168.587,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T00:18:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T00:18:17Z,65.406,-168.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T01:46:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T01:46:57Z,65.381,-168.681,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T02:42:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T02:42:07Z,65.358,-168.662,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T07:00:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T07:00:48Z,65.295,-168.655,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T08:38:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T08:38:37Z,65.263,-168.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-26T14:10:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-26T14:10:09Z,65.179,-168.572,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T00:17:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T00:17:18Z,65.063,-168.665,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T03:18:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T03:18:46Z,65.025,-168.737,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T04:58:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T04:58:58Z,65.006,-168.73,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T06:35:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T06:35:04Z,64.98,-168.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T07:25:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T07:25:15Z,64.965,-168.755,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-27T11:23:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-27T11:23:35Z,64.918,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T00:47:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T00:47:32Z,64.739,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T01:36:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T01:36:15Z,64.732,-168.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T03:09:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T03:09:49Z,64.695,-168.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T06:59:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T06:59:22Z,64.626,-168.624,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-28T18:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-28T18:33:22Z,64.443,-168.394,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T00:36:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T00:36:13Z,64.302,-168.43,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T04:51:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T04:51:13Z,64.227,-168.447,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T06:39:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T06:39:41Z,64.196,-168.459,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T07:58:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T07:58:16Z,64.17,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T13:34:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T13:34:05Z,64.073,-168.476,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T15:14:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T15:14:35Z,64.044,-168.463,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T16:02:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T16:02:17Z,64.035,-168.495,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-29T18:21:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-29T18:21:52Z,64.005,-168.469,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T02:21:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T02:21:35Z,63.893,-168.568,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T12:30:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T12:30:14Z,63.714,-168.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T15:03:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T15:03:02Z,63.643,-168.682,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T18:18:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T18:18:19Z,63.552,-168.513,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-11-30T19:49:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-11-30T19:49:53Z,63.519,-168.487,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T00:52:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T00:52:15Z,63.38,-168.373,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T05:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T05:51:46Z,63.179,-168.261,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T08:42:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T08:42:24Z,63.044,-168.433,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T13:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T13:12:37Z,62.941,-168.509,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T15:52:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T15:52:12Z,62.919,-168.526,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-01T23:57:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-01T23:57:47Z,62.886,-168.758,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-02T02:41:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T02:41:10Z,62.855,-168.823,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-02T12:10:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T12:10:31Z,62.793,-169.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-02T13:03:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-02T13:03:01Z,62.792,-169.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T02:11:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T02:11:24Z,62.72,-170.217,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T03:33:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T03:33:19Z,62.722,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T04:11:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T04:11:49Z,62.718,-170.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T05:15:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T05:15:15Z,62.704,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T07:32:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T07:32:57Z,62.685,-170.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-04T11:49:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-04T11:49:08Z,62.684,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T04:10:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T04:10:22Z,62.475,-170.008,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T05:56:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T05:56:27Z,62.449,-169.978,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T07:14:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T07:14:31Z,62.452,-169.975,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T12:27:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T12:27:54Z,62.461,-169.869,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T13:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T13:17:30Z,62.462,-169.892,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T17:27:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T17:27:05Z,62.471,-169.864,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-05T18:49:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-05T18:49:00Z,62.477,-169.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T00:07:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T00:07:45Z,62.519,-169.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T01:01:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T01:01:45Z,62.513,-169.859,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T03:16:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T03:16:45Z,62.499,-169.832,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-06T05:17:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-06T05:17:30Z,62.479,-169.821,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T00:45:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T00:45:17Z,62.354,-170.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T01:18:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T01:18:04Z,62.351,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T03:23:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T03:23:10Z,62.349,-170.344,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-07T05:02:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-07T05:02:23Z,62.372,-170.365,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T00:53:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T00:53:34Z,62.565,-170.518,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T02:19:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T02:19:55Z,62.578,-170.512,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T04:17:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T04:17:23Z,62.605,-170.508,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T06:05:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T06:05:35Z,62.628,-170.493,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T09:33:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T09:33:01Z,62.668,-170.441,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T13:38:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T13:38:11Z,62.737,-170.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T14:26:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T14:26:58Z,62.75,-170.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-08T16:08:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-08T16:08:08Z,62.792,-170.382,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T00:58:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T00:58:03Z,62.87,-170.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T01:15:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T01:15:18Z,62.872,-170.221,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T02:09:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T02:09:18Z,62.869,-170.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T03:07:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T03:07:47Z,62.835,-170.187,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T06:03:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T06:03:34Z,62.869,-170.183,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-09T09:11:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-09T09:11:19Z,62.882,-170.098,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T00:23:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T00:23:25Z,62.835,-169.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T05:29:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T05:29:56Z,62.804,-169.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T07:25:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T07:25:51Z,62.799,-169.45,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T08:48:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T08:48:37Z,62.815,-169.417,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T14:57:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T14:57:43Z,62.838,-169.227,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-10T18:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-10T18:44:22Z,62.868,-169.122,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T03:48:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T03:48:13Z,62.882,-168.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T04:41:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T04:41:21Z,62.878,-168.76,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T05:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T05:09:51Z,62.879,-168.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T06:49:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T06:49:21Z,62.894,-168.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T07:14:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T07:14:06Z,62.902,-168.675,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-11T08:29:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-11T08:29:51Z,62.926,-168.626,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T01:32:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T01:32:39Z,62.881,-168.481,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T04:17:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T04:17:48Z,62.847,-168.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T13:44:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T13:44:07Z,62.782,-168.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T14:37:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T14:37:47Z,62.788,-168.399,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-12T16:19:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-12T16:19:26Z,62.788,-168.416,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T00:07:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T00:07:18Z,62.791,-168.267,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T06:06:00Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T06:06:00Z,62.77,-168.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T07:45:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T07:45:47Z,62.773,-168.234,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T13:37:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T13:37:40Z,62.758,-168.199,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-13T15:52:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-13T15:52:11Z,62.753,-168.224,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T00:22:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T00:22:02Z,62.798,-168.178,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T01:37:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T01:37:23Z,62.795,-168.2,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T02:33:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T02:33:24Z,62.806,-168.168,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-14T03:14:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-14T03:14:14Z,62.804,-168.169,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T03:02:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T03:02:30Z,62.669,-168.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T04:44:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T04:44:22Z,62.654,-168.605,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T14:04:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T14:04:22Z,62.506,-168.846,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T15:46:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T15:46:04Z,62.471,-168.853,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-15T16:46:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-15T16:46:02Z,62.468,-168.87,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T04:49:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T04:49:26Z,62.326,-169.198,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T11:22:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T11:22:07Z,62.316,-169.578,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T15:34:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T15:34:14Z,62.311,-169.708,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T16:17:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T16:17:29Z,62.314,-169.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-16T18:01:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-16T18:01:02Z,62.307,-169.767,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T00:46:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T00:46:09Z,62.254,-169.914,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T12:51:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T12:51:46Z,62.205,-170.194,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T14:33:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T14:33:25Z,62.245,-170.292,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T18:42:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T18:42:06Z,62.309,-170.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T19:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T19:49:15Z,62.332,-170.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-17T21:31:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-17T21:31:14Z,62.351,-170.403,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T03:31:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T03:31:59Z,62.398,-170.479,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T04:03:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T04:03:55Z,62.395,-170.483,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T07:42:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T07:42:35Z,62.398,-170.496,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-18T16:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-18T16:50:28Z,62.437,-170.669,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-19T03:03:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T03:03:58Z,62.519,-170.797,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-19T05:18:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T05:18:36Z,62.522,-170.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-19T07:08:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-19T07:08:47Z,62.522,-170.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T04:56:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T04:56:42Z,62.438,-170.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T05:28:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T05:28:27Z,62.436,-170.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T06:45:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T06:45:42Z,62.428,-170.799,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T07:02:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T07:02:57Z,62.429,-170.803,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-20T08:44:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-20T08:44:12Z,62.435,-170.816,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T00:44:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T00:44:43Z,62.52,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T01:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T01:17:50Z,62.525,-170.777,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T02:32:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T02:32:53Z,62.535,-170.766,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T03:31:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T03:31:23Z,62.537,-170.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T04:33:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T04:33:38Z,62.531,-170.712,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T05:10:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T05:10:23Z,62.529,-170.702,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-21T06:20:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-21T06:20:53Z,62.526,-170.667,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T00:36:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T00:36:01Z,62.482,-170.632,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T04:08:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T04:08:59Z,62.41,-170.78,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T05:49:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T05:49:11Z,62.405,-170.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T09:42:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T09:42:44Z,62.309,-170.807,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-22T14:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-22T14:25:59Z,62.274,-170.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T00:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T00:33:21Z,62.232,-171.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T01:30:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T01:30:22Z,62.198,-171.159,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T03:45:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T03:45:10Z,62.17,-171.209,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T07:15:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T07:15:13Z,62.11,-171.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T20:15:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T20:15:19Z,61.942,-171.594,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-23T21:25:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-23T21:25:39Z,61.912,-171.625,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-25T16:01:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T16:01:01Z,61.638,-171.144,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-25T21:49:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-25T21:49:25Z,61.515,-171.054,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T03:17:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T03:17:34Z,61.414,-171.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T04:13:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T04:13:26Z,61.386,-171.259,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T05:49:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T05:49:13Z,61.346,-171.254,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-26T23:44:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-26T23:44:51Z,61.145,-171.634,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-27T01:27:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T01:27:56Z,61.141,-171.664,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-27T14:29:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-27T14:29:22Z,60.937,-171.847,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T05:08:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T05:08:52Z,60.725,-171.842,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T12:39:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T12:39:46Z,60.671,-171.711,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T14:27:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T14:27:22Z,60.702,-171.684,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T15:05:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T15:05:41Z,60.719,-171.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-28T16:00:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-28T16:00:46Z,60.763,-171.793,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T06:59:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T06:59:09Z,61.111,-171.672,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T12:28:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T12:28:13Z,61.136,-171.621,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T14:51:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T14:51:39Z,61.139,-171.65,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-29T17:51:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-29T17:51:14Z,61.154,-171.722,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-30T00:47:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T00:47:08Z,61.156,-171.929,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-30T03:43:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T03:43:02Z,61.181,-171.906,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-30T14:42:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-30T14:42:52Z,61.118,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T00:38:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T00:38:33Z,61.106,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T01:45:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T01:45:02Z,61.099,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T02:25:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T02:25:55Z,61.071,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T03:11:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T03:11:39Z,61.078,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T04:57:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T04:57:50Z,61.064,-172.164,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T05:00:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T05:00:50Z,61.068,-172.135,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2011-12-31T06:35:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2011-12-31T06:35:20Z,61.051,-172.176,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-01T00:36:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T00:36:20Z,61.067,-172.225,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-01T07:00:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T07:00:42Z,61.022,-172.437,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-01T21:40:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-01T21:40:32Z,60.938,-172.58,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T02:22:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T02:22:11Z,60.951,-172.545,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T06:12:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T06:12:45Z,60.949,-172.543,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T07:33:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T07:33:15Z,60.95,-172.556,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T18:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T18:27:03Z,61.007,-172.435,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-02T20:16:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-02T20:16:40Z,60.996,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-03T03:37:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T03:37:22Z,60.931,-172.407,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-03T17:18:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-03T17:18:27Z,60.886,-172.307,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T01:23:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T01:23:16Z,60.756,-172.101,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T06:30:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T06:30:25Z,60.768,-171.9,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T07:00:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T07:00:01Z,60.78,-171.917,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-05T21:02:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-05T21:02:07Z,60.749,-171.661,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T01:13:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T01:13:18Z,60.749,-171.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T02:29:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T02:29:35Z,60.77,-171.464,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T03:40:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T03:40:57Z,60.776,-171.522,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T04:10:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T04:10:02Z,60.805,-171.439,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T05:50:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T05:50:07Z,60.775,-171.494,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T06:11:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T06:11:07Z,60.766,-171.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-06T07:02:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-06T07:02:43Z,60.762,-171.48,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-07T14:59:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T14:59:56Z,61.009,-172.201,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-07T15:53:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-07T15:53:35Z,61.001,-172.133,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T03:24:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T03:24:06Z,60.912,-172.0,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T18:46:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T18:46:33Z,60.878,-172.031,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T19:36:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T19:36:36Z,60.886,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-08T20:55:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-08T20:55:23Z,60.887,-172.022,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-09T20:14:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T20:14:54Z,60.9,-172.085,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-09T23:54:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-09T23:54:32Z,60.86,-172.018,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T00:38:41Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T00:38:41Z,60.865,-172.032,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T01:37:56Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T01:37:56Z,60.852,-172.039,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T02:36:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T02:36:53Z,60.848,-172.038,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T21:59:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T21:59:38Z,60.953,-171.873,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-10T23:39:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-10T23:39:01Z,60.945,-171.773,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-12T23:59:26Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-12T23:59:26Z,61.006,-171.968,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-13T01:44:14Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T01:44:14Z,61.024,-171.998,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-13T03:50:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T03:50:54Z,61.064,-172.056,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-13T22:32:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-13T22:32:37Z,61.087,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-14T02:42:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T02:42:54Z,61.054,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-14T10:12:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-14T10:12:37Z,61.084,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T00:33:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T00:33:43Z,61.232,-172.485,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T01:55:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T01:55:03Z,61.201,-172.514,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T02:14:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T02:14:51Z,61.191,-172.529,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T03:07:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T03:07:48Z,61.185,-172.534,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T04:44:33Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T04:44:33Z,61.186,-172.57,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T05:31:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T05:31:03Z,61.186,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-15T06:24:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-15T06:24:18Z,61.19,-172.576,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T01:15:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T01:15:05Z,61.253,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T02:53:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T02:53:04Z,61.255,-172.26,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T03:20:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T03:20:04Z,61.242,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T04:20:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T04:20:49Z,61.248,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T05:01:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T05:01:42Z,61.246,-172.316,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-16T06:05:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-16T06:05:04Z,61.25,-172.34,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T00:54:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T00:54:43Z,61.265,-172.294,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T01:25:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T01:25:45Z,61.261,-172.304,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T02:44:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T02:44:52Z,61.259,-172.274,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T07:25:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T07:25:06Z,61.221,-172.387,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-17T16:43:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-17T16:43:31Z,61.227,-172.482,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-18T05:59:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T05:59:48Z,60.996,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-18T06:13:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T06:13:20Z,61.012,-172.732,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-18T12:17:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-18T12:17:42Z,60.975,-172.874,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T04:22:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T04:22:42Z,60.925,-172.367,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T06:41:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T06:41:13Z,60.933,-172.313,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T13:49:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T13:49:23Z,60.96,-172.083,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T22:09:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T22:09:03Z,60.913,-171.862,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-19T23:48:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-19T23:48:06Z,60.939,-171.901,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T06:00:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T06:00:39Z,60.966,-171.841,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T11:58:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T11:58:12Z,60.982,-171.757,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T17:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T17:20:06Z,60.973,-171.768,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-20T19:41:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-20T19:41:46Z,60.957,-171.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T01:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T01:58:36Z,60.857,-171.828,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T04:00:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T04:00:49Z,60.829,-171.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T13:27:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T13:27:08Z,60.771,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T16:50:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T16:50:02Z,60.796,-171.915,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T19:31:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T19:31:28Z,60.78,-171.742,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T22:20:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T22:20:17Z,60.729,-171.746,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-21T23:25:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-21T23:25:16Z,60.717,-171.779,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-22T01:03:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T01:03:16Z,60.703,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-22T17:13:17Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T17:13:17Z,60.705,-172.019,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-22T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-22T20:47:29Z,60.704,-171.886,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T00:53:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T00:53:18Z,60.666,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T02:22:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T02:22:34Z,60.637,-171.965,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T04:01:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T04:01:29Z,60.624,-171.912,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T06:37:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T06:37:11Z,60.627,-171.794,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-23T20:47:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-23T20:47:29Z,60.495,-171.994,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T00:50:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T00:50:28Z,60.504,-171.905,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T01:22:43Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T01:22:43Z,60.509,-171.865,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T15:14:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T15:14:07Z,60.627,-171.946,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T18:57:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T18:57:40Z,60.649,-171.963,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T20:34:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T20:34:32Z,60.675,-171.934,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-24T22:09:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-24T22:09:59Z,60.682,-171.926,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-25T01:12:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T01:12:57Z,60.656,-171.976,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-25T04:58:52Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-25T04:58:52Z,60.683,-172.041,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-26T00:56:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-26T00:56:18Z,60.842,-171.786,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T02:24:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T02:24:24Z,60.894,-171.593,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T03:25:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T03:25:03Z,60.898,-171.546,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T04:31:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T04:31:48Z,60.883,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T05:01:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T05:01:48Z,60.884,-171.633,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T06:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T06:16:03Z,60.887,-171.636,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-27T07:18:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-27T07:18:18Z,60.891,-171.638,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-28T16:09:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T16:09:15Z,60.941,-171.815,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-28T23:49:34Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-28T23:49:34Z,61.026,-171.852,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T00:22:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T00:22:49Z,61.033,-171.86,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T01:33:22Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T01:33:22Z,61.047,-171.844,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T15:57:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T15:57:01Z,61.083,-172.037,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T19:44:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T19:44:01Z,61.067,-172.076,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T21:15:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T21:15:39Z,61.064,-172.074,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-29T23:46:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-29T23:46:36Z,61.055,-172.068,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-01-30T02:44:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-01-30T02:44:23Z,61.056,-172.059,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-05T08:17:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T08:17:50Z,60.796,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-05T12:30:12Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-05T12:30:12Z,60.777,-173.023,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-06T07:34:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T07:34:57Z,60.769,-173.014,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-06T08:51:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T08:51:16Z,60.771,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-06T09:15:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-06T09:15:16Z,60.774,-173.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T02:51:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T02:51:53Z,60.827,-172.609,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T05:45:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T05:45:57Z,60.81,-172.608,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T07:17:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T07:17:06Z,60.776,-172.612,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T08:30:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T08:30:21Z,60.78,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T09:04:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T09:04:32Z,60.791,-172.635,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-07T10:17:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-07T10:17:02Z,60.771,-172.618,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T02:26:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T02:26:57Z,60.76,-172.524,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T05:25:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T05:25:31Z,60.76,-172.573,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T14:12:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T14:12:54Z,60.759,-172.731,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T20:47:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T20:47:54Z,60.78,-172.734,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-08T21:00:32Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-08T21:00:32Z,60.796,-172.687,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T01:26:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T01:26:42Z,60.808,-172.728,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T03:52:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T03:52:28Z,60.819,-172.75,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T05:12:49Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T05:12:49Z,60.815,-172.733,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T06:38:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T06:38:46Z,60.818,-172.753,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T07:55:44Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T07:55:44Z,60.81,-172.749,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T13:26:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T13:26:27Z,60.818,-172.77,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-09T15:06:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-09T15:06:35Z,60.831,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T01:35:01Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T01:35:01Z,60.821,-172.719,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T03:18:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T03:18:09Z,60.825,-172.764,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T05:04:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T05:04:05Z,60.85,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T06:16:05Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T06:16:05Z,60.843,-172.782,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T07:28:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T07:28:50Z,60.846,-172.783,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T08:27:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T08:27:20Z,60.847,-172.784,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-10T09:09:20Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-10T09:09:20Z,60.846,-172.778,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T00:54:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T00:54:06Z,60.886,-172.754,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T01:33:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T01:33:51Z,60.885,-172.756,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T02:13:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T02:13:36Z,60.896,-172.747,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T03:00:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T03:00:06Z,60.883,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T04:10:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T04:10:36Z,60.886,-172.818,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-11T05:31:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-11T05:31:36Z,60.893,-172.835,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T06:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T06:23:27Z,60.996,-172.49,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T08:26:18Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T08:26:18Z,61.008,-172.453,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T20:08:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T20:08:15Z,60.973,-172.282,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-12T22:56:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-12T22:56:36Z,60.974,-172.243,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T04:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T04:27:03Z,60.949,-172.264,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T05:00:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T05:00:54Z,60.953,-172.273,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T06:05:08Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T06:05:08Z,60.963,-172.287,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T07:56:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T07:56:53Z,60.985,-172.27,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-13T08:05:38Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-13T08:05:38Z,60.988,-172.266,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T00:23:27Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T00:23:27Z,61.036,-172.095,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T01:46:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T01:46:39Z,61.036,-172.03,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T02:13:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T02:13:39Z,61.029,-172.033,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T03:01:39Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T03:01:39Z,61.027,-172.049,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T04:15:09Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T04:15:09Z,61.03,-172.064,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T05:53:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T05:53:24Z,61.039,-172.105,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-14T06:05:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-14T06:05:24Z,61.042,-172.108,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-15T00:12:23Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T00:12:23Z,61.082,-172.087,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-15T07:36:58Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T07:36:58Z,61.018,-172.172,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 3 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-15T22:51:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-15T22:51:07Z,60.951,-172.371,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T00:28:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T00:28:35Z,60.952,-172.353,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T04:14:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T04:14:53Z,60.912,-172.431,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T07:16:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T07:16:03Z,60.907,-172.538,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-16T16:17:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-16T16:17:45Z,60.868,-172.592,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T01:27:03Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T01:27:03Z,60.998,-172.237,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T06:28:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T06:28:55Z,60.998,-172.236,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T15:19:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T15:19:37Z,61.029,-172.364,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T20:10:57Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T20:10:57Z,61.009,-172.351,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-18T21:49:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-18T21:49:48Z,60.992,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T01:17:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T01:17:19Z,60.971,-172.378,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T03:10:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T03:10:46Z,60.981,-172.406,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T04:55:31Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T04:55:31Z,60.987,-172.386,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T07:40:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T07:40:59Z,60.97,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T11:39:37Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T11:39:37Z,60.945,-172.341,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-19T15:07:16Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-19T15:07:16Z,60.966,-172.368,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T01:08:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T01:08:21Z,60.924,-172.3,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T07:19:40Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T07:19:40Z,60.967,-172.338,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T09:00:02Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T09:00:02Z,60.951,-172.392,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T11:33:21Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T11:33:21Z,60.968,-172.362,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-20T16:58:36Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-20T16:58:36Z,61.034,-172.37,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-21T01:22:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T01:22:30Z,61.029,-172.332,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-21T02:20:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-21T02:20:06Z,61.034,-172.343,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-22T00:38:04Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-22T00:38:04Z,60.968,-172.177,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T02:11:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T02:11:45Z,60.933,-172.363,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T03:05:45Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T03:05:45Z,60.915,-172.246,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T04:09:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T04:09:30Z,60.921,-172.276,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 4 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T05:49:15Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T05:49:15Z,60.929,-172.278,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-23T06:06:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-23T06:06:30Z,60.927,-172.283,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-24T23:08:42Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-24T23:08:42Z,60.957,-172.279,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-25T13:58:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T13:58:47Z,60.953,-172.6,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-25T20:55:47Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-25T20:55:47Z,60.933,-172.79,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-26T01:59:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T01:59:55Z,60.889,-172.924,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-26T06:42:50Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-26T06:42:50Z,60.806,-173.103,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-27T07:55:19Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T07:55:19Z,60.811,-172.729,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-27T21:34:24Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-27T21:34:24Z,60.89,-172.521,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T02:50:11Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T02:50:11Z,60.875,-172.55,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T04:07:53Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T04:07:53Z,60.879,-172.558,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T07:55:54Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T07:55:54Z,60.898,-172.519,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T08:13:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T08:13:07Z,60.889,-172.603,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-28T09:37:07Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-28T09:37:07Z,60.894,-172.565,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-29T05:21:48Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T05:21:48Z,61.012,-172.577,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-29T06:21:28Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T06:21:28Z,61.006,-172.552,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-02-29T23:07:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-02-29T23:07:10Z,60.936,-172.366,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-01T03:09:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T03:09:25Z,60.93,-172.328,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-01T04:22:46Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-01T04:22:46Z,60.92,-172.331,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-02T02:59:35Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T02:59:35Z,60.914,-172.219,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-02T06:22:25Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T06:22:25Z,60.88,-172.22,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-02T08:03:30Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-02T08:03:30Z,60.896,-172.239,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T00:25:59Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T00:25:59Z,61.033,-171.893,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T02:14:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T02:14:55Z,61.091,-171.993,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T06:23:29Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T06:23:29Z,61.074,-171.987,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-06T08:07:06Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-06T08:07:06Z,61.083,-171.921,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,250,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-07T04:37:13Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-07T04:37:13Z,61.091,-171.99,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-10T06:29:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T06:29:55Z,60.917,-172.193,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-10T22:53:10Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T22:53:10Z,60.819,-172.092,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-10T23:30:55Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-10T23:30:55Z,60.816,-172.07,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. +atn_38553_bearded-seal_trajectory_20110618-20120314,ioos_atn_38553_2012-03-11T01:09:51Z_0.0_bearded_seal,present,MachineObservation,137079_bearded_seal,2012-03-11T01:09:51Z,60.817,-172.102,EPSG:4326,Erignathus barbatus,urn:lsid:marinespecies.org:taxname:137079,satellite telemetry,Animalia,Species,sub-adult,male,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0298218,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0298218. diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/eml.xml index 4c669cd..105dfa9 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/eml.xml @@ -263,7 +263,14 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. The source dataset, containing the full set of detections, is available at NCEI: https://www.ncei.noaa.gov/archive/accession/0298218. + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by satellite telemetry tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. The source dataset, containing the full set of detections, is available at NCEI: https://www.ncei.noaa.gov/archive/accession/0298218. + + + + + + Wildlife Computers SPLASH10 tag (serial number: 10A0200) attached to bearded seal on head. + diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/meta.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/meta.xml index effcad4..0536ee4 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/meta.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/meta.xml @@ -41,4 +41,17 @@ + + + atn_38553_bearded-seal_trajectory_20110618-20120314_emof.csv + + + + + + + + + + \ No newline at end of file diff --git a/datasets/atn_satellite_telemetry/templates/eml.xml.j2 b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 index 3e6bfda..86434cf 100644 --- a/datasets/atn_satellite_telemetry/templates/eml.xml.j2 +++ b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 @@ -177,7 +177,14 @@ Recognize the limitations of data in OBIS. See https://manual.obis.org/policy.ht - This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by electronic tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. The source dataset, containing the full set of detections, is available at NCEI: https://www.ncei.noaa.gov/archive/accession/{{ ncei_accession_number }}. + This resource was created by the Animal Telemetry Network as a summarized representation of animal presence determined by satellite telemetry tagging efforts. Darwin Core (DwC) records were extracted from the ATN database and filtered and summarized according to international agreed-upon standards. The source dataset, containing the full set of detections, is available at NCEI: https://www.ncei.noaa.gov/archive/accession/{{ ncei_accession_number }}. + + + + + + {{ manufacturer }} {{ make_model }} tag (serial number: {{ serial_number }}) attached to {{ animal_common_name }}{%if attachment %} on {{ attachment }}.{% else %}.{% endif %} + From 018e2a336e771a10074e1f895c0f672f89978110 Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Fri, 22 Aug 2025 13:13:10 -0400 Subject: [PATCH 12/14] including related data links from NCEI ISO --- .../convert_ATNnc2DwC.ipynb | 1586 +++++++++-- ...tted-seal_trajectory_20180418-20180526.zip | Bin 7262 -> 10521 bytes ...eal_trajectory_20180418-20180526_event.csv | 4 +- ...rajectory_20180418-20180526_occurrence.csv | 10 +- .../eml.xml | 23 +- .../meta.xml | 1 + ...bbon-seal_trajectory_20140426-20140426.zip | Bin 7162 -> 10374 bytes ...eal_trajectory_20140426-20140426_event.csv | 4 +- ...rajectory_20140426-20140426_occurrence.csv | 8 +- .../eml.xml | 23 +- .../meta.xml | 1 + ...rded-seal_trajectory_20110618-20120314.zip | Bin 35100 -> 39006 bytes ...eal_trajectory_20110618-20120314_event.csv | 4 +- ...rajectory_20110618-20120314_occurrence.csv | 2436 ++++++++--------- .../eml.xml | 23 +- .../meta.xml | 1 + .../templates/eml.xml.j2 | 23 +- 17 files changed, 2684 insertions(+), 1463 deletions(-) diff --git a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb index 08033fa..9d6de4a 100644 --- a/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb +++ b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb @@ -13,7 +13,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 5, "metadata": { "id": "0JvPXasXc432" }, @@ -52,24 +52,12 @@ }, { "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "# Append gmi namespace to namespaces dictionary.\n", - "namespaces.update({\"gmi\": \"http://www.isotc211.org/2005/gmi\"})\n", - "namespaces.update({\"gml\": \"http://www.opengis.net/gml/3.2\"})\n", - "del namespaces[None]" - ] - }, - { - "cell_type": "code", - "execution_count": 3, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "@stamina.retry(on=urllib.error.HTTPError, attempts=3)\n", - "def openurl(url):\n", + "def _openurl_with_retry(url):\n", " \"\"\"Thin wrapper around urlopen adding stamina.\"\"\"\n", " return urlopen(url)" ] @@ -78,14 +66,342 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Create a dataframe to hold the mapping of accession numbers to file names" + "# Create a dataframe to hold the mapping of accession numbers to file names\n", + "\n", + "TODO: add parsing to get related data citations in. example record https://www.ncei.noaa.gov/data/oceans/ncei/archive/metadata/approved/granule/0282699.xml\n", + "\n", + "```xml\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "Lowe, C., Sosa-Nishizaki, O., Jorgensen, S., García-Rodríguez, E., Lyons, K., Oñate-Gonzalez, E., Weng, K., Winkler, C., Farrugia, T., McKinzie, M., White, C., O' Sullivan, J., & Van Houtan, K. (2022). A biologging database of juvenile white sharks from the Northeast Pacific, 2001-2020 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k6c3\n", + "\n", + "\n", + "\n", + "\n", + "2022\n", + "\n", + "\n", + "publication\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "International DOI Foundation (IDF)\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "https://doi.org/10.24431/rw1k6c3\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "https://doi.org/10.24431/rw1k6c3\n", + "\n", + "\n", + "HTTPS\n", + "\n", + "\n", + "https://doi.org/10.24431/rw1k6c3\n", + "\n", + "\n", + "related dataset\n", + "\n", + "\n", + "information\n", + "\n", + "\n", + "```" ] }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 18, "metadata": {}, "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fetching NCEI accession mapping table...\n", + "0282699 = https://doi.org/10.24431/rw1k6c3 Lowe, C., Sosa-Nishizaki, O., Jorgensen, S., García-Rodríguez, E., Lyons, K., Oñate-Gonzalez, E., Weng, K., Winkler, C., Farrugia, T., McKinzie, M., White, C., O' Sullivan, J., & Van Houtan, K. (2022). A biologging database of juvenile white sharks from the Northeast Pacific, 2001-2020 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k6c3\n", + "0282700 = https://doi.org/10.24431/rw1k6c3 Lowe, C., Sosa-Nishizaki, O., Jorgensen, S., García-Rodríguez, E., Lyons, K., Oñate-Gonzalez, E., Weng, K., Winkler, C., Farrugia, T., McKinzie, M., White, C., O' Sullivan, J., & Van Houtan, K. (2022). A biologging database of juvenile white sharks from the Northeast Pacific, 2001-2020 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k6c3\n", + "0298218 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298254 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298256 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298427 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298428 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298429 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298430 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298431 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298432 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298433 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298434 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298435 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298436 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0298437 = https://doi.org/10.24431/rw1k31x Boveng, P., London, J., Cameron, M., Jansen, J., & Whiting, A. (2019). A Dataset from Bio-Loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA (2009-2012) (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k31x\n", + "0305172 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305173 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305175 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305177 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305178 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305180 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305182 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305185 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305186 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305187 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305188 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305189 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305190 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305191 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305192 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305193 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305194 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305195 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305196 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305197 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305198 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305199 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305200 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305201 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305202 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305203 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305204 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305205 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305206 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305207 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305208 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305209 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305210 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305211 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305212 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305213 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305214 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305215 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305216 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305217 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305218 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305219 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305220 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305221 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305222 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305223 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305224 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305225 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305226 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305227 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305228 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305229 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305230 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305231 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305232 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305233 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305234 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305235 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305236 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305237 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305238 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305239 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305240 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305241 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305242 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305243 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305244 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305246 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305247 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305248 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305249 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305250 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305251 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305252 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305253 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305254 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305255 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305256 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305257 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305258 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305259 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305260 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305261 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305262 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305263 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305264 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305265 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305266 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305267 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305268 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305269 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305270 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305271 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305272 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305273 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305274 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305275 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305276 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305277 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305278 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305279 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305280 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305281 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305282 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305283 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305284 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305285 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305286 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305287 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305288 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305289 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305290 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305291 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305292 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305293 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305294 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305295 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305296 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305297 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305298 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305299 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305300 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305301 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305302 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305303 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305304 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305305 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305306 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305307 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305308 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305309 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305310 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305311 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305312 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305313 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305314 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305315 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305316 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305317 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305318 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305319 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305320 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305321 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305322 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305323 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305324 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305325 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305326 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305327 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305328 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305329 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305330 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305331 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305332 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305333 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305334 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305335 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305336 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305337 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305338 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305339 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305340 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305341 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305342 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305343 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305344 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305345 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305346 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305347 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305348 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305349 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305350 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305351 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305352 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305353 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305354 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305355 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305356 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305357 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305358 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305359 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305360 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305361 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305362 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305363 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305364 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305365 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305366 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305367 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305368 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305369 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305370 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305371 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305372 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305373 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305374 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305375 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305376 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305377 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305378 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305379 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305380 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305381 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305383 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305385 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305387 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305388 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305390 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305391 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305392 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305394 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305395 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305397 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305398 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305399 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305400 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305401 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305402 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305403 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305404 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305405 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305406 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305407 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305408 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305409 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305410 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305411 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305412 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305413 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305414 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305415 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305416 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305417 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305418 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305419 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305420 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305421 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305422 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305761 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305762 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305763 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305764 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305767 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "0305768 = https://doi.org/10.24431/rw1k8er London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er\n", + "Successfully built mapping for 289 files.\n" + ] + }, { "data": { "text/html": [ @@ -111,7 +427,8 @@ " accession\n", " start_date\n", " end_date\n", - " download_url\n", + " related_data_url\n", + " related_data_citation\n", " arc\n", " xml\n", " file_name\n", @@ -125,7 +442,8 @@ " 0282699\n", " 2009-09-23\n", " 2009-11-23\n", - " https://www.ncei.noaa.gov/archive/accession/02...\n", + " https://doi.org/10.24431/rw1k6c3\n", + " Lowe, C., Sosa-Nishizaki, O., Jorgensen, S., G...\n", " arc0217\n", " https://www.ncei.noaa.gov/data/oceans/archive/...\n", " atn_45866_great-white-shark_trajectory_2009092...\n", @@ -137,7 +455,8 @@ " 0282700\n", " 2009-09-23\n", " 2009-12-13\n", - " https://www.ncei.noaa.gov/archive/accession/02...\n", + " https://doi.org/10.24431/rw1k6c3\n", + " Lowe, C., Sosa-Nishizaki, O., Jorgensen, S., G...\n", " arc0217\n", " https://www.ncei.noaa.gov/data/oceans/archive/...\n", " atn_45869_great-white-shark_trajectory_2009092...\n", @@ -149,7 +468,8 @@ " 0298218\n", " 2011-06-18\n", " 2012-03-14\n", - " https://www.ncei.noaa.gov/archive/accession/02...\n", + " https://doi.org/10.24431/rw1k31x\n", + " Boveng, P., London, J., Cameron, M., Jansen, J...\n", " arc0230\n", " https://www.ncei.noaa.gov/data/oceans/archive/...\n", " atn_38553_bearded-seal_trajectory_20110618-201...\n", @@ -161,7 +481,8 @@ " 0298254\n", " 2011-06-16\n", " 2012-04-01\n", - " https://www.ncei.noaa.gov/archive/accession/02...\n", + " https://doi.org/10.24431/rw1k31x\n", + " Boveng, P., London, J., Cameron, M., Jansen, J...\n", " arc0230\n", " https://www.ncei.noaa.gov/data/oceans/archive/...\n", " atn_39489_bearded-seal_trajectory_20110616-201...\n", @@ -173,7 +494,8 @@ " 0298256\n", " 2010-02-13\n", " 2012-05-18\n", - " https://www.ncei.noaa.gov/archive/accession/02...\n", + " https://doi.org/10.24431/rw1k31x\n", + " Boveng, P., London, J., Cameron, M., Jansen, J...\n", " arc0230\n", " https://www.ncei.noaa.gov/data/oceans/archive/...\n", " atn_64459_bearded-seal_trajectory_20090626-201...\n", @@ -190,6 +512,7 @@ " ...\n", " ...\n", " ...\n", + " ...\n", " \n", " \n", " 284\n", @@ -197,7 +520,8 @@ " 0305762\n", " 2018-04-20\n", " 2018-06-07\n", - " https://www.ncei.noaa.gov/archive/accession/03...\n", + " https://doi.org/10.24431/rw1k8er\n", + " London, J., Koslovsky, S., Boveng, P., Ziel, H...\n", " arc0235\n", " https://www.ncei.noaa.gov/data/oceans/archive/...\n", " atn_174785_spotted-seal_trajectory_20180420-20...\n", @@ -209,7 +533,8 @@ " 0305763\n", " 2018-04-14\n", " 2018-05-13\n", - " https://www.ncei.noaa.gov/archive/accession/03...\n", + " https://doi.org/10.24431/rw1k8er\n", + " London, J., Koslovsky, S., Boveng, P., Ziel, H...\n", " arc0235\n", " https://www.ncei.noaa.gov/data/oceans/archive/...\n", " atn_174786_spotted-seal_trajectory_20180414-20...\n", @@ -221,7 +546,8 @@ " 0305764\n", " 2018-04-09\n", " 2018-09-19\n", - " https://www.ncei.noaa.gov/archive/accession/03...\n", + " https://doi.org/10.24431/rw1k8er\n", + " London, J., Koslovsky, S., Boveng, P., Ziel, H...\n", " arc0235\n", " https://www.ncei.noaa.gov/data/oceans/archive/...\n", " atn_174787_spotted-seal_trajectory_20180410-20...\n", @@ -233,7 +559,8 @@ " 0305767\n", " 2018-04-18\n", " 2018-05-28\n", - " https://www.ncei.noaa.gov/archive/accession/03...\n", + " https://doi.org/10.24431/rw1k8er\n", + " London, J., Koslovsky, S., Boveng, P., Ziel, H...\n", " arc0235\n", " https://www.ncei.noaa.gov/data/oceans/archive/...\n", " atn_174790_spotted-seal_trajectory_20180418-20...\n", @@ -245,7 +572,8 @@ " 0305768\n", " 2018-04-20\n", " 2018-05-25\n", - " https://www.ncei.noaa.gov/archive/accession/03...\n", + " https://doi.org/10.24431/rw1k8er\n", + " London, J., Koslovsky, S., Boveng, P., Ziel, H...\n", " arc0235\n", " https://www.ncei.noaa.gov/data/oceans/archive/...\n", " atn_174805_spotted-seal_trajectory_20180420-20...\n", @@ -253,7 +581,7 @@ " \n", " \n", "\n", - "

289 rows × 9 columns

\n", + "

289 rows × 10 columns

\n", "" ], "text/plain": [ @@ -270,18 +598,31 @@ "287 Spotted seal (Phoca largha) location data from... 0305767 2018-04-18 \n", "288 Spotted seal (Phoca largha) location data from... 0305768 2018-04-20 \n", "\n", - " end_date download_url arc \\\n", - "0 2009-11-23 https://www.ncei.noaa.gov/archive/accession/02... arc0217 \n", - "1 2009-12-13 https://www.ncei.noaa.gov/archive/accession/02... arc0217 \n", - "2 2012-03-14 https://www.ncei.noaa.gov/archive/accession/02... arc0230 \n", - "3 2012-04-01 https://www.ncei.noaa.gov/archive/accession/02... arc0230 \n", - "4 2012-05-18 https://www.ncei.noaa.gov/archive/accession/02... arc0230 \n", - ".. ... ... ... \n", - "284 2018-06-07 https://www.ncei.noaa.gov/archive/accession/03... arc0235 \n", - "285 2018-05-13 https://www.ncei.noaa.gov/archive/accession/03... arc0235 \n", - "286 2018-09-19 https://www.ncei.noaa.gov/archive/accession/03... arc0235 \n", - "287 2018-05-28 https://www.ncei.noaa.gov/archive/accession/03... arc0235 \n", - "288 2018-05-25 https://www.ncei.noaa.gov/archive/accession/03... arc0235 \n", + " end_date related_data_url \\\n", + "0 2009-11-23 https://doi.org/10.24431/rw1k6c3 \n", + "1 2009-12-13 https://doi.org/10.24431/rw1k6c3 \n", + "2 2012-03-14 https://doi.org/10.24431/rw1k31x \n", + "3 2012-04-01 https://doi.org/10.24431/rw1k31x \n", + "4 2012-05-18 https://doi.org/10.24431/rw1k31x \n", + ".. ... ... \n", + "284 2018-06-07 https://doi.org/10.24431/rw1k8er \n", + "285 2018-05-13 https://doi.org/10.24431/rw1k8er \n", + "286 2018-09-19 https://doi.org/10.24431/rw1k8er \n", + "287 2018-05-28 https://doi.org/10.24431/rw1k8er \n", + "288 2018-05-25 https://doi.org/10.24431/rw1k8er \n", + "\n", + " related_data_citation arc \\\n", + "0 Lowe, C., Sosa-Nishizaki, O., Jorgensen, S., G... arc0217 \n", + "1 Lowe, C., Sosa-Nishizaki, O., Jorgensen, S., G... arc0217 \n", + "2 Boveng, P., London, J., Cameron, M., Jansen, J... arc0230 \n", + "3 Boveng, P., London, J., Cameron, M., Jansen, J... arc0230 \n", + "4 Boveng, P., London, J., Cameron, M., Jansen, J... arc0230 \n", + ".. ... ... \n", + "284 London, J., Koslovsky, S., Boveng, P., Ziel, H... arc0235 \n", + "285 London, J., Koslovsky, S., Boveng, P., Ziel, H... arc0235 \n", + "286 London, J., Koslovsky, S., Boveng, P., Ziel, H... arc0235 \n", + "287 London, J., Koslovsky, S., Boveng, P., Ziel, H... arc0235 \n", + "288 London, J., Koslovsky, S., Boveng, P., Ziel, H... arc0235 \n", "\n", " xml \\\n", "0 https://www.ncei.noaa.gov/data/oceans/archive/... \n", @@ -309,85 +650,108 @@ "287 atn_174790_spotted-seal_trajectory_20180418-20... 174790 \n", "288 atn_174805_spotted-seal_trajectory_20180420-20... 174805 \n", "\n", - "[289 rows x 9 columns]" + "[289 rows x 10 columns]" ] }, - "execution_count": 4, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "url = 'https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.nodc:IOOS-ATN-STP;view=xml;responseType=text/xml'\n", - "iso = openurl(url)\n", - "iso_tree = ET.parse(iso)\n", - "root = iso_tree.getroot()\n", - "\n", - "accessions = []\n", - "# Collect individual accession IDs\n", - "for MD_keywords in root.iterfind(\".//gmd:descriptiveKeywords/gmd:MD_Keywords\", namespaces):\n", - " for thesaurus_name in MD_keywords.iterfind(\".//gmd:thesaurusName/gmd:CI_Citation/gmd:title/gco:CharacterString\",namespaces,):\n", - " if thesaurus_name.text == \"NCEI ACCESSION NUMBER\":\n", - " for acce_no in MD_keywords.iterfind(\".//gmd:keyword/gmx:Anchor\", namespaces):\n", - " accessions.append(acce_no.text)\n", - "\n", - "df_map = pd.DataFrame()\n", - "\n", - "for acc in accessions:\n", - " ## There are a couple endpoints we can use\n", - " #\n", - " # https://www.ncei.noaa.gov/data/oceans/ncei/archive/metadata/approved/granule/{acc}.xml\n", - " # https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.nodc:{acc};view=xml\n", - " # http://www.ncei.noaa.gov/metadata/granule/geoportal/rest/metadata/item/IOOS-ATN-STP.{acc}/xml\n", - " #\n", - " url = f'https://www.ncei.noaa.gov/data/oceans/ncei/archive/metadata/approved/granule/{acc}.xml'\n", - " iso = openurl(url)\n", + "import html\n", + "\n", + "def get_ncei_accession_mapping():\n", + " \"\"\"\n", + " Scrapes NCEI for ATN accession numbers and associated file metadata.\n", + "\n", + " Returns:\n", + " pd.DataFrame: A DataFrame mapping accession numbers to file names,\n", + " download URLs, and other metadata.\n", + " \"\"\"\n", + " print(\"Fetching NCEI accession mapping table...\")\n", + " # Configure namespaces for XML parsing\n", + " namespaces.update({\"gmi\": \"http://www.isotc211.org/2005/gmi\"})\n", + " namespaces.update({\"gml\": \"http://www.opengis.net/gml/3.2\"})\n", + " if None in namespaces:\n", + " del namespaces[None]\n", + "\n", + " url = 'https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.nodc:IOOS-ATN-STP;view=xml;responseType=text/xml'\n", + " iso = _openurl_with_retry(url)\n", " iso_tree = ET.parse(iso)\n", " root = iso_tree.getroot()\n", "\n", - " # Collect terms of interest.\n", - " title = pd.DataFrame({\n", - " 'title': [root.find(\".//gmd:title/gco:CharacterString\", namespaces).text],\n", - " 'accession': acc,\n", - " 'start_date': [root.find('.//gml:TimePeriod/gml:beginPosition',namespaces).text],\n", - " 'end_date': [root.find('.//gml:TimePeriod/gml:endPosition',namespaces).text],\n", - " })\n", - " \n", - " for CI_OnlineResource in root.iterfind('.//gmd:onlineResource/gmd:CI_OnlineResource',namespaces):\n", - "\n", - " if CI_OnlineResource.find('.//gmd:CI_OnLineFunctionCode',namespaces).text == 'download':\n", - "\n", - " data_url = CI_OnlineResource.find('.//gmd:URL',namespaces).text+\"/data/0-data/\"\n", - "\n", - " title['download_url'] = data_url\n", + " accessions = []\n", + " # Collect individual accession IDs\n", + " for MD_keywords in root.iterfind(\".//gmd:descriptiveKeywords/gmd:MD_Keywords\", namespaces):\n", + " for thesaurus_name in MD_keywords.iterfind(\".//gmd:thesaurusName/gmd:CI_Citation/gmd:title/gco:CharacterString\",namespaces,):\n", + " if thesaurus_name.text == \"NCEI ACCESSION NUMBER\":\n", + " for acce_no in MD_keywords.iterfind(\".//gmd:keyword/gmx:Anchor\", namespaces):\n", + " accessions.append(acce_no.text)\n", "\n", - " for CI_OnlineResource in root.iterfind('.//gmd:onLine/gmd:CI_OnlineResource',namespaces):\n", + " df_map = pd.DataFrame()\n", "\n", - " if CI_OnlineResource.find('.//gmd:protocol/gco:CharacterString',namespaces).text == 'FTP':\n", - "\n", - " string = CI_OnlineResource.find('.//gmd:linkage/gmd:URL',namespaces).text\n", - " arc = re.search(\"(arc[0-9]{1,4})\",string)\n", - "\n", - " if arc:\n", - " title['arc'] = [arc.group()]\n", - " xml_manifest = f'https://www.ncei.noaa.gov/data/oceans/archive/{arc.group()}/{acc}/{acc}.1.1.xml'\n", - "\n", - " title['xml'] = [xml_manifest]\n", - "\n", - " iso_mani = openurl(xml_manifest)\n", - " iso_mani_tree = ET.parse(iso_mani)\n", - " root_mani = iso_mani_tree.getroot()\n", + " for acc in accessions:\n", + " try:\n", + " ## There are a couple endpoints we can use\n", + " #\n", + " # https://www.ncei.noaa.gov/data/oceans/ncei/archive/metadata/approved/granule/{acc}.xml\n", + " # https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.nodc:{acc};view=xml\n", + " # http://www.ncei.noaa.gov/metadata/granule/geoportal/rest/metadata/item/IOOS-ATN-STP.{acc}/xml\n", + " #\n", + " url = f'https://www.ncei.noaa.gov/data/oceans/ncei/archive/metadata/approved/granule/{acc}.xml'\n", + " iso = _openurl_with_retry(url)\n", + " iso_tree = ET.parse(iso)\n", + " root = iso_tree.getroot()\n", + "\n", + " # Collect terms of interest.\n", + " title = pd.DataFrame({\n", + " 'title': [root.find(\".//gmd:title/gco:CharacterString\", namespaces).text],\n", + " 'accession': acc,\n", + " 'start_date': [root.find('.//gml:TimePeriod/gml:beginPosition',namespaces).text],\n", + " 'end_date': [root.find('.//gml:TimePeriod/gml:endPosition',namespaces).text],\n", + " })\n", + "\n", + " # Collect DataOne References\n", + " for MD_AggregateInformation in root.iterfind('.//gmd:MD_AggregateInformation', namespaces):\n", + " if MD_AggregateInformation.find('.//gmd:description/gco:CharacterString', namespaces).text == 'related dataset':\n", + " related_data = MD_AggregateInformation.find('.//gmd:linkage/gmd:URL', namespaces).text\n", + " related_data_citation = MD_AggregateInformation.find('./gmd:aggregateDataSetName/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces).text\n", + " print(f\"{acc} = {related_data} {related_data_citation}\")\n", + " title['related_data_url'] = related_data\n", + " title['related_data_citation'] = html.escape(related_data_citation)\n", + "\n", + " for CI_OnlineResource in root.iterfind('.//gmd:onLine/gmd:CI_OnlineResource',namespaces):\n", + " if CI_OnlineResource.find('.//gmd:protocol/gco:CharacterString',namespaces).text == 'FTP':\n", + " string = CI_OnlineResource.find('.//gmd:linkage/gmd:URL',namespaces).text\n", + " arc = re.search(\"(arc[0-9]{1,4})\",string)\n", + " if arc:\n", + " title['arc'] = [arc.group()]\n", + " xml_manifest = f'https://www.ncei.noaa.gov/data/oceans/archive/{arc.group()}/{acc}/{acc}.1.1.xml'\n", + " title['xml'] = [xml_manifest]\n", + "\n", + " iso_mani = _openurl_with_retry(xml_manifest)\n", + " iso_mani_tree = ET.parse(iso_mani)\n", + " root_mani = iso_mani_tree.getroot()\n", + "\n", + " for path in root_mani.iterfind('.//path'):\n", + " fpath = path.text\n", + " fname = re.search(\"(data/0-data/atn_.*)\", fpath)\n", + " if fname:\n", + " title['file_name'] = fname.group().split(\"/\")[-1]\n", + "\n", + "\n", + "\n", + " df_map = pd.concat([df_map, title], ignore_index=True)\n", "\n", - " for path in root_mani.iterfind('.//path'):\n", - " fpath = path.text\n", - " fname = re.search(\"(data/0-data/atn_.*)\",fpath)\n", - " \n", - " if fname:\n", - " title['file_name'] = fname.group().split(\"/\")[-1]\n", + " except Exception as e:\n", + " print(f\"Could not process accession {acc}: {e}\")\n", "\n", - " df_map = pd.concat([df_map, title],ignore_index=True)\n", + " df_map['ptt_id'] = df_map['title'].str.extract(r'.*ptt ([0-9]{3,7}) .*')\n", + " print(f\"Successfully built mapping for {len(df_map)} files.\")\n", + " return df_map\n", "\n", - "df_map['ptt_id'] = df_map['title'].str.extract(r'.*ptt ([0-9]{3,7}) .*')\n", + "df_map = get_ncei_accession_mapping()\n", "\n", "df_map" ] @@ -405,7 +769,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 21, "metadata": { "id": "puONkrPNceM5" }, @@ -844,21 +1208,27 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 31, "metadata": { "id": "c9G3a6N2bMh2" }, "outputs": [], "source": [ - "def create_dwc_occurrence(ds: xr.Dataset, output_csv: str, df_map: pd.DataFrame):\n", + "## Create Darwin Core Occurrence file\n", "\n", + "def create_dwc_occurrence(ds: xr.Dataset, output_csv: str, df_map: pd.DataFrame):\n", + " \"\"\"Create a Darwin Core Occurrence CSV from an xarray Dataset.\"\"\"\n", + " source_file = os.path.basename(ds.encoding.get('source'))\n", " # bail if we can't find the file in the mapping table.\n", - " if ds.encoding.get('source').split(\"\\\\\")[-1] not in df_map['file_name'].values:\n", - " raise KeyError(f\"File {ds.encoding.get('source').split('\\\\')[-1]} not found in NCEI Accession mapping table.\")\n", + " if source_file not in df_map['file_name'].values:\n", + " raise KeyError(f\"File {source_file} not found in NCEI Accession mapping table.\")\n", "\n", - " filename = ds.encoding.get('source').split(\"\\\\\")[-1].split(\".\")[0] # \"ioos_atn_{ds.ptt_id}_{start_date}_{end_date}\"\"\n", + " filename = os.path.splitext(source_file)[0] # \"ioos_atn_{ds.ptt_id}_{start_date}_{end_date}\"\"\n", " \n", - " acce_no = df_map.loc[df_map['file_name'] == ds.encoding.get('source').split(\"\\\\\")[-1], 'accession'].values[0]\n", + " file_map_entry = df_map[df_map['file_name'] == source_file].iloc[0]\n", + "\n", + " acce_no = file_map_entry['accession']\n", + " related_data_url = file_map_entry['related_data_url']\n", "\n", " dwc_df = pd.DataFrame()\n", " dwc_df['occurrenceID'] = \"ioos_atn_\"+ds.ptt_id+\"_\"+ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')+\"_\"+ds['z'].astype(str)+\"_\"+ds.animal_common_name.replace(\" \",\"_\")\n", @@ -877,7 +1247,7 @@ " dwc_df['taxonRank'] = ds['animal'].attrs['rank']\n", " dwc_df['lifeStage'] = ds['animal_life_stage'].values.tolist()\n", " dwc_df['sex'] = ds['animal_sex'].values.tolist()\n", - " dwc_df['associatedReferences'] = f'https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/{acce_no}'\n", + " dwc_df['associatedReferences'] = f'https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/{acce_no}; {related_data_url}'\n", " dwc_df['minimumDepthInMeters'] = ds['z'].values.tolist()\n", " dwc_df['maximumDepthInMeters'] = ds['z'].values.tolist()\n", " dwc_df['bibliographicCitation'] = ds.citation\n", @@ -888,27 +1258,16 @@ " dwc_df.loc[dwc_df['basisOfRecord'] == 'FastGPS','basisOfRecord'] = 'MachineObservation'\n", "\n", " # filter to respectable locations\n", + " # drop A, B, and Z records\n", " dwc_df['location_class'] = ds['location_class'].to_series()\n", - "\n", - " dwc_df.drop(dwc_df.loc[\n", - " (dwc_df['location_class'] == 'A') |\n", - " (dwc_df['location_class'] == 'B') |\n", - " (dwc_df['location_class'] == 'Z')].index, inplace=True)\n", - "\n", - " # test using xarray\n", - " # ds['time'].where((ds['location_class'] != 'A') &\n", - " # (ds['location_class'] != 'B') &\n", - " # (ds['location_class'] != 'Z'),drop=True).values\n", + " valid_locations = ~dwc_df['location_class'].isin(['A', 'B', 'Z'])\n", + " dwc_df = dwc_df[valid_locations].copy()\n", "\n", " print(f\" Extracted {len(dwc_df)} occurrences with valid locations.\")\n", "\n", - " # assign value to codes\n", - " dwc_df.loc[dwc_df['location_class'] == 'nan','location_class'] = 0\n", - " dwc_df.loc[dwc_df['location_class'] == 'G','location_class'] = 200\n", - " dwc_df.loc[dwc_df['location_class'] == '3','location_class'] = 250\n", - " dwc_df.loc[dwc_df['location_class'] == '2','location_class'] = 500\n", - " dwc_df.loc[dwc_df['location_class'] == '1','location_class'] = 1500\n", - " dwc_df.loc[dwc_df['location_class'] == '0','location_class'] = 10000\n", + " # Map location class to coordinate uncertainty\n", + " uncertainty_map = {'nan': 0, 'G': 200, '3': 250, '2': 500, '1': 1500, '0': 10000}\n", + " dwc_df['coordinateUncertaintyInMeters'] = dwc_df['location_class'].map(uncertainty_map)\n", "\n", " # --- Define Occurrences: First detection per location per hour ---\n", " dwc_df['event_hour'] = pd.to_datetime(dwc_df['eventDate']).dt.strftime('%Y-%m-%dT%H')\n", @@ -917,18 +1276,12 @@ " dwc_df['dataGeneralizations'] = f'first of ' + duplicate_counts.astype(str) + ' records for this hour.'\n", " dwc_df.loc[dwc_df['dataGeneralizations']=='first of 1 records for this hour.','dataGeneralizations'] = ''\n", " dwc_df = dwc_df.drop_duplicates(subset=['event_hour'], keep='first').copy()\n", + "\n", " # --- Add Occurrence Remarks ---\n", " dwc_df['occurrenceRemarks'] = f'This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/{acce_no}.'\n", "\n", " print(f\" Extracted {len(dwc_df)} occurrences to first row in hour.\")\n", "\n", - " # --- Rename a and drop few columns --\n", - " dwc_df.rename(columns={'location_class': 'coordinateUncertaintyInMeters',\n", - " },\n", - " inplace=True)\n", - "\n", - " dwc_df.drop(columns=['event_hour'], inplace=True)\n", - "\n", " # only pick specific columns to save\n", " cols = ['eventID', 'occurrenceID', 'occurrenceStatus', 'basisOfRecord',\n", " 'organismID', 'eventDate', 'decimalLatitude',\n", @@ -945,10 +1298,17 @@ " dwc_df.to_csv(output_csv, columns=cols, index=False)\n", " print(f\" Saved data to '{output_csv}'\")\n", "\n", - " return dwc_df, cols\n", - "\n", - "\n", - "def create_dwc_event(dwc_df: pd.DataFrame, output_csv: str):\n", + " return dwc_df, cols" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "## Create the DwC Event file from the occurrences.\n", + "def create_dwc_event(ds: xr.Dataset, dwc_df: pd.DataFrame, output_csv: str):\n", "\n", " # create parent event that is a summary of dwc_df\n", " event_df = pd.DataFrame()\n", @@ -956,39 +1316,32 @@ " event_df['eventDate'] = dwc_df['eventDate'].min() + '/' + dwc_df['eventDate'].max()\n", "\n", " ## Convex hull summary of the points\n", - " event_df['footprintWKT'] = shapely.convex_hull(LineString(list(zip(dwc_df['decimalLongitude'], dwc_df['decimalLatitude']))))\n", + " points = list(zip(dwc_df['decimalLongitude'], dwc_df['decimalLatitude']))\n", + " event_df['footprintWKT'] = shapely.convex_hull(LineString(points))\n", "\n", " event_df['minimumDepthInMeters'] = dwc_df['minimumDepthInMeters'].min()\n", " event_df['maximumDepthInMeters'] = dwc_df['maximumDepthInMeters'].max()\n", " event_df['eventType'] = 'deployment'\n", + " event_df['countryCode'] = 'US'\n", + " event_df['samplingProtocol'] = 'satellite telemetry'\n", + " event_df['dynamicProperties'] = [str(ds.attrs)]\n", "\n", - " if event_df.empty:\n", - " print(\"No HumanObservations found in the dataset.\")\n", - " return pd.DataFrame() # Return an empty DataFrame if no observations are found\n", - " else: \n", - " print(f\" found {len(event_df)} HumanObservations.\")\n", - " \n", - " # # initialize Nominatim API - not trusted enough yet\n", - " # # see https://nominatim.org/release-docs/develop/api/Reverse/\n", - " # from geopy.geocoders import Nominatim\n", - " # geolocator = Nominatim(user_agent=\"my_geopy_app\")\n", - " # lat = event_df['decimalLatitude'][0].astype(str)\n", - " # lon = event_df['decimalLongitude'][0].astype(str)\n", - " # location = geolocator.reverse(lat+\",\"+lon)\n", - " # event_df['countryCode'] = location.raw['address'].get('country_code').upper()\n", - " event_df['countryCode'] = 'US'\n", - " \n", - " event_df['samplingProtocol'] = 'satellite telemetry'\n", - "\n", - " event_df.to_csv(output_csv.replace(\"occurrence\",\"event\"), index=False)\n", - " print(f\" Created {len(event_df)} events.\")\n", - " print(f\" Saved data to {output_csv.replace('occurrence','event')}\")\n", - "\n", - " return event_df\n", - "\n", + " event_df.to_csv(output_csv.replace(\"occurrence\",\"event\"), index=False)\n", + " print(f\" Created {len(event_df)} events.\")\n", + " print(f\" Saved data to {output_csv.replace('occurrence','event')}\")\n", "\n", + " return event_df" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [], + "source": [ + "## Create the DwC Extended Measurement or Fact (eMoF) file.\n", "def create_dwc_emof(ds: xr.Dataset, dwc_df: pd.DataFrame, output_csv: str):\n", - " # --- Processing for emof ---\n", + " # --- Creates the DwC Extended Measurement or Fact (eMoF) file. ---\n", " vars = list(ds.keys())\n", " animal_vars = [x for x in vars if re.match(r'animal_(?!life_stage\\b|sex\\b).*',x)]\n", " new_rows = pd.DataFrame()\n", @@ -1015,43 +1368,47 @@ " new_rows = pd.concat([new_rows,\n", " row])\n", " \n", - " df_transmitter_serial = pd.DataFrame()\n", - " df_transmitter_serial['measurementValue'] = [ds['instrument_tag'].attrs['serial_number']]\n", - " df_transmitter_serial['measurementType'] = ['tag serial number']\n", - " df_transmitter_serial['measurementTypeID'] = ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000189/']\n", - " df_transmitter_serial['measurementMethod'] = ['']\n", - " df_transmitter_serial['measurementUnit'] = ['']\n", + " df_transmitter_serial = pd.DataFrame({\n", + " 'measurementValue': [ds['instrument_tag'].attrs['serial_number']],\n", + " 'measurementType': ['tag serial number'],\n", + " 'measurementTypeID': ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000189/'],\n", + " 'measurementMethod': [''],\n", + " 'measurementUnit': [''],\n", + " })\n", " new_rows = pd.concat([new_rows,df_transmitter_serial], ignore_index=True)\n", "\n", - " tag_manu = pd.DataFrame()\n", - " tag_manu['measurementValue'] = [ds['instrument_tag'].attrs['manufacturer']]\n", - " tag_manu['measurementType'] = ['tag manufacturer']\n", - " tag_manu['measurementTypeID'] = ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000183/']\n", - " tag_manu['measurementMethod'] = ['']\n", - " tag_manu['measurementUnit'] = ['']\n", + " tag_manu = pd.DataFrame({\n", + " 'measurementValue': [ds['instrument_tag'].attrs['manufacturer']],\n", + " 'measurementType': ['tag manufacturer'],\n", + " 'measurementTypeID': ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000183/'],\n", + " 'measurementMethod': [''],\n", + " 'measurementUnit': [''],\n", + " })\n", " new_rows = pd.concat([new_rows,tag_manu], ignore_index=True)\n", "\n", - " tag_makemodel = pd.DataFrame()\n", - " tag_makemodel['measurementValue'] = [ds['instrument_tag'].attrs['make_model']]\n", - " tag_makemodel['measurementType'] = ['tag make and model']\n", - " tag_makemodel['measurementTypeID'] = ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000185/']\n", - " tag_makemodel['measurementMethod'] = ['']\n", - " tag_makemodel['measurementUnit'] = ['']\n", + " tag_makemodel = pd.DataFrame({\n", + " 'measurementValue': [ds['instrument_tag'].attrs['make_model']],\n", + " 'measurementType': ['tag make and model'],\n", + " 'measurementTypeID': ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000185/'],\n", + " 'measurementMethod': [''],\n", + " 'measurementUnit': [''],\n", + " })\n", " new_rows = pd.concat([new_rows,tag_makemodel], ignore_index=True)\n", "\n", " # sometimes we don't have attachment information\n", " if 'attachment' in ds.attrs:\n", - " attachment_location = pd.DataFrame()\n", - " attachment_location['measurementValue'] = [ds.attrs['attachment']]\n", - " attachment_location['measurementType'] = ['tag attachment location']\n", - " attachment_location['measurementTypeID'] = ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000395/']\n", - " attachment_location['measurementMethod'] = ['']\n", - " attachment_location['measurementUnit'] = ['']\n", + " attachment_location = pd.DataFrame({\n", + " 'measurementValue': [ds.attrs['attachment']],\n", + " 'measurementType': ['tag attachment location'],\n", + " 'measurementTypeID': ['http://vocab.nerc.ac.uk/collection/MVB/current/MVB000395/'],\n", + " 'measurementMethod': [''],\n", + " 'measurementUnit': [''],\n", + " })\n", " new_rows = pd.concat([new_rows,attachment_location], ignore_index=True)\n", "\n", " #--- Add eventID and occurrenceID. Assign the first occurrenceID and eventID from the dwc_df.\n", - " new_rows['eventID'] = dwc_df['eventID'][0]\n", - " new_rows['occurrenceID'] = dwc_df['occurrenceID'][0]\n", + " new_rows['eventID'] = dwc_df['eventID'].iloc[0]\n", + " new_rows['occurrenceID'] = dwc_df['occurrenceID'].iloc[0]\n", "\n", " #--- Select column order because this matters for meta.xml\n", " columns = ['eventID', 'occurrenceID', 'measurementValue', 'measurementType',\n", @@ -1075,7 +1432,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 34, "metadata": {}, "outputs": [], "source": [ @@ -1103,8 +1460,11 @@ " print(f\" EML metadata has been written to '{eml_full_path}'.\")\n", " return eml_full_path\n", "\n", + "\n", "def create_eml(ds: xr.Dataset, df_map: pd.DataFrame):\n", " eml_metadata = ds.attrs\n", + " source_file = os.path.basename(ds.encoding.get('source'))\n", + " file_map_entry = df_map[df_map['file_name'] == source_file].iloc[0]\n", "\n", " contributors = dict()\n", " for attr in [x for x in ds.attrs if re.match(r'contributor_(?!role_vocabulary\\b).*',x)]:\n", @@ -1124,9 +1484,12 @@ " 'data_manager_phone': '',\n", " 'data_manager_email': 'mmckinzie@mbari.org',\n", " 'contributors': contributors_list,\n", - " 'ncei_accession_number': df_map.loc[df_map['file_name'] == ds.encoding.get('source').split(\"\\\\\")[-1], 'accession'].values[0],\n", - " 'ncei_title': df_map.loc[df_map['file_name'] == ds.encoding.get('source').split(\"\\\\\")[-1], 'title'].values[0],\n", - " 'filename': ds.encoding.get('source').split(\"\\\\\")[-1].split(\".\")[0],\n", + " 'ncei_accession_number': file_map_entry['accession'],#df_map.loc[df_map['file_name'] == ds.encoding.get('source').split(\"\\\\\")[-1], 'accession'].values[0],\n", + " 'related_data_url': file_map_entry['related_data_url'],\n", + " 'related_data_citation': file_map_entry['related_data_citation'],\n", + " 'ncei_title': file_map_entry['title'],#df_map.loc[df_map['file_name'] == ds.encoding.get('source').split(\"\\\\\")[-1], 'title'].values[0],\n", + " 'filename': os.path.splitext(source_file)[0],\n", + " 'nc_globals': str(ds.attrs),\n", " }\n", "\n", " eml_metadata.update(other_meta)\n", @@ -1142,7 +1505,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 35, "metadata": {}, "outputs": [], "source": [ @@ -1173,14 +1536,10 @@ " \n", " meta_xml_vars['cols_list'] = dwc_df.columns.tolist()\n", " meta_xml_vars['occurrence_filename'] = output_csv\n", - "\n", - " if not emof_df.empty:\n", - " meta_xml_vars ['emof_cols_list'] = emof_df.columns.tolist()\n", - " meta_xml_vars['emof_filename'] = output_csv.replace(\"occurrence\",\"emof\")\n", - "\n", - " if not event_df.empty:\n", - " meta_xml_vars['event_cols_list'] = event_df.columns.tolist()\n", - " meta_xml_vars['event_filename'] = output_csv.replace(\"occurrence\",\"event\")\n", + " meta_xml_vars ['emof_cols_list'] = emof_df.columns.tolist()\n", + " meta_xml_vars['emof_filename'] = output_csv.replace(\"occurrence\",\"emof\")\n", + " meta_xml_vars['event_cols_list'] = event_df.columns.tolist()\n", + " meta_xml_vars['event_filename'] = output_csv.replace(\"occurrence\",\"event\")\n", "\n", " # grab the template file for making meta.xml\n", " meta_template_file = codecs.open('templates/meta.xml.j2', 'r', 'UTF-8').read()\n", @@ -1198,7 +1557,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 36, "metadata": {}, "outputs": [], "source": [ @@ -1223,7 +1582,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 37, "metadata": { "id": "aD62GgzSS0zu" }, @@ -1284,7 +1643,7 @@ " create_eml(ds, df_map)\n", "\n", " # --- Event and eMoF (as needed) ---\n", - " event_df = create_dwc_event(dwc_df, output_csv)\n", + " event_df = create_dwc_event(ds, dwc_df, output_csv)\n", " emof_df = create_dwc_emof(ds, dwc_df, output_csv)\n", "\n", " # --- Create meta.xml file ---\n", @@ -1315,7 +1674,785 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
deploy_idtimezlatlonpttinstrumenttypelocation_classerror_radius...animal_sexanimal_weightanimal_lengthanimal_length_2animalinstrument_taginstrument_locationtaxon_nametaxon_lsidcomment
obs
0137494.02014-04-26 00:51:110.060.6317-178.0899137494.0UTArgos02688.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
1137494.02014-04-26 00:51:110.060.6320-178.0900137494.0UTArgos0NaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
2137494.02014-04-26 01:17:260.060.6467-178.0526137494.0UTArgosB10190.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
3137494.02014-04-26 01:17:260.060.6470-178.0530137494.0UTArgosBNaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
4137494.02014-04-26 19:21:240.061.0606-177.8437137494.0UTArgos02443.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
5137494.02014-04-26 19:21:240.061.0610-177.8440137494.0UTArgos0NaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
6137494.02014-04-26 19:29:260.061.0651-177.8744137494.0UTArgos2271.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
7137494.02014-04-26 19:29:260.061.0650-177.8740137494.0UTArgos2NaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
8137494.02014-04-26 19:29:260.061.0651-177.8744137494.0UTArgos2271.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
9137494.02014-04-26 20:00:510.061.0677-177.9080137494.0UTArgosB1171.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
10137494.02014-04-26 20:00:510.061.0680-177.9080137494.0UTArgosBNaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
11137494.02014-04-26 20:08:100.061.0726-177.8653137494.0UTArgosA723.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
12137494.02014-04-26 20:08:100.061.0730-177.8650137494.0UTArgosANaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
13137494.02014-04-27 00:45:410.061.0830-177.8248137494.0UTArgosB2640.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
14137494.02014-04-27 00:45:410.061.0830-177.8250137494.0UTArgosBNaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
15137494.02014-04-27 14:31:070.061.1814-177.4710137494.0UTArgos11057.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
16137494.02014-04-27 14:31:070.061.1810-177.4710137494.0UTArgos1NaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
17137494.02014-04-27 15:30:500.061.1712-177.4029137494.0UTArgos2314.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
18137494.02014-04-27 15:30:500.061.1710-177.4030137494.0UTArgos2NaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
19137494.02014-04-27 15:46:250.061.1702-177.3984137494.0UTArgosA950.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
20137494.02014-04-27 15:46:250.061.1700-177.3980137494.0UTArgosANaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
21137494.02014-04-27 15:49:060.061.1713-177.3973137494.0UTArgosB267.0...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
22137494.02014-04-27 15:49:060.061.1710-177.3970137494.0UTArgosBNaN...female67.0131.0NaNHF2014_1011Wildlife Computers SPOTWildlife Computers SPOTHistriophoca fasciataurn:lsid:marinespecies.org:taxname:255017
\n", + "

23 rows × 36 columns

\n", + "
" + ], + "text/plain": [ + " deploy_id time z lat lon ptt \\\n", + "obs \n", + "0 137494.0 2014-04-26 00:51:11 0.0 60.6317 -178.0899 137494.0 \n", + "1 137494.0 2014-04-26 00:51:11 0.0 60.6320 -178.0900 137494.0 \n", + "2 137494.0 2014-04-26 01:17:26 0.0 60.6467 -178.0526 137494.0 \n", + "3 137494.0 2014-04-26 01:17:26 0.0 60.6470 -178.0530 137494.0 \n", + "4 137494.0 2014-04-26 19:21:24 0.0 61.0606 -177.8437 137494.0 \n", + "5 137494.0 2014-04-26 19:21:24 0.0 61.0610 -177.8440 137494.0 \n", + "6 137494.0 2014-04-26 19:29:26 0.0 61.0651 -177.8744 137494.0 \n", + "7 137494.0 2014-04-26 19:29:26 0.0 61.0650 -177.8740 137494.0 \n", + "8 137494.0 2014-04-26 19:29:26 0.0 61.0651 -177.8744 137494.0 \n", + "9 137494.0 2014-04-26 20:00:51 0.0 61.0677 -177.9080 137494.0 \n", + "10 137494.0 2014-04-26 20:00:51 0.0 61.0680 -177.9080 137494.0 \n", + "11 137494.0 2014-04-26 20:08:10 0.0 61.0726 -177.8653 137494.0 \n", + "12 137494.0 2014-04-26 20:08:10 0.0 61.0730 -177.8650 137494.0 \n", + "13 137494.0 2014-04-27 00:45:41 0.0 61.0830 -177.8248 137494.0 \n", + "14 137494.0 2014-04-27 00:45:41 0.0 61.0830 -177.8250 137494.0 \n", + "15 137494.0 2014-04-27 14:31:07 0.0 61.1814 -177.4710 137494.0 \n", + "16 137494.0 2014-04-27 14:31:07 0.0 61.1810 -177.4710 137494.0 \n", + "17 137494.0 2014-04-27 15:30:50 0.0 61.1712 -177.4029 137494.0 \n", + "18 137494.0 2014-04-27 15:30:50 0.0 61.1710 -177.4030 137494.0 \n", + "19 137494.0 2014-04-27 15:46:25 0.0 61.1702 -177.3984 137494.0 \n", + "20 137494.0 2014-04-27 15:46:25 0.0 61.1700 -177.3980 137494.0 \n", + "21 137494.0 2014-04-27 15:49:06 0.0 61.1713 -177.3973 137494.0 \n", + "22 137494.0 2014-04-27 15:49:06 0.0 61.1710 -177.3970 137494.0 \n", + "\n", + " instrument type location_class error_radius ... animal_sex \\\n", + "obs ... \n", + "0 UT Argos 0 2688.0 ... female \n", + "1 UT Argos 0 NaN ... female \n", + "2 UT Argos B 10190.0 ... female \n", + "3 UT Argos B NaN ... female \n", + "4 UT Argos 0 2443.0 ... female \n", + "5 UT Argos 0 NaN ... female \n", + "6 UT Argos 2 271.0 ... female \n", + "7 UT Argos 2 NaN ... female \n", + "8 UT Argos 2 271.0 ... female \n", + "9 UT Argos B 1171.0 ... female \n", + "10 UT Argos B NaN ... female \n", + "11 UT Argos A 723.0 ... female \n", + "12 UT Argos A NaN ... female \n", + "13 UT Argos B 2640.0 ... female \n", + "14 UT Argos B NaN ... female \n", + "15 UT Argos 1 1057.0 ... female \n", + "16 UT Argos 1 NaN ... female \n", + "17 UT Argos 2 314.0 ... female \n", + "18 UT Argos 2 NaN ... female \n", + "19 UT Argos A 950.0 ... female \n", + "20 UT Argos A NaN ... female \n", + "21 UT Argos B 267.0 ... female \n", + "22 UT Argos B NaN ... female \n", + "\n", + " animal_weight animal_length animal_length_2 animal \\\n", + "obs \n", + "0 67.0 131.0 NaN HF2014_1011 \n", + "1 67.0 131.0 NaN HF2014_1011 \n", + "2 67.0 131.0 NaN HF2014_1011 \n", + "3 67.0 131.0 NaN HF2014_1011 \n", + "4 67.0 131.0 NaN HF2014_1011 \n", + "5 67.0 131.0 NaN HF2014_1011 \n", + "6 67.0 131.0 NaN HF2014_1011 \n", + "7 67.0 131.0 NaN HF2014_1011 \n", + "8 67.0 131.0 NaN HF2014_1011 \n", + "9 67.0 131.0 NaN HF2014_1011 \n", + "10 67.0 131.0 NaN HF2014_1011 \n", + "11 67.0 131.0 NaN HF2014_1011 \n", + "12 67.0 131.0 NaN HF2014_1011 \n", + "13 67.0 131.0 NaN HF2014_1011 \n", + "14 67.0 131.0 NaN HF2014_1011 \n", + "15 67.0 131.0 NaN HF2014_1011 \n", + "16 67.0 131.0 NaN HF2014_1011 \n", + "17 67.0 131.0 NaN HF2014_1011 \n", + "18 67.0 131.0 NaN HF2014_1011 \n", + "19 67.0 131.0 NaN HF2014_1011 \n", + "20 67.0 131.0 NaN HF2014_1011 \n", + "21 67.0 131.0 NaN HF2014_1011 \n", + "22 67.0 131.0 NaN HF2014_1011 \n", + "\n", + " instrument_tag instrument_location taxon_name \\\n", + "obs \n", + "0 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "1 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "2 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "3 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "4 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "5 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "6 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "7 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "8 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "9 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "10 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "11 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "12 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "13 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "14 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "15 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "16 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "17 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "18 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "19 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "20 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "21 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "22 Wildlife Computers SPOT Wildlife Computers SPOT Histriophoca fasciata \n", + "\n", + " taxon_lsid comment \n", + "obs \n", + "0 urn:lsid:marinespecies.org:taxname:255017 \n", + "1 urn:lsid:marinespecies.org:taxname:255017 \n", + "2 urn:lsid:marinespecies.org:taxname:255017 \n", + "3 urn:lsid:marinespecies.org:taxname:255017 \n", + "4 urn:lsid:marinespecies.org:taxname:255017 \n", + "5 urn:lsid:marinespecies.org:taxname:255017 \n", + "6 urn:lsid:marinespecies.org:taxname:255017 \n", + "7 urn:lsid:marinespecies.org:taxname:255017 \n", + "8 urn:lsid:marinespecies.org:taxname:255017 \n", + "9 urn:lsid:marinespecies.org:taxname:255017 \n", + "10 urn:lsid:marinespecies.org:taxname:255017 \n", + "11 urn:lsid:marinespecies.org:taxname:255017 \n", + "12 urn:lsid:marinespecies.org:taxname:255017 \n", + "13 urn:lsid:marinespecies.org:taxname:255017 \n", + "14 urn:lsid:marinespecies.org:taxname:255017 \n", + "15 urn:lsid:marinespecies.org:taxname:255017 \n", + "16 urn:lsid:marinespecies.org:taxname:255017 \n", + "17 urn:lsid:marinespecies.org:taxname:255017 \n", + "18 urn:lsid:marinespecies.org:taxname:255017 \n", + "19 urn:lsid:marinespecies.org:taxname:255017 \n", + "20 urn:lsid:marinespecies.org:taxname:255017 \n", + "21 urn:lsid:marinespecies.org:taxname:255017 \n", + "22 urn:lsid:marinespecies.org:taxname:255017 \n", + "\n", + "[23 rows x 36 columns]" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import xarray as xr\n", + "\n", + "ds = xr.open_dataset('data\\\\src\\\\atn_137494_ribbon-seal_trajectory_20140426-20140426.nc')\n", + "\n", + "ds.to_dataframe()" + ] + }, + { + "cell_type": "code", + "execution_count": 39, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -1337,7 +2474,6 @@ " Extracted 5 occurrences to first row in hour.\n", " Saved data to 'data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv'\n", " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\eml.xml'.\n", - " found 1 HumanObservations.\n", " Created 1 events.\n", " Saved data to data\\dwc\\atn_137491_spotted-seal_trajectory_20180418-20180526\\atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv\n", " Created 6 emofs.\n", @@ -1351,7 +2487,6 @@ " Extracted 4 occurrences to first row in hour.\n", " Saved data to 'data\\dwc\\atn_137494_ribbon-seal_trajectory_20140426-20140426\\atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv'\n", " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_137494_ribbon-seal_trajectory_20140426-20140426\\eml.xml'.\n", - " found 1 HumanObservations.\n", " Created 1 events.\n", " Saved data to data\\dwc\\atn_137494_ribbon-seal_trajectory_20140426-20140426\\atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv\n", " Created 5 emofs.\n", @@ -1365,7 +2500,6 @@ " Extracted 1218 occurrences to first row in hour.\n", " Saved data to 'data\\dwc\\atn_38553_bearded-seal_trajectory_20110618-20120314\\atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv'\n", " EML metadata has been written to 'c:\\Users\\Mathew.Biddle\\Documents\\GitProjects\\bio_data_guide\\datasets\\atn_satellite_telemetry\\data\\dwc\\atn_38553_bearded-seal_trajectory_20110618-20120314\\eml.xml'.\n", - " found 1 HumanObservations.\n", " Created 1 events.\n", " Saved data to data\\dwc\\atn_38553_bearded-seal_trajectory_20110618-20120314\\atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv\n", " Created 4 emofs.\n", @@ -1722,7 +2856,7 @@ " eml_file = \"/\".join(filepath.split(\"/\")[:-1])+\"/eml.xml\"\n", " refresh_ipt_project_metadata(projname, eml_file, ipt_url, ipt_session)\n", " else:\n", - " ans = input(f\"Project {projname} already exists. Do you want to create it? (y/n): \")\n", + " ans = input(f\"Project {projname} does not already exist. Do you want to create it? (y/n): \")\n", " if ans.lower() in ['y', 'yes']:\n", " print(f\"Creating new IPT project: {projname}\")\n", " create_new_ipt_project(projname, filepath, ipt_url, ipt_session)\n", @@ -1759,6 +2893,30 @@ " # publish_ipt_project(projname, ipt_url, ipt_session, publishing_notes)" ] }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "name: IOOS\n", + "channels:\n", + " - conda-forge\n", + "dependencies:\n", + " - python-dotenv\n", + " - requests-toolbelt\n", + "\n", + "prefix: \"C:\\\\Users\\\\Mathew.Biddle\\\\programs\\\\miniforge3\\\\envs\\\\IOOS\"\n" + ] + } + ], + "source": [ + "!mamba env export --from-history" + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip index e239eb4cea9813203e924388803e2426c83a866b..bfbfd41740bd18280886d746c6fa34743efe38f4 100644 GIT binary patch delta 9518 zcmbW7WlSC1viET)MT)y@+zOQ9vT=8}jZ+*76t@ki~V|0gO6 z0|SI~6Z1io;ZVS5#I`Z3+}AI#ZX`nrzQhJqneKaWw z_S+5BUHVq5^N&Hi)fMSuJV$C{56=%o4W~K+0>*Kx5U*LuQY!jSrSCkOn z41P$V?X^5||C>XVmfje$&T(Kp9&Bt#`;9Z@SI~Pes0T8!#xY)Gl0FgP<5_Mlet45M_S0L9oM=PJOII9LOtnGWBbd=Ly~nG zZ`?JQ#ff%KJxTDHmD-+0PK_SH^^XS(ZwJ~d;k=^KZ%iyOYD%-|z^Mv{6g-DBQIt>e z^f0wO)-|VLUlXgfw-pj2ilN+=4X;gewX85Unn!4#`o|HgI4Yu<2nC)}V?c}8vSFZc z*P|efF(^U7AX}1kZrG|t;^$L5+7b1skVy{sCcKSKJ0FU$xJ7O*zwG~0l;e6*IgTnR z{wK5?x<%%2l~3Uj&}ClG*T)M%DhO1KWYaEm#dYpMn#w{xq_NaDW#0zPx*38vn0Wt zv1x|^r-bqcSjzp+pJJtl{3DCRj^!J6A6_K-{R5HsAFMc$NsX&3G&u!@T>j>LL*>>YN6B)`Z=X8p3~dmhXP-LBlq(QiwB%1?o-Sa z_dRQ_>66HFspjmhM){5Vjb`C{X`Cq1ZLd`d#i0vtY>3{>Mfdi3v5EKeg@TC-|2gb! z13!7x#l=cJ@Uj2haWTC?;4$)3;QLvD5Q!oX>k)Q%kJxxH3=sBBzOY5 z!fJ;RRz%zTocVT@k>R7Bv$gjEGy1b@(!iVltV_IMSOw5veP{Naoa7PVOT$N6XDV{~^Okc^L+Pmqw{}fr>M%$j~KshQS0DWXGq7oo`vdD#~Qgev#I4q*APB z-voUjdPKwqp=iWse4!jg)Fu+Srn>57K`~E7JhuN(<0m)0Op|-t%byBG30pxg!KA?^ zrlw%T%3$Fg?v4@sI|F{;pw$mHW5(MJsOnCv6tQwP97SJ*r3;#trHE#vb&MC(LnPtV zqGZ=7rd!n5%A*N3DT^kvLg$VT52_@}+su@OzM;@K5AzHS@Dm|#Nva~O5;90q;XOW~ zh&mq?G7Lb`d9+n=_SbW^-pj5}coj6aLeT!e9KF|fr+mgMjhKB5#d?;ly2 z1n2C>765ZHp_CRSGd5L=f#+Mi!@A(nzzY3-9fW8=MQ;3f07Fx6!^fObTnkTPX?RLP zb$xcMNV=CX3UG@&LCH+IvlS%Y3jrxtU3-eWY?w`g$+*eOa=tug?1M}>lPc{R;-2Iz z{P5tnupseMm(74Xgvi~}B7UkGBBKa}tf_me-8Cl;(UqOftP21RQg_6 zaEX|mlmx3#VVPz*#z`Q^@CT#X3I`uPrAC@Zd_VlzPmZlxz#h^-z|gl1Kc7STS)Q7Y z{!ymBL|{jz<9obCAXmPhFI<8jA57z&R^>kFPq8ZZAUvD$RtHYB6WmL{M#K@P>lhyu z+&l)rD0!@lG=A6I46m6?ZFi(s$==WTu)i0C@CW%?uRE@!;-UtIt2TNKz^@6xUloN# z9Z)iaq&2p(h)jg658KXa^>H|re2{flEn10p1n&rXHyPT_D>fR{>&B|&9iy?SRFtu} z33hbU+9oMnBKC`^bV-LOxnk%gqiBwk|2Y`i%JCI2uGxPcuW=xK8LU%+@lL(IRx4y`?qPeL2bXrN;s-07=aY5#-FS&cJ@FjnVEG@nZMT7BuoEvtEx*3fh zn||7Ljm$GEeN#45%59yn{{d7E7}F5w1-t2VSU065ejC%(Ahr0+^vfbjlej{YCsp-( zYE~OT$1h%$eRoU|Xd~%R&3NWc=3lo5_}$+Foo2eO#`v8wB5eD6*f{fY0wksl?HErJ zI)!lt>9PXu5_N1ac!4ZJ{;5I8p>g}Pp5v7!7kghM%c06r$#M>plxX6@zVW_jTj1gd zKvUV)7-0l{I#Y-nYu+#b(>EBZ6O~sOYcAPl?PZuE&<)Qq<{K1Px;mNDcE;~BY%-kx z0V=j%$9i+%m{Sr)shA_^9-)H#aKI##ap4tmvy4Bl<_jEtY#+zlD|}+-e!sk1Mw;_W zQ0wSdz5t%(sHz2rXRvW|2l-7dBz`ZT z;=Dm!I8+`ZA~>1zz2WcYX}|#6;cU~XRLAyw8keE~rdA-R*h2HvqVgUsLD!n_&SIcR z^Rw3d=B$C(wDVgE(%WGiIDkg`w!3;i3tvP#rCU<1Oa5kWo9_Bs6hn8=EXO!c#!Tv7 zXs@@I*K9H(YKKZWQ{r%W?kT3WhNKZ}HN!PKLSf!(q^9ikq@QGEY}~GHa^faX^_FK@&?q6=Kxe;YguqD(o^VKuBF$>vF zLhxZ{%^t(EUv7snrE7`5?fVml?kQZb4ML#|htabv6KW)UQ{D^~3d0~q@7tF2R!_8l z6H(JCHs<^xmPR{LNW@kRPyJo9$sus~vmXjUPKVVf@;iLrrE*v2@ZZ0F)$i@%?>Ige z6iy-4T{gR%JIGGwV3y4T(?z3!d(Y_6xMvmtdg`;y3l#Z)W5GVQQK?Qq_#-nR>(E-Y zFhMxb^&2vw`u-WRXTAk*k(?n;NNGngD;lXC)amF$Sy8Tjlfl>W5y;cDM#5R808zV( zJ)29<3Aaqo5AxitBO}hpF@Rz)GfD5lW>Ka>6|hV#RHOm|jteVMae0kWqGyZCV(RIv z6?SH2FjLUVJ!3mS`&vxlOg6`?s z!t>+*?BM_H=FQOggpcnXsy>i&G--Z7*=7p2b7`R8ziNdc#kAZUO;|j!(=D-6DgfEQ zetowSL9=*T-075GeAN^Yoq)^kT~WeFweM@-VAKmIVrz* zzcTvwhKBjC6-}Sy4Q`|e9tOr27vcmj4_1t!;`tPE5qC`?=S@sA_ggq%zo89sI!Skv z8_;2g3y5h;b31I(Zwdf(0T;Rv=yWCJILk?qKFlZ7j_oyXAP3sczaPgFF={X7B|WmF zctN$Jg;0vu>^);m6h++w_IKg(Oh!n77HNLlk%M$kJlGtK>MRVab?NEg^O6e zEY6(@bA3%-Wr9!jtHYy2tG8Vc*r4^I3&(J(&m$$Wuf;a181)51Qs_bJHDs2gEmK;M z^ooY`&YfbG!EBU}M_6~+cjiD=m~_G;p5A)$DVY!RQGL`iIld8}>}VKRMV$Mcf^_As zvw}g<6Bn5M+L*xdE086EY7w)Zb4!=Fj^ezC;+m!??VO1kalV(8sYgo-e9)*asZ^{% zY#{$8MG(v5Y!g?+y8ohBnn-@4=ZWBD8o1%GtiPTr{(*bF+AL3JAuF*!H>%>g)Ah+% zg>ZqEG)ORP)(IDb+y3WUQ^X@e*1jEgy8paZ0Jj*z$9i%UX6DAhfLL=_>0*k@lwzo( z2goIjS9aUcmDj zwQ&(RfS`trKqljhIC9*jMGN`VM5Gn$4M3v>th%5%zZ+>gpM*6yo8Mb!Io7?^r<8#s zTvmc|#H3#u6g^1IM~Za$afX@n*$DnoFqru)4(4#unOW6pN#CLQVA0cVYy0@#Z6(mR z&E($lj^~hPkQKUpc3MQxZc;DDmy-Jc?fT5CqnwN6-Bka7ekP?kudE z3}gh*NxL>D1v($#aOi&1;^w{a-G7mMiXQw59QRBM-AUeg;ba_Ru*EJS+mwx!=!2$S zV8?&mwCwB>+O!sqw8WYcAT~OE_seQ%>)JW>=Q%KW9lZqazxsf)pWZhgqaRrc{?6!< zTe1y3SgT3tST3`lz+eV)ZdVgue(kdK`wR2$M*e?&{5?d>O6n5~%%LO<4Dvq!=9|48 ztB1Ya8OZhrv25L2m6578Ni9IKq|Nj2jQpIko7)|M0pa@mbZ}5&#z3U--sfEL zwYw0jS!^A%C{MTih^xcdLnPkFrpdl^Bt^goA)3@)U#cIDhqFlvjPA+r(*imkYt2w8 z*C-p@^llcn9R!s*u|<|x*1q1x8ij)E9u}LslP}JuzRDsYt7oieXHxt_7xru~F+gH3-F|%|R#)C>ZO9IxKB_Uf=b>X)#!Qp^J6i zHq>h_8zYrR$c~gWg*(b>I1gzsWj+93kT}48U(%;nciJQCWlM8BU24W=%E{yf#FVc$ zV{571SXP^n&0!BL*EEz?PQg75ImuEk1>R+&5$k+???nrB2=o;f z-<4spl*c5qFcjlo4V$D#5QCX&u>o4nE$L_%~*cAF9<@d|L8v9VG)D-Iz( zS8=`-LNy@!=hqTvju?0f{+DVD+92R#RsnEVlsoE9mx$|^bopScz#(;Ci%PEbaFZQM zqrv&rCrb{va5|Tn!x>{l>UxvN)y!puQ~Ermv1Z+Tt(G#aT?|MPDdu}`;43kvcm)|a zdZD(-_XqGsXb}eQNxf0@Sqt}(yxA*3V8WyQL@!3IN4U+5co+;ZCms+t!}G>?SQ6hV zK>pMzd(cUNnvD3Z=&hGBYM$z$ZX)9w2DQzHdS;#pqu1%H?B1aTX8U?!D{k4jTqrdy zg(q)ci#dSERP&K}wzn3iNXs;1fC`m%?%Aw&c`AI)yHw$=d%MZS7VmZTvbe|~(=fx< z@^0)oBvy0_%n6=A^WlYU4YL6LPBP*|H=W|VG{w99&6PjCTo{P|-dnU0g9I9=cVHYe ztnj~}T@|2v&|+OCp%9vTpk8V*)}fHE+L*35(L2jCoKs>u*_@~lHoLWJzWm!0yxc`F zGlkp7-`;Q&l2>g*ka#11hMRKLm`A`$4#-3Wxez?YVt_w7BV=g~^j$v1Dnz#i_FO*d z;;L3ncyv3sMpWY2-hNJ9Lq1NJS;DzDr_6mqlVjkf4Em8fnY|PHj&5cA5zQ`rG@u4& z%W$;|Y4rX;EU(jFN5Pmq{wQpk{q{4fW(_9_Ls+{sJp~alL#+>HE)QzBF#ehONIp?* z3vB@+iWJ!KbeB(pUoM49J~30ZBVQD0|2|-{5at_ZnA*P5#!7Dc7Zp$V5;*Kt2in?6 z#cw|K(W6-7^@RJO<%gOw7CcE$oxN;l@9)31kyQqnLU_y06Y~g- zb2lb(NJs2UQ`?rAcJX_gHN5-#N>Bz)RXa-;%PkAU`($27K2l$&DqG68dfhlHzF@M> z+Xd7(Kd@DbP{>Py0}JI@k`@hrDR{#Qx!dOyifG2ydwIFZVUVO^3Usu$PL~}VXcy%c zRZ)Pk^@pQl2xe~R2Qt_O?Kwq~8o%n^wfl?gG{LKDSQ5C55_3ouY+@+z;~&@NAqdU+ zb4z_C$9~19UF=bGms!&0lS-);2K;T@Gmw;2*~m{S!(j|rTf9Q|*4<)}7DM9}OF#9m z*a8cYLu#GG;7{;UWf38OmrJTi9ep8}BR%X}a zcO%TjI%?)$x4n)yfi-Xjw99nY{NAb2Xp$?Kk8H{pgRzS@KQ3Ix} zQ;zU(L3`w-3BC*;A|~XShr+HRb~|!wL{A|<<#mb@hO&;S@zvxHP2rLQD(FW08&1Gl zQfb1o*QXj`1;^bP{wN95nBn}?zS;dzG##mZ_X(4^#Vw;{!||h2RML=r*o|FEQpHf_ z(&OdUBmO%6%VDjhSRq^jL#m@+T|E2~FEf@LcCG^KFtd~s$`9*{eP@SIL%$Pu?}=5P zW}CwXq~<{7u5H`&H5VXHmkaVkQ5<-Bt)*MhoxS~KEp8Vt)!`%VYS(>whl6d{BGdpm zKXhm1s|cZ~5|uu9>2p8oktH}cR`c%4T&@WtqZpYiV77Oe2Sx$*Qd=gSL*!@6l# zJ_eyxpdt(3xP9)b-uD=ym}U5CFoLv>V4Utr6CbIYFe*||EcO{%6kFzt>H%14bl+8v z=$)U`)k|%D;>Dp0V#^Hha2I}@wRbNd1)_J0bp1JsF;>!n;h5R|^0L%}!k*P&YUe%O zyNM0q4r5q67470WyyJhUWMwd!GUCe!ZV!$4V)q4+w=|aZr{vP({Bfgt`^&Fm^bz$t zh3X>p`Wa;FbU}eaL3iNmURCHNnb^`!R)wRX8<_z|4ow-5UY0nL&&tek4G+lH z4Ij)zJ71tg@Xm@!kjBv(i@(N&LX98tC&;672!mX#Y0+o8fm{fD#O^&>KrLO6@WpbH z1qj85wTq8P?4gPJD5gcV5{bpqhd_#wEq~}UX_b>vWB10481_279S6RxI3`J@?5UM> z@2*+G%BDQ6h!!5+692^~w{st)M=EA`gp5o9ZMy07>qHUB0IMOBXIGCg=LS#fQ#}e;1f|SS`vBrW$5x!vpMp*X(w&aXnrt^AQk)1Ht#Tp zh~K46P)8m^js!|EQZ8_q%=9#Di4HNk!7-p`1}7_^r)NnnTe9kgpj&w?cMb8J05Eok z6#^?=^M`#fm&sv3#-~qEp%xI1QPV9HAIY!=m&#$dL%(Ql7e*X*h4moKARA*DS9>Sg4n?iPt=hbga}9N9ZB%Rx3fE4qpTjmJ%HT%`t9r}M;fy8)F2JfEZn zk!RaUH|qwlHBG^(=rm7XZ=kjNUmY5`TNn9PSsLJg$u1lv(dKQA5>h6o%n5VXPKzxb z8u4SAGhGr|UiDl>fNPo#XVubFsgW>2EGhZ03bk>0}@R9)4YU?B(bvNOMtre_U46PzaT=w#9?rGvw&tVkFS#jQ^5sa zp|VQagef9W&0y#9js(!&@wO}k2PDhF0Xnn-GD{U|v>%0fA==$j>$^3La*GCgv%xC<#lK^7S z3$lHDYJo?8G7PcMa8d21Z$og&6@Ye_U^>!NjgHcO03Y!I6ZtdiDRH4>OMRKt+L-g` zl#N_rF(P+qCB`O9u3CU@3ESXgJF?KlPkxxDf;l?phsRr@7T9t%Uv30kOP*Rpd_+0x_3O}|Bd&iq^xGWYpBA0w7;8!F+QGRc}#2wiI>9WKzusNw!w2z8w za!umBJd^Ffa}$tUUW@1}X-*^sRk1kMQiEmNX?)Wn0=wzh&lu+8@{r_>2a-fOrO&>d z@J^^C$_v=zeYb>SLID&5hz;@Oz?N^J{Bg?nmuXkp&xrzB1{JZr9*EB&%3P8&$39Uy@6LNq zl|0`vB@Q)Kme3!#hNKCHs#aTCkA)~=uHa!vzdRq-_dmXaq?$gU2j>?L%_2aKeFdF6 ze7ZC}gaM5aB3gK`2lx0gP%ZUTT(AY=h?_f8^J%AuM$w^gQLWP=r@B(krRfr6S~~?{1!ZbmL1a^+8uKiNJHY@CukCu6xD0l?(3I@%r+) z`ckdLzhk#n%&m()bBh0BS!iA09`(r^rzNx>WbE(+{tZcr@NzPt&N{F1#Um!V8ELKV zXC##3HEOY)RIT(fX!~9D=N*t7{&G`qLApeQW$!wcMLC^9Ft=o7`kfqK>g>$zA9 z9H}Lb`z^tCG-F8FpsCL4jz&}H%vYG4eQ1HMkDV+PfIv2Ny|>`-V+nlh27pvXPn7mb z0Y~ASRP9g86$nW!7c6kF-p8a&E6O;^n{D#5tam#J@P_a6D?nbdn-<}o>c4C?uNtfF zP(9Vak7i>#C#y^r4sCW>7tBq6I>sM^&-2E0QH*j)2Uvx%4(6|L8najsWA*v(;bBF$ zUhf&hPVc#QWpA?i;L*YAD*+aVm-*)c=# zn|h8%tmz1(8qxm)RlXqATY*M?bP!XpTRS~QKjk)ySL^awR#p(x+m!ev8D>vasNqH5 zzWS%K>Gk884guW7~)3WepULo2&R!NK5$MF zKi8c7d|=fnVSL+Bm-SRT7YLDlYq^2^#)=D}R$8;>5qJAZnX1+_&2Uy-9cVG>@M&mW zAVMue#6d@!vIr-3UK$IJQLy902A$aUO}T9Xzy?Y-_d_()opHvU326rZ+{0vj$Ym~b(A z3zwpIOwB%^7`4`q(#f4wXKBE!YgZ3`q>($|+|5D^z5{ zb#c>x2hxFV^5d#++{pEzZp7Ed`%-=H$f&V7NYR8Ff3qalIzt*X6w}GYF~c1gO?-(J zJwr28mjU;UW-=WhHO?6cq&4-U!$bCx+IlgV-QUmRZZ7&PjGQjV7%>)%Smm4jwdSdmRkMV~**ev<+DB#kYJ{PWbn5 zBpJ0=hRLyKo}tUTaI;6=1v(`E{D~06{=v2Y}#3hKYDDS(y+0wg6yQlbA>@V@~25Grl} delta 6258 zcmZ9R1xy^wv%rz!?#12R-8tNy;_gu7a5!9wJH_3-Xpt5u?p~z89Yu-P2|391I`bPrE9+h6J&EJ z6Akr|MZ@!6pb*{>gsJGW!}$X-6(kLV`WxbiPb_9C!*RCnZYi*zR z41Q}{u~=oT>SoAfWfV4s6r&sSvnn@E=oXCa`*j6&3yaBZxK3p#zME}ToTs~|i-Su; z(MtocsNo+x6OGGoFtL9^Xp!^Gm6tBott7l&ZQpQJbeO#6auUq@DCr-7&PeMZP9;Y@ zAmv9k9B}jRco`eAj}Lx^hk;qdOP|D20cj;e1h7Z9S#LxW&QR#^@>AX+Yxs7a{xa*C zbOM_-)~2iy$EsK=4&;YOhjerPF+Gojm&X@W$08ecIHNliJ!s*#5(Q zU1FB{%LA$_h^1W74CaD2g)ZAJ=G^uN(S~s+MG?1j_xT zJEa6*UDh5q)&iT$D4)pbWh*zG)nCfzrZq5+sSWq~@jaRy^0O|tHn;=oE>lqs5_ENy zLXuTBiOzHQbek6V9zR0WTYWKG7b}0F}~}(9J9_y*YMiJZ9GMCAlPAMmrb2#<{O*e_abeM^^E$CLq&z#mYT>y38A(; zStG5q3#K562WMs@5#$A?PllYT>7i9hVGJ>mjw zM{oWcQd6m|v1&l>*Bo+z3jF{!l|7upID&v4Yj>bCCjHNo=A^h@W^v;*JNnkar*+$x z5I5btW=bfP@`%>Y?G^6ZBN_;vU+$M*Zt&X12|72MBfHx zh6{k@_zo?qc`-&Y-X+r?L@rSW^oEf+;njLHdIVR=Vt#zKh8n5w2G_8y{N7II(t962 zN)dV1t9&V&QigX$IZuf+A3#t3tp4)OJxOb!te@OK|966bISo|T3Pgs(;Q9U%C%f!Y z5i9Hr_?Fo_?B^7tFA2>#@%ZsGuhkbKTr+?G} zz!nsj^|q(OXIlqK8$G@$6yQBEvR)QH;cuILL;-Jt0kjfWe?XLOxfl!CWp`rCv<{2j zIUV=W(zurf3FlEWXayjcf0a68+`;oESZo*=GZ`2dq`w8w*42f>&(-DBrCrVu&I<>WCY^*a#Se$6?oHsXR4w6&~ffbYRXGScP$W+8p22uc<80goK&mJ)4?M`^1f#<^MZN@`slCiqaCg%D!m_tAbUwuB z^YN2fkUVnS(8k(bv%nGYYD}pJfPQu_xf}R!ne|KGf(QO86SWf)WyUGI$K{ zBtB1ky!K%1kL~;#$w)_(iqkq~9!dBl+6gLdxpRKGhMs(Vb;iHW^~eLT%#AIAw-Vt> z{?zq4Qf0us>+B)pi1%%+xP<>;cB(jQxD?sVdP&{+;AV32i0Fry&(BIH1!WvLrf@Rx zDRAVE60nPUa$LF}9nJ*f;+!uCg&qf46f>E4fYHl{tWimxk%eRPRK-v}GaL@fYG7Ra#1rBH`zG8eO#d zqOLnq`^wZLrgeE@54_4siZ?YD70gbtGnt}Y>OhvwsO>(~_@vG(!D>G-qK z7=cdJ=|=rpwdty}_JVi$_lR#7J66-9I9mnJ`8if<7p}Sj#10LcS(N5Bbi8aBH2^Hy9&U(`)Pe>^MsQschFB62LoRQvb!22PMjjWgHDDU zBw0D3WY_sj7Cnz$7L`>klfFPh=A2TqWXl+pC7=#T;^Qd44_L7yW+ixB}xlCO9O3R(=J$X95yp0s=0M2hvHGjY4mhH67fSVWU`~>@B zq3RjDf33p_3dl2ME&!H3Llk?Vo9iH1N%@W3!2%84rDr1S0?)#1;~VVYEqsZVxfB}% z*ZXl-IS2d)!fXaZ61c`V762n9F(Ok-5LS&~QmiD-uFd$aa7#CR8v?R?^XYF1xl6?y z{@H{Ao#0}SCFcHZ*mNe0Emo{Hf%=wcaWAi?KTvoUdN75W&2@?X<9%PohwDO#CT%9d}r#UdR3&092`?R|50nma?eS-l2lxePWB2$M*SekCvD zXfa%2X7@TpINAIXmL;=%H{G-Sz#;6i&wX-o^r&5DZeo%b9pD|D{!_*`s5RDni`lL@ z$D0cTV=6FXJ9>qSsy2eDI{(>pj@WsEEHzk^>yKQ{=qH_PRoQj2S%0~UB8MhSw?Nv# z{xSZ+;1}kHCf8FImhjeUE*3QO0!0M;$Pq!smhT)%QE)DF{KBy8)X)F{Lqu6Td5a%^ z22u;GK$tmEyq#>T3tk29}7;jwC$R3zB7-nU>YnD$eF#;h z6W2hMB94osQ@W|rFWA!nzUL)w4>T2maZFpOvTST_-@M~w0 z^M0MW^Ve)cQD8)gV>zF1|4xVCd+{L9nKJZ~Y7@q%0`oKD7qh^~`FUBQI)#y;9q?r% z{~5-a(s{@xdB-}$zNK{giO(ewX~-N|qS;f(@5g8%I{Nyrm6!hb4c`>sO$2!I<~V~S zRGRDc<6V?pl)#;vB`H~3j?!no|&A!a9{&{-x-x5YZzxs87 z&Odw32}f9vCD4&1??g;%Vl?2nK5n0HC4<%dV7*JnU2j|B2`t3Ohu3F{6G8MOt`k&W zkzQ_#x6d&*#5KdG%!R_E#Nw3aoP`nI)x>fP0+yba&U|^wpVD&^$Gl!ln(UMJ>#$n6 zyM0*%aRsaqj+fcX7WPClF086Rb&&4opIuhc0Eu9wbiVwLb0ZKNmH?wLBvcLM6r}wU4Uxc}>daRFW#Qm-=@$i9JGCi?ry> zak@z~83URP)fBcee8Siq6$flCl3FS@g*SOvO35~VHrl#J`AQ~N7jAM8Pwz>rMyikg zD5VXwWRJ|&KTw$+lfLOXA|e@iW7v?AO(w;DY;p>qO*n6=`o_eGOf{4umTin88_u_7 zn(#UnD*%s-iV!RH30((hQ_YN6 z37fiuM3>ItFjSjuGMWQ)qq%;_JS(+r;ZiYcz52i!TD7Nn26q{svG=Gr6iS=IFQVwB zAO20yWC(vy(FO)0n?dN&hQMyyIKsF!+KXIDdk0p-zc&g+YDGpPaK6Yw{H;xTHApwqb)$pY@2bl6RNS}J(wmpB~_E{Ri zm+SH3jouFA8=ry_Yud*#}OX4+&fqJ z0KoE94rh$TYC|o$K?j7?D^{ugbp)q=C;@Av5vp2e!%gReT#9cu%ms&Frtg5# z8W>X#acg9N%2}#}tcJFnp>8QcdavoyqT+@|)_x;my|cvbeIPpAnyJ*RFW3a5k;1Rq zD;lAQydXV`hGj+?q?tdwJcxNCJe^z~?za2KHdH)z;2%u5YmCZUJK7mh*fjWnEX5(m z7uFias0I$Qw(w=w8c(1I{_+u@Qc8sc)hcGq9bKRqiVoN6`o#7FYN?seDsEG+33L_fxm7OP_|cT=|WS0{hJ&OI~+YaP|o zz{FW0vU9mG#C&?%V!fx7%sm&0?!OX$+Azs9I_^R}w7ZllF0!X%lqhS}G4Sj#*>ZXo z1pQbdXP(UCq>bI0<;yIcgGqxD*ZwK(UIJ**o}DnT)5FiHm}xId<;S_DRu=y32WA8TcIg7MTGqn60ewQR-BoL8wXvW8m<);(*;6Is8`($DO;tGcL=0A zf^;#AaXVV)qU6&20Dt)KNW;{?>mKE0ATf;W@1I=50+K~0Z$0!2*t8VO69?L^=pV?p z?SY@x6--RB2oC<-Ywu)#$eP;Y)#I&3YsZzs6G0;$3PF9>oKT}^?^6zcl@+Ri0bR?s?m_BzN3&hqf5m-+j-+w1sWHY;FGMU++Es4 z*(3FmDv{smC=xK=Q_GSiR1(gSc)qAP(!q&~XL01*o}_0Ut35UNJfS!)y=$#S5$f!e zQ3gzVYkwdphn(@bEi;E5DmNJeL9!etzNw0_6NF9TdOtJB;Pm6uH0)^Kq)8x`wd?`J z{W`@umXGB#q!dHK1m!{ssdIm^W&1vc4rlKdyO{aRXq%0&~V%@*}etk+2=xBWB%S>R1 z$Q`*t6y$SU1~rhV%lIBcD1q&Xh~Nr1O(pc?;Cg075}=cP}c8=f0^rjJ5ITJhS zr_`+>!+WpukR|dYr7HfjiH=|TD7NbNKftw=tsgoMi}YUv^c%P`v|O2a6*;RF9Y?_dz1B#?k=3B*o<0<6t#26lw%F!MfL zo44aS>t!4L(j>i8E4%2cm+qjnC0JnH7cid6(>FQ()TGwnJGS^bM7cp>PE?oQecIvg z(YR@T=ecVT9baofZ54%z-vg1;)?p-Cd~79RdhXtR?CfIid_XA5{wH`CKI)C#69%kNUv{Fn{7{sKYBYZ+)&N93E0Fy(- zJHhT*)Zw(0rP(mocsCXHUaoLhl~eN9;-YTFTQ^ESgyAP}{21%ne{pOw>$%fQ7oe;E zm?ICB%yf8_{5M5NEC*EG!ok1*u>K;{bSXMPTugs#Hd-Fr=)C$k(3a`x+c)L(I67Sf z)}C*BC+QG6cF^a>Uw8%?hPu#LLt#~4tXs^*66Opb*oA~D$btU>eu+h#_{^oM;Iyyp zixKCouLODtoV%9Ss@i_>AA_`tS?^Q;6LCV|r4JeXm5@o6%9CF8>~Ag5*)yG+Tsb%v z&*0QGD$0`h>@Ha%f@}4%*P`q*eIN@5q>-Wxsi#z-A8M{*+Fyq z&n#LCi+=k1)x`zKB$`?yV>QB`82S!Ai4QsTZn4r{nKuI!lR?#7fNn;bd1O#Hr{+TI zX?+zvA_yM=Omr6NI^NsN1(>!_-fw7A$7V-j{20GPZ-h#D#HD(KZ`#f!`8RWLysT7Vqa%-)AlmDY=WOzUNL!oMT+yh!mAi7{Lq*;4|)ZD&5{?d zCFKJmE?fDmHd zSK<*#Qw0_dALjo^eY!cL1LnU;eflz^8Pz{W|Ao>pFtUHi)_+zlMEEOT{tgi` IN&d0^2MFfC`~Uy| diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv index 5a729ed..3f02fb0 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_event.csv @@ -1,2 +1,2 @@ -eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol -atn_137491_spotted-seal_trajectory_20180418-20180526,2018-04-18T04:45:00Z/2018-05-20T19:26:36Z,"POLYGON ((-164.4277 60.0415, -165.0651 63.6222, -165.0595 63.6399, -161.5203 64.6676, -164.4277 60.0415))",0.0,0.0,deployment,US,satellite telemetry +eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol,dynamicProperties +atn_137491_spotted-seal_trajectory_20180418-20180526,2018-04-18T04:45:00Z/2018-05-20T19:26:36Z,"POLYGON ((-164.4277 60.0415, -165.0651 63.6222, -165.0595 63.6399, -161.5203 64.6676, -164.4277 60.0415))",0.0,0.0,deployment,US,satellite telemetry,"{'date_created': '2025-05-27T21:27:32Z', 'featureType': 'trajectory', 'cdm_data_type': 'Trajectory', 'Conventions': 'CF-1.10, ACDD-1.3, IOOS-1.2, ATN Satellite Telemetry Specification v1.0', 'argos_program_number': '522', 'creator_email': 'josh.london@noaa.gov', 'id': '5ad6ce42efec72080c898c77', 'tag_serial': '16U2111', 'source': 'Service Argos', 'attachment': 'flipper', 'acknowledgement': 'National Oceanic and Atmospheric Administration (NOAA) Integrated Ocean Observing System (IOOS), Axiom Data Science, Office of Naval Research (ONR), NOAA National Marine Fisheries Service (NMFS), Wildlife Computers, Argos, IOOS Animal Telemetry Network (ATN)', 'creator_name': 'Josh London', 'creator_url': 'https://orcid.org/0000-0002-3647-5046', 'geospatial_lat_units': 'degrees_north', 'geospatial_lon_units': 'degrees_east', 'infoUrl': 'https://portal.atn.ioos.us/#metadata/70c76508-b252-4c3d-9f27-e4cba9300537/project', 'institution': 'Marine Mammal Laboratory, NOAA Alaska Fisheries Science Center', 'keywords': 'EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR, EARTH SCIENCE > BIOSPHERE > ECOLOGICAL DYNAMICS > SPECIES/POPULATION INTERACTIONS > MIGRATORY RATES/ROUTES, EARTH SCIENCE > OCEANS, EARTH SCIENCE > CLIMATE INDICATORS > BIOSPHERIC INDICATORS > SPECIES MIGRATION, EARTH SCIENCE > OCEANS, EARTH SCIENCE > BIOLOGICAL CLASSIFICATION > ANIMALS/VERTEBRATES, EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > MARINE ECOSYSTEMS, PROVIDERS > GOVERNMENT AGENCIES-U.S. FEDERAL AGENCIES > DOC > NOAA > IOOS, PROVIDERS > COMMERCIAL > Axiom Data Science', 'license': 'These data may be used and redistributed for free, but are not intended for legal use, since they may contain inaccuracies. No person or group associated with these data makes any warranty, expressed or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness or usefulness of this information. This disclaimer applies to both individual use of these data and aggregate use with other data. It is strongly recommended that users read and fully comprehend associated metadata prior to use. Please acknowledge the U.S. Animal Telemetry Network (ATN) or the specified citation as the source from which these data were obtained in any publications and/or representations of these data. Communication and collaboration with dataset authors are strongly encouraged.', 'metadata_link': '', 'naming_authority': 'com.wildlifecomputers', 'platform_category': 'animal', 'platform': 'land-sea mammals', 'platform_vocabulary': 'https://vocab.nerc.ac.uk/collection/L06/current/', 'processing_level': 'NetCDF file created from position data obtained from Wildlife Computers API.', 'project': 'A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018', 'publisher_email': 'atndata@ioos.us', 'publisher_institution': 'US Integrated Ocean Observing System Office', 'publisher_name': 'US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN)', 'publisher_url': 'https://atn.ioos.us', 'publisher_country': 'USA', 'standard_name_vocabulary': 'CF-v78', 'vendor': 'Wildlife Computers', 'geospatial_lat_min': np.float64(60.0306), 'geospatial_lat_max': np.float64(64.9335), 'geospatial_lon_min': np.float64(-166.0702), 'geospatial_lon_max': np.float64(-158.2506), 'geospatial_bbox': 'POLYGON ((-158.2506 60.0306, -158.2506 64.9335, -166.0702 64.9335, -166.0702 60.0306, -158.2506 60.0306))', 'geospatial_bounds': 'POLYGON ((-164.4103 60.0306, -164.4277 60.0415, -166.0702 63.6111, -165.1363 64.1747, -161.9721 64.8364, -161.54 64.9006, -158.2506 64.9335, -164.3761 60.0488, -164.4103 60.0306))', 'geospatial_bounds_crs': 'EPSG:4326', 'time_coverage_start': '2018-04-18T04:45:00Z', 'time_coverage_end': '2018-05-26T02:54:22Z', 'time_coverage_duration': 'P37DT22H9M22S', 'time_coverage_resolution': 'P0DT9H22M59S', 'date_issued': '2025-05-27T21:27:32Z', 'date_modified': '2025-05-27T21:27:32Z', 'history': '2024-05-09T00:41:20Z - Created by the IOOS ATN DAC from the Wildlife Computers API', 'summary': 'Wildlife Computers SPOT tag (ptt id 137491) deployed on a spotted seal (Phoca largha) by Josh London in the Bering Sea from 2018-04-18 to 2018-05-26', 'title': 'Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77', 'uuid': '45e68198-f95b-5e2b-b83e-7e961e0691dc', 'platform_name': 'Phoca largha', 'platform_id': '255021', 'vendor_id': '5ad6ce42efec72080c898c77', 'sea_name': 'Bering Sea', 'arbitrary_keywords': 'ATN, Animal Telemetry Network, IOOS, Integrated Ocean Observing System, trajectory, satellite telemetry tag', 'contributor_role_vocabulary': 'https://vocab.nerc.ac.uk/collection/G04/current/', 'creator_role_vocabulary': 'https://vocab.nerc.ac.uk/collection/G04/current/', 'creator_sector_vocabulary': 'https://mmisw.org/ont/ioos/sector', 'creator_type': 'person', 'date_metadata_modified': '20250527', 'instrument': 'Satellite telemetry tag', 'instrument_vocabulary': '', 'keywords_vocabulary': 'GCMD Science Keywords v15.1', 'ncei_template_version': 'NCEI_NetCDF_Trajectory_Template_v2.0', 'product_version': '', 'program': 'IOOS Animal Telemetry Network', 'publisher_type': 'institution', 'references': '', 'animal_common_name': 'spotted seal', 'animal_id': 'PL2018_1016', 'animal_scientific_name': 'Phoca largha', 'deployment_id': '5ad6ce42efec72080c898c77', 'deployment_start_datetime': '2018-04-18T04:45:00Z', 'deployment_end_datetime': '2018-05-26T02:00:00Z', 'wmo_platform_code': '', 'comment': '', 'ptt_id': '137491', 'deployment_start_lat': '63.6222', 'deployment_start_lon': '-165.0651', 'contributor_name': 'Stacie Koslovsky,Michael Cameron,Peter Boveng,Heather Ziel', 'contributor_email': 'stacie.koslovsky@noaa.gov,michael.cameron@noaa.gov,peter.boveng@noaa.gov,heather.ziel@noaa.gov', 'contributor_role': 'author,author,author,author', 'contributor_institution': 'NOAA Alaska Fisheries Science Center,NOAA Alaska Fisheries Science Center,NOAA Alaska Fisheries Science Center,NOAA Alaska Fisheries Science Center', 'contributor_url': 'https://orcid.org/0000-0002-9476-5383,,https://orcid.org/0000-0003-2732-4833,https://orcid.org/0000-0001-7068-4418', 'creator_role': 'principalInvestigator', 'creator_sector': 'government', 'creator_country': 'United States', 'creator_institution': 'NOAA Alaska Fisheries Science Center', 'creator_institution_url': 'https://www.fisheries.noaa.gov/alaska/marine-mammal-protection/ice-seal-research-alaska', 'citation': 'London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).', 'dataset_ipt_id': None, 'dataset_short_name': 'atn_137491_spotted-seal_trajectory_20180418-20180526', 'data_manager_firstname': 'Megan', 'data_manager_lastname': 'McKinzie', 'data_manager_title': 'Data Manager', 'data_manager_phone': '', 'data_manager_email': 'mmckinzie@mbari.org', 'contributors': [{'contributor_name': 'Stacie Koslovsky', 'contributor_email': 'stacie.koslovsky@noaa.gov', 'contributor_role': 'author', 'contributor_institution': 'NOAA Alaska Fisheries Science Center', 'contributor_url': 'https://orcid.org/0000-0002-9476-5383'}, {'contributor_name': 'Michael Cameron', 'contributor_email': 'michael.cameron@noaa.gov', 'contributor_role': 'author', 'contributor_institution': 'NOAA Alaska Fisheries Science Center', 'contributor_url': ''}, {'contributor_name': 'Peter Boveng', 'contributor_email': 'peter.boveng@noaa.gov', 'contributor_role': 'author', 'contributor_institution': 'NOAA Alaska Fisheries Science Center', 'contributor_url': 'https://orcid.org/0000-0003-2732-4833'}, {'contributor_name': 'Heather Ziel', 'contributor_email': 'heather.ziel@noaa.gov', 'contributor_role': 'author', 'contributor_institution': 'NOAA Alaska Fisheries Science Center', 'contributor_url': 'https://orcid.org/0000-0001-7068-4418'}], 'ncei_accession_number': '0305177', 'related_data_url': 'https://doi.org/10.24431/rw1k8er', 'related_data_citation': 'London, J., Koslovsky, S., Boveng, P., Ziel, H., & Cameron, M. (2024). A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018 (Version 1) [Data set]. Axiom Data Science. https://doi.org/10.24431/rw1k8er', 'ncei_title': 'Spotted seal (Phoca largha) location data from satellite telemetry tag ptt 137491 deployed in the Bering Sea by the Marine Mammal Laboratory, NOAA Alaska Fisheries Science Center from 2018-04-18 to 2018-05-26 (NCEI Accession 0305177)', 'filename': 'atn_137491_spotted-seal_trajectory_20180418-20180526', 'nc_globals': ""{'date_created': '2025-05-27T21:27:32Z', 'featureType': 'trajectory', 'cdm_data_type': 'Trajectory', 'Conventions': 'CF-1.10, ACDD-1.3, IOOS-1.2, ATN Satellite Telemetry Specification v1.0', 'argos_program_number': '522', 'creator_email': 'josh.london@noaa.gov', 'id': '5ad6ce42efec72080c898c77', 'tag_serial': '16U2111', 'source': 'Service Argos', 'attachment': 'flipper', 'acknowledgement': 'National Oceanic and Atmospheric Administration (NOAA) Integrated Ocean Observing System (IOOS), Axiom Data Science, Office of Naval Research (ONR), NOAA National Marine Fisheries Service (NMFS), Wildlife Computers, Argos, IOOS Animal Telemetry Network (ATN)', 'creator_name': 'Josh London', 'creator_url': 'https://orcid.org/0000-0002-3647-5046', 'geospatial_lat_units': 'degrees_north', 'geospatial_lon_units': 'degrees_east', 'infoUrl': 'https://portal.atn.ioos.us/#metadata/70c76508-b252-4c3d-9f27-e4cba9300537/project', 'institution': 'Marine Mammal Laboratory, NOAA Alaska Fisheries Science Center', 'keywords': 'EARTH SCIENCE > AGRICULTURE > ANIMAL SCIENCE > ANIMAL ECOLOGY AND BEHAVIOR, EARTH SCIENCE > BIOSPHERE > ECOLOGICAL DYNAMICS > SPECIES/POPULATION INTERACTIONS > MIGRATORY RATES/ROUTES, EARTH SCIENCE > OCEANS, EARTH SCIENCE > CLIMATE INDICATORS > BIOSPHERIC INDICATORS > SPECIES MIGRATION, EARTH SCIENCE > OCEANS, EARTH SCIENCE > BIOLOGICAL CLASSIFICATION > ANIMALS/VERTEBRATES, EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > MARINE ECOSYSTEMS, PROVIDERS > GOVERNMENT AGENCIES-U.S. FEDERAL AGENCIES > DOC > NOAA > IOOS, PROVIDERS > COMMERCIAL > Axiom Data Science', 'license': 'These data may be used and redistributed for free, but are not intended for legal use, since they may contain inaccuracies. No person or group associated with these data makes any warranty, expressed or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness or usefulness of this information. This disclaimer applies to both individual use of these data and aggregate use with other data. It is strongly recommended that users read and fully comprehend associated metadata prior to use. Please acknowledge the U.S. Animal Telemetry Network (ATN) or the specified citation as the source from which these data were obtained in any publications and/or representations of these data. Communication and collaboration with dataset authors are strongly encouraged.', 'metadata_link': '', 'naming_authority': 'com.wildlifecomputers', 'platform_category': 'animal', 'platform': 'land-sea mammals', 'platform_vocabulary': 'https://vocab.nerc.ac.uk/collection/L06/current/', 'processing_level': 'NetCDF file created from position data obtained from Wildlife Computers API.', 'project': 'A Dataset from Bio-loggers Deployed on Ribbon Seals (Histriophoca fasciata) and Spotted Seals (Phoca largha) in the Bering Sea, 2005-2018', 'publisher_email': 'atndata@ioos.us', 'publisher_institution': 'US Integrated Ocean Observing System Office', 'publisher_name': 'US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN)', 'publisher_url': 'https://atn.ioos.us', 'publisher_country': 'USA', 'standard_name_vocabulary': 'CF-v78', 'vendor': 'Wildlife Computers', 'geospatial_lat_min': np.float64(60.0306), 'geospatial_lat_max': np.float64(64.9335), 'geospatial_lon_min': np.float64(-166.0702), 'geospatial_lon_max': np.float64(-158.2506), 'geospatial_bbox': 'POLYGON ((-158.2506 60.0306, -158.2506 64.9335, -166.0702 64.9335, -166.0702 60.0306, -158.2506 60.0306))', 'geospatial_bounds': 'POLYGON ((-164.4103 60.0306, -164.4277 60.0415, -166.0702 63.6111, -165.1363 64.1747, -161.9721 64.8364, -161.54 64.9006, -158.2506 64.9335, -164.3761 60.0488, -164.4103 60.0306))', 'geospatial_bounds_crs': 'EPSG:4326', 'time_coverage_start': '2018-04-18T04:45:00Z', 'time_coverage_end': '2018-05-26T02:54:22Z', 'time_coverage_duration': 'P37DT22H9M22S', 'time_coverage_resolution': 'P0DT9H22M59S', 'date_issued': '2025-05-27T21:27:32Z', 'date_modified': '2025-05-27T21:27:32Z', 'history': '2024-05-09T00:41:20Z - Created by the IOOS ATN DAC from the Wildlife Computers API', 'summary': 'Wildlife Computers SPOT tag (ptt id 137491) deployed on a spotted seal (Phoca largha) by Josh London in the Bering Sea from 2018-04-18 to 2018-05-26', 'title': 'Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77', 'uuid': '45e68198-f95b-5e2b-b83e-7e961e0691dc', 'platform_name': 'Phoca largha', 'platform_id': '255021', 'vendor_id': '5ad6ce42efec72080c898c77', 'sea_name': 'Bering Sea', 'arbitrary_keywords': 'ATN, Animal Telemetry Network, IOOS, Integrated Ocean Observing System, trajectory, satellite telemetry tag', 'contributor_role_vocabulary': 'https://vocab.nerc.ac.uk/collection/G04/current/', 'creator_role_vocabulary': 'https://vocab.nerc.ac.uk/collection/G04/current/', 'creator_sector_vocabulary': 'https://mmisw.org/ont/ioos/sector', 'creator_type': 'person', 'date_metadata_modified': '20250527', 'instrument': 'Satellite telemetry tag', 'instrument_vocabulary': '', 'keywords_vocabulary': 'GCMD Science Keywords v15.1', 'ncei_template_version': 'NCEI_NetCDF_Trajectory_Template_v2.0', 'product_version': '', 'program': 'IOOS Animal Telemetry Network', 'publisher_type': 'institution', 'references': '', 'animal_common_name': 'spotted seal', 'animal_id': 'PL2018_1016', 'animal_scientific_name': 'Phoca largha', 'deployment_id': '5ad6ce42efec72080c898c77', 'deployment_start_datetime': '2018-04-18T04:45:00Z', 'deployment_end_datetime': '2018-05-26T02:00:00Z', 'wmo_platform_code': '', 'comment': '', 'ptt_id': '137491', 'deployment_start_lat': '63.6222', 'deployment_start_lon': '-165.0651', 'contributor_name': 'Stacie Koslovsky,Michael Cameron,Peter Boveng,Heather Ziel', 'contributor_email': 'stacie.koslovsky@noaa.gov,michael.cameron@noaa.gov,peter.boveng@noaa.gov,heather.ziel@noaa.gov', 'contributor_role': 'author,author,author,author', 'contributor_institution': 'NOAA Alaska Fisheries Science Center,NOAA Alaska Fisheries Science Center,NOAA Alaska Fisheries Science Center,NOAA Alaska Fisheries Science Center', 'contributor_url': 'https://orcid.org/0000-0002-9476-5383,,https://orcid.org/0000-0003-2732-4833,https://orcid.org/0000-0001-7068-4418', 'creator_role': 'principalInvestigator', 'creator_sector': 'government', 'creator_country': 'United States', 'creator_institution': 'NOAA Alaska Fisheries Science Center', 'creator_institution_url': 'https://www.fisheries.noaa.gov/alaska/marine-mammal-protection/ice-seal-research-alaska', 'citation': 'London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).'}"", 'manufacturer': 'Wildlife Computers', 'make_model': 'SPOT', 'serial_number': '16U2111', 'long_name': 'telemetry tag applied to animal', 'coverage_content_type': 'referenceInformation', 'calibration_date': 'Not Provided'}" diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv index a7e36e4..93ae76e 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526_occurrence.csv @@ -1,6 +1,6 @@ eventID,occurrenceID,occurrenceStatus,basisOfRecord,organismID,eventDate,decimalLatitude,decimalLongitude,geodeticDatum,scientificName,scientificNameID,samplingProtocol,kingdom,taxonRank,lifeStage,sex,associatedReferences,coordinateUncertaintyInMeters,minimumDepthInMeters,maximumDepthInMeters,dataGeneralizations,bibliographicCitation,occurrenceRemarks -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,present,HumanObservation,255021_spotted_seal,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177,0,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T06:09:20Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-18T06:09:20Z,63.6399,-165.0595,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177,1500,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-29T07:05:19Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-29T07:05:19Z,60.0415,-164.4277,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177,1500,0.0,0.0,first of 4 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-05-13T20:07:00Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-13T20:07:00Z,63.365,-164.0013,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177,10000,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. -atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-05-20T19:26:36Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-20T19:26:36Z,64.6676,-161.5203,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177,10000,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T04:45:00Z_0.0_spotted_seal,present,HumanObservation,255021_spotted_seal,2018-04-18T04:45:00Z,63.6222,-165.0651,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177; https://doi.org/10.24431/rw1k8er,0,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-18T06:09:20Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-18T06:09:20Z,63.6399,-165.0595,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177; https://doi.org/10.24431/rw1k8er,1500,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-04-29T07:05:19Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-04-29T07:05:19Z,60.0415,-164.4277,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177; https://doi.org/10.24431/rw1k8er,1500,0.0,0.0,first of 4 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-05-13T20:07:00Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-13T20:07:00Z,63.365,-164.0013,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177; https://doi.org/10.24431/rw1k8er,10000,0.0,0.0,first of 3 records for this hour.,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. +atn_137491_spotted-seal_trajectory_20180418-20180526,ioos_atn_137491_2018-05-20T19:26:36Z_0.0_spotted_seal,present,MachineObservation,255021_spotted_seal,2018-05-20T19:26:36Z,64.6676,-161.5203,EPSG:4326,Phoca largha,urn:lsid:marinespecies.org:taxname:255021,satellite telemetry,Animalia,Species,adult,female,https://doi.org/10.25921/wp4e-ph20; https://www.ncei.noaa.gov/archive/accession/0305177; https://doi.org/10.24431/rw1k8er,10000,0.0,0.0,,"London, Josh; Koslovsky, Stacie; Cameron, Michael; Boveng, Peter; Ziel, Heather. (2025). Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For the complete dataset please see https://www.ncei.noaa.gov/archive/accession/0305177. diff --git a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml index 66df39e..2efdf3d 100644 --- a/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml @@ -9,16 +9,17 @@ https://ipt-obis.gbif.us/resource?r=atn_137491_spotted-seal_trajectory_20180418-20180526 https://doi.org/10.25921/wp4e-ph20 https://www.ncei.noaa.gov/archive/accession/0305177 + https://doi.org/10.24431/rw1k8er Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77 Megan McKinzie - Animal Tracking Network + U.S. Animal Telemetry Network (ATN) Data Manager
- U.S. Integrated Ocean Observing System Program + U.S. Integrated Ocean Observing System Silver Spring Maryland 20910 @@ -155,7 +156,7 @@ 2025-05-27 eng - This is the OBIS extraction of Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77 from the IOOS Animal Telemetry Network. This extraction is a subset of detections intended to be useful for the OBIS network. The source dataset, containing the full set of detections, is available at NCEI: https://www.ncei.noaa.gov/archive/accession/0305177. The entire collection of satellite telemetry location and profile data collected from satellite-linked tags deployed on marine animals and contributed by organizations that are part of the U.S. Animal Telemetry Network (ATN) can be found at: https://doi.org/10.25921/wp4e-ph20 + This is the OBIS extraction of Spotted seal (Phoca largha) location data from a satellite telemetry tag (ptt id 137491) deployed in the Bering Sea from 2018-04-18 to 2018-05-26, deployment id 5ad6ce42efec72080c898c77 from the U.S. Animal Telemetry Network (ATN). This extraction is a subset of detections intended to be useful for the OBIS network. The source dataset, containing the full set of detections, is available at NCEI: https://www.ncei.noaa.gov/archive/accession/0305177. The entire collection of satellite telemetry location and profile data collected from satellite-linked tags deployed on marine animals and contributed by organizations that are part of the U.S. Animal Telemetry Network (ATN) can be found at: https://doi.org/10.25921/wp4e-ph20