diff --git a/.gitignore b/.gitignore index 379ad33..8698293 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,13 @@ .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/ +!datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/ +!datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/ +!datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/ +datasets/atn_satellite_telemetry/.env 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..8d44cf5 --- /dev/null +++ b/datasets/atn_satellite_telemetry/convert_ATNnc2DwC.ipynb @@ -0,0 +1,2637 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "NxGSbpxdStLu" + }, + "source": [ + "# Convert ATN Satellite Telemetry NetCDF to Darwin Core Archive\n", + "\n", + "This notebook walks through downloading an example netCDF file from the an Archive package at NCEI and translating it to a Darwin Core Archive compliant package for easy loading and publishing via the Integrated Publishing Toolkit (IPT). The example file follows a specific specification for ATN satellite trajectory observations as documented [here](https://github.com/ioos/ioos-atn-data/blob/main/templates/atn_trajectory_template.cdl). More information about the ATN netCDF specification can be found in the repository " + ] + }, + { + "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", + "from urllib.request import urlopen\n", + "import urllib.error\n", + "import xml.etree.ElementTree as ET\n", + "from owslib import util\n", + "from owslib.iso import namespaces\n", + "import xarray as xr\n", + "import netCDF4\n", + "import re\n", + "from jinja2 import Template\n", + "import codecs\n", + "import stamina\n", + "from shapely.geometry import LineString\n", + "import shapely\n", + "from requests_toolbelt.multipart.encoder import MultipartEncoder\n", + "from dotenv import dotenv_values\n", + "import zipfile\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Collect the files and accession numbers" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "@stamina.retry(on=urllib.error.HTTPError, attempts=3)\n", + "def _openurl_with_retry(url):\n", + " \"\"\"Thin wrapper around urlopen adding stamina.\"\"\"\n", + " return urlopen(url)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Create a dataframe to hold the mapping of accession numbers to file names\n", + "\n", + "Collect information from the NCEI ISO metadata records to include in the DwC-A package. This includes information that will go into the occurrence, event, emof, and eml metadata." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fetching NCEI accession mapping table...\n", + "Successfully built mapping for 289 files.\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", + "
titleaccessionstart_dateend_daterelated_data_urlrelated_data_citationarcxmlfile_nameptt_id
0Great white shark (Carcharodon carcharias) loc...02826992009-09-232009-11-23https://doi.org/10.24431/rw1k6c3Lowe, C., Sosa-Nishizaki, O., Jorgensen, S., G...arc0217https://www.ncei.noaa.gov/data/oceans/archive/...atn_45866_great-white-shark_trajectory_2009092...45866
1Great white shark (Carcharodon carcharias) loc...02827002009-09-232009-12-13https://doi.org/10.24431/rw1k6c3Lowe, C., Sosa-Nishizaki, O., Jorgensen, S., G...arc0217https://www.ncei.noaa.gov/data/oceans/archive/...atn_45869_great-white-shark_trajectory_2009092...45869
2Bearded seal (Erignathus barbatus) location da...02982182011-06-182012-03-14https://doi.org/10.24431/rw1k31xBoveng, P., London, J., Cameron, M., Jansen, J...arc0230https://www.ncei.noaa.gov/data/oceans/archive/...atn_38553_bearded-seal_trajectory_20110618-201...38553
3Bearded seal (Erignathus barbatus) location da...02982542011-06-162012-04-01https://doi.org/10.24431/rw1k31xBoveng, P., London, J., Cameron, M., Jansen, J...arc0230https://www.ncei.noaa.gov/data/oceans/archive/...atn_39489_bearded-seal_trajectory_20110616-201...39489
4Bearded seal (Erignathus barbatus) location da...02982562010-02-132012-05-18https://doi.org/10.24431/rw1k31xBoveng, P., London, J., Cameron, M., Jansen, J...arc0230https://www.ncei.noaa.gov/data/oceans/archive/...atn_64459_bearded-seal_trajectory_20090626-201...64459
.................................
284Spotted seal (Phoca largha) location data from...03057622018-04-202018-06-07https://doi.org/10.24431/rw1k8erLondon, J., Koslovsky, S., Boveng, P., Ziel, H...arc0235https://www.ncei.noaa.gov/data/oceans/archive/...atn_174785_spotted-seal_trajectory_20180420-20...174785
285Spotted seal (Phoca largha) location data from...03057632018-04-142018-05-13https://doi.org/10.24431/rw1k8erLondon, J., Koslovsky, S., Boveng, P., Ziel, H...arc0235https://www.ncei.noaa.gov/data/oceans/archive/...atn_174786_spotted-seal_trajectory_20180414-20...174786
286Spotted seal (Phoca largha) location data from...03057642018-04-092018-09-19https://doi.org/10.24431/rw1k8erLondon, J., Koslovsky, S., Boveng, P., Ziel, H...arc0235https://www.ncei.noaa.gov/data/oceans/archive/...atn_174787_spotted-seal_trajectory_20180410-20...174787
287Spotted seal (Phoca largha) location data from...03057672018-04-182018-05-28https://doi.org/10.24431/rw1k8erLondon, J., Koslovsky, S., Boveng, P., Ziel, H...arc0235https://www.ncei.noaa.gov/data/oceans/archive/...atn_174790_spotted-seal_trajectory_20180418-20...174790
288Spotted seal (Phoca largha) location data from...03057682018-04-202018-05-25https://doi.org/10.24431/rw1k8erLondon, J., Koslovsky, S., Boveng, P., Ziel, H...arc0235https://www.ncei.noaa.gov/data/oceans/archive/...atn_174805_spotted-seal_trajectory_20180420-20...174805
\n", + "

289 rows × 10 columns

\n", + "
" + ], + "text/plain": [ + " title accession start_date \\\n", + "0 Great white shark (Carcharodon carcharias) loc... 0282699 2009-09-23 \n", + "1 Great white shark (Carcharodon carcharias) loc... 0282700 2009-09-23 \n", + "2 Bearded seal (Erignathus barbatus) location da... 0298218 2011-06-18 \n", + "3 Bearded seal (Erignathus barbatus) location da... 0298254 2011-06-16 \n", + "4 Bearded seal (Erignathus barbatus) location da... 0298256 2010-02-13 \n", + ".. ... ... ... \n", + "284 Spotted seal (Phoca largha) location data from... 0305762 2018-04-20 \n", + "285 Spotted seal (Phoca largha) location data from... 0305763 2018-04-14 \n", + "286 Spotted seal (Phoca largha) location data from... 0305764 2018-04-09 \n", + "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 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", + "1 https://www.ncei.noaa.gov/data/oceans/archive/... \n", + "2 https://www.ncei.noaa.gov/data/oceans/archive/... \n", + "3 https://www.ncei.noaa.gov/data/oceans/archive/... \n", + "4 https://www.ncei.noaa.gov/data/oceans/archive/... \n", + ".. ... \n", + "284 https://www.ncei.noaa.gov/data/oceans/archive/... \n", + "285 https://www.ncei.noaa.gov/data/oceans/archive/... \n", + "286 https://www.ncei.noaa.gov/data/oceans/archive/... \n", + "287 https://www.ncei.noaa.gov/data/oceans/archive/... \n", + "288 https://www.ncei.noaa.gov/data/oceans/archive/... \n", + "\n", + " file_name ptt_id \n", + "0 atn_45866_great-white-shark_trajectory_2009092... 45866 \n", + "1 atn_45869_great-white-shark_trajectory_2009092... 45869 \n", + "2 atn_38553_bearded-seal_trajectory_20110618-201... 38553 \n", + "3 atn_39489_bearded-seal_trajectory_20110616-201... 39489 \n", + "4 atn_64459_bearded-seal_trajectory_20090626-201... 64459 \n", + ".. ... ... \n", + "284 atn_174785_spotted-seal_trajectory_20180420-20... 174785 \n", + "285 atn_174786_spotted-seal_trajectory_20180414-20... 174786 \n", + "286 atn_174787_spotted-seal_trajectory_20180410-20... 174787 \n", + "287 atn_174790_spotted-seal_trajectory_20180418-20... 174790 \n", + "288 atn_174805_spotted-seal_trajectory_20180420-20... 174805 \n", + "\n", + "[289 rows x 10 columns]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "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", + " 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", + " 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", + " except Exception as e:\n", + " print(f\"Could not process accession {acc}: {e}\")\n", + "\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 = get_ncei_accession_mapping()\n", + "\n", + "df_map" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "xtUi2y_3cwZq" + }, + "source": [ + "## Create a function to recursively download files\n", + "\n", + "think about pulling from NCEI accessions instead of downloading from WAF." + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "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": 5, + "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": 5, + "metadata": { + "id": "c9G3a6N2bMh2" + }, + "outputs": [], + "source": [ + "## 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 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 = os.path.splitext(source_file)[0] # \"ioos_atn_{ds.ptt_id}_{start_date}_{end_date}\"\"\n", + " \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", + " 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", + " 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['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'] = 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", + "\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", + " # drop A, B, and Z records\n", + " dwc_df['location_class'] = ds['location_class'].to_series()\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", + " # 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", + " 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 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", + " # only pick specific columns to save\n", + " cols = ['eventID', 'occurrenceID', 'occurrenceStatus', 'basisOfRecord',\n", + " 'organismID', 'eventDate', 'decimalLatitude',\n", + " 'decimalLongitude', 'geodeticDatum',\n", + " 'scientificName', 'scientificNameID',\n", + " 'samplingProtocol', 'kingdom', 'taxonRank', 'lifeStage',\n", + " 'sex', 'associatedReferences',\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, cols" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "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", + " event_df['eventID'] = dwc_df['eventID'].unique()\n", + " event_df['eventDate'] = dwc_df['eventDate'].min() + '/' + dwc_df['eventDate'].max()\n", + "\n", + " ## Convex hull summary of the points\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", + " 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": 7, + "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", + " # --- 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)] # maybe add the other vars here too.\n", + " new_rows = pd.DataFrame()\n", + "\n", + " # also animal age field.\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/', # s06, Sex = S10, Life Stage = S11, Platform = L06\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", + " 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", + " '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", + " '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", + " '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'].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", + " '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", + " 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" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "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", + "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/{filename}/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", + "\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", + " 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': 'Megan',\n", + " 'data_manager_lastname': 'McKinzie',\n", + " 'data_manager_title': 'Data Manager',\n", + " 'data_manager_phone': '',\n", + " 'data_manager_email': 'mmckinzie@mbari.org',\n", + " 'contributors': contributors_list,\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", + "\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" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "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", + " 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", + " cols (list): List of occurrence columns to include in the meta.xml.\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", + "\n", + " # when writing dwc occurrence file, we only save some columns\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", + " 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", + " 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": 10, + "metadata": {}, + "outputs": [], + "source": [ + "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": 11, + "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", + " sub_dir = base_filename.split('.')[0]\n", + "\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\"{sub_dir}/{os.path.splitext(base_filename)[0]}_occurrence.csv\")\n", + " output_csv = os.path.normpath(output_csv)\n", + "\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, cols = create_dwc_occurrence(ds, output_csv, df_map)\n", + "\n", + " # Create and save eml\n", + " create_eml(ds, df_map)\n", + "\n", + " # --- Event and eMoF (as needed) ---\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", + " 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/{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", + "\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": 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": 12, + "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", + "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\\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", + " 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", + " 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\\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", + " 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", + " 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", + "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\\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", + " 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", + " 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", + "\n", + "--- 3. Conversion Complete ---\n", + "✅ Success! Processed 3 files.\n" + ] + } + ], + "source": [ + "# Step 1: Download all .nc files from the URL\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", + "else:\n", + " print(\"No files were downloaded, so conversion cannot proceed.\")" + ] + }, + { + "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": 40, + "metadata": {}, + "outputs": [], + "source": [ + "# 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", + " 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", + " :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", + "def change_publishing_org_ipt_project(projname: str, ipt_url: str, ipt_session, new_publishing_org_name: str):\n", + " \"\"\"\n", + " Change the publishing organization in the given IPT project\n", + " Author: Mathew Biddle\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 new_publishing_org: the new publishing organisation to set for this project. See publishingOrganizationKey in the IPT source.\n", + "\n", + " :return: URL of the resource\n", + " \"\"\"\n", + " pub_orgs = {'NOAA Integrated Ocean Observing System': \"1d38bb22-cbea-4845-8b0c-f62551076080\",\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", + " 'United States Fish and Wildlife Service': \"f8dbeca7-3131-41ab-872f-bfad71041f3f\",\n", + " 'United States Geological Survey': \"c3ad790a-d426-4ac1-8e32-da61f81f0117\",\n", + " }\n", + "\n", + " if new_publishing_org_name not in pub_orgs:\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", + " 'publishingOrganizationKey': pub_orgs[new_publishing_org_name],\n", + " }\n", + " \n", + " contents = ipt_session.post(ipt_url + 'manage/resource-changePublishingOrganization.do', data = pub_params)\n", + " return contents\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", + "def register_ipt_project(projname: str, ipt_url: str, ipt_session):\n", + " \"\"\"\n", + " Update Register the given IPT project with GBIF\n", + " Author: Mathew Biddle\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", + "\n", + " Need to do the following in the dialog-confirm. \n", + " * check checkbox-confirm\n", + " * select yes-button\n", + "\n", + " :return: URL of the resource\n", + " \"\"\"\n", + "\n", + " pub_params = {'r' : projname, # resource = dataset name\n", + " 'checkbox-confirm': 'true', # checkbox-confirm\n", + " 'yes-button': 'Yes',\n", + " }\n", + " \n", + " contents = ipt_session.post(ipt_url + 'manage/resource-registerResource.do', data = pub_params)\n", + " return contents\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": 41, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Found existing project by name: 'atn_38553_bearded-seal_trajectory_20110618-20120314'\n", + "Found existing project by name: 'atn_137491_spotted-seal_trajectory_20180418-20180526'\n", + "Found existing project by name: 'atn_137494_ribbon-seal_trajectory_20140426-20140426'\n", + "Publication successful\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", + " '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", + "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:\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", + " 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", + " 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", + " \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", + " ## 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) # 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", + " 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", + " 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", + " # 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)" + ] + }, + { + "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, + "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.13.3" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} 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 new file mode 100644 index 0000000..3b03e61 Binary files /dev/null and b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/atn_137491_spotted-seal_trajectory_20180418-20180526.zip differ 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..b31c6b4 --- /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,7 @@ +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 new file mode 100644 index 0000000..3f02fb0 --- /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,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 new file mode 100644 index 0000000..93ae76e --- /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; 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 new file mode 100644 index 0000000..7985275 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/eml.xml @@ -0,0 +1,378 @@ + + + + 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 + + U.S. Animal Telemetry Network (ATN) + Data Manager +
+ U.S. Integrated Ocean Observing System + Silver Spring + Maryland + 20910 + US +
+ + 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 + + + + + + Michael + Cameron + + 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 +
+ atndata@ioos.us + https://atn.ioos.us +
+ + + + + Stacie + Koslovsky + + NOAA Alaska Fisheries Science Center + stacie.koslovsky@noaa.gov + https://orcid.org/0000-0002-9476-5383 + author + + + + + Michael + Cameron + + NOAA Alaska Fisheries Science Center + michael.cameron@noaa.gov + + author + + + + + Peter + Boveng + + NOAA Alaska Fisheries Science Center + peter.boveng@noaa.gov + https://orcid.org/0000-0003-2732-4833 + author + + + + + Heather + Ziel + + NOAA Alaska Fisheries Science Center + heather.ziel@noaa.gov + https://orcid.org/0000-0001-7068-4418 + 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 + + 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 + + + + + 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 + + GCMD Science Keywords v15.1 + + + + ATN + + Animal Telemetry Network + + IOOS + + Integrated Ocean Observing System + + trajectory + + satellite telemetry tag + + arbitrary keywords + + + + 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. + +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. + + + + 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-18 + + + 2018-05-26 + + + + + + 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 + + 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 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. + + + + + + + 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 + + principal investigator + + 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 + + + + + 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) + ASCII + + + HTM + + + + + https://www.ncei.noaa.gov/archive/accession/0305177 + + + + + 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 + + + + + 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 + ASCII + + + HTM + + + + + https://doi.org/10.24431/rw1k8er + + + + + + +
\ No newline at end of file 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 new file mode 100644 index 0000000..868f384 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137491_spotted-seal_trajectory_20180418-20180526/meta.xml @@ -0,0 +1,58 @@ + + + + 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/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 new file mode 100644 index 0000000..38f0d57 Binary files /dev/null and b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426.zip differ 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 new file mode 100644 index 0000000..58864ad --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv @@ -0,0 +1,2 @@ +eventID,eventDate,footprintWKT,minimumDepthInMeters,maximumDepthInMeters,eventType,countryCode,samplingProtocol,dynamicProperties +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,"{'date_created': '2025-05-27T21:01:36Z', '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': '535b7f8de36c4f5e17acc135', 'tag_serial': '13U0107', 'source': 'Service Argos', '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.6317), 'geospatial_lat_max': np.float64(61.1814), 'geospatial_lon_min': np.float64(-178.09), 'geospatial_lon_max': np.float64(-177.397), 'geospatial_bbox': 'POLYGON ((-177.397 60.6317, -177.397 61.1814, -178.09 61.1814, -178.09 60.6317, -177.397 60.6317))', 'geospatial_bounds': 'POLYGON ((-178.0899 60.6317, -178.09 60.632, -177.908 61.068, -177.471 61.1814, -177.3973 61.1713, -177.397 61.171, -177.398 61.17, -178.0526 60.6467, -178.0899 60.6317))', 'geospatial_bounds_crs': 'EPSG:4326', 'time_coverage_start': '2014-04-26T00:51:11Z', 'time_coverage_end': '2014-04-27T15:49:06Z', 'time_coverage_duration': 'P1DT14H57M55S', 'time_coverage_resolution': 'P0DT3H32M32S', 'date_issued': '2025-05-27T21:01:36Z', 'date_modified': '2025-05-27T21:01:36Z', 'history': '2024-05-09T00:44:31Z - Created by the IOOS ATN DAC from the Wildlife Computers API', 'summary': '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', 'title': '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', 'uuid': '7847ac05-be64-5068-be15-ad3e9c48a397', 'platform_name': 'Histriophoca fasciata', 'platform_id': '255017', 'vendor_id': '535b7f8de36c4f5e17acc135', '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': 'ribbon seal', 'animal_id': 'HF2014_1011', 'animal_scientific_name': 'Histriophoca fasciata', 'deployment_id': '535b7f8de36c4f5e17acc135', 'deployment_start_datetime': '2014-04-26T01:15:00Z', 'deployment_end_datetime': '2014-04-26T01:15:00Z', 'wmo_platform_code': '', 'comment': '', 'ptt_id': '137494', 'deployment_start_lat': '60.61549', 'deployment_start_lon': '-178.04042', '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). 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).', 'dataset_ipt_id': None, 'dataset_short_name': 'atn_137494_ribbon-seal_trajectory_20140426-20140426', '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': '0305178', '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': 'Ribbon seal (Histriophoca fasciata) location data from satellite telemetry tag ptt 137494 deployed in the Bering Sea by the Marine Mammal Laboratory, NOAA Alaska Fisheries Science Center on 2014-04-26 (NCEI Accession 0305178)', 'filename': 'atn_137494_ribbon-seal_trajectory_20140426-20140426', 'nc_globals': ""{'date_created': '2025-05-27T21:01:36Z', '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': '535b7f8de36c4f5e17acc135', 'tag_serial': '13U0107', 'source': 'Service Argos', '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.6317), 'geospatial_lat_max': np.float64(61.1814), 'geospatial_lon_min': np.float64(-178.09), 'geospatial_lon_max': np.float64(-177.397), 'geospatial_bbox': 'POLYGON ((-177.397 60.6317, -177.397 61.1814, -178.09 61.1814, -178.09 60.6317, -177.397 60.6317))', 'geospatial_bounds': 'POLYGON ((-178.0899 60.6317, -178.09 60.632, -177.908 61.068, -177.471 61.1814, -177.3973 61.1713, -177.397 61.171, -177.398 61.17, -178.0526 60.6467, -178.0899 60.6317))', 'geospatial_bounds_crs': 'EPSG:4326', 'time_coverage_start': '2014-04-26T00:51:11Z', 'time_coverage_end': '2014-04-27T15:49:06Z', 'time_coverage_duration': 'P1DT14H57M55S', 'time_coverage_resolution': 'P0DT3H32M32S', 'date_issued': '2025-05-27T21:01:36Z', 'date_modified': '2025-05-27T21:01:36Z', 'history': '2024-05-09T00:44:31Z - Created by the IOOS ATN DAC from the Wildlife Computers API', 'summary': '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', 'title': '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', 'uuid': '7847ac05-be64-5068-be15-ad3e9c48a397', 'platform_name': 'Histriophoca fasciata', 'platform_id': '255017', 'vendor_id': '535b7f8de36c4f5e17acc135', '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': 'ribbon seal', 'animal_id': 'HF2014_1011', 'animal_scientific_name': 'Histriophoca fasciata', 'deployment_id': '535b7f8de36c4f5e17acc135', 'deployment_start_datetime': '2014-04-26T01:15:00Z', 'deployment_end_datetime': '2014-04-26T01:15:00Z', 'wmo_platform_code': '', 'comment': '', 'ptt_id': '137494', 'deployment_start_lat': '60.61549', 'deployment_start_lon': '-178.04042', '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). 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).'}"", 'manufacturer': 'Wildlife Computers', 'make_model': 'SPOT', 'serial_number': '13U0107', '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_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 new file mode 100644 index 0000000..fd6ecdd --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv @@ -0,0 +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; https://www.ncei.noaa.gov/archive/accession/0305178; https://doi.org/10.24431/rw1k8er,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; https://doi.org/10.24431/rw1k8er,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; https://doi.org/10.24431/rw1k8er,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; https://doi.org/10.24431/rw1k8er,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 new file mode 100644 index 0000000..bbd1692 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/eml.xml @@ -0,0 +1,378 @@ + + + + https://ipt-obis.gbif.us/resource?r=atn_137494_ribbon-seal_trajectory_20140426-20140426 + https://doi.org/10.25921/wp4e-ph20 + https://www.ncei.noaa.gov/archive/accession/0305178 + https://doi.org/10.24431/rw1k8er + 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 + + + Megan + McKinzie + + U.S. Animal Telemetry Network (ATN) + Data Manager +
+ U.S. Integrated Ocean Observing System + Silver Spring + Maryland + 20910 + US +
+ + 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 + + + + + + Michael + Cameron + + 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 +
+ atndata@ioos.us + https://atn.ioos.us +
+ + + + + Stacie + Koslovsky + + NOAA Alaska Fisheries Science Center + stacie.koslovsky@noaa.gov + https://orcid.org/0000-0002-9476-5383 + author + + + + + Michael + Cameron + + NOAA Alaska Fisheries Science Center + michael.cameron@noaa.gov + + author + + + + + Peter + Boveng + + NOAA Alaska Fisheries Science Center + peter.boveng@noaa.gov + https://orcid.org/0000-0003-2732-4833 + author + + + + + Heather + Ziel + + NOAA Alaska Fisheries Science Center + heather.ziel@noaa.gov + https://orcid.org/0000-0001-7068-4418 + 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 + + 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 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/0305178. 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 + + + + + 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 + + GCMD Science Keywords v15.1 + + + + ATN + + Animal Telemetry Network + + IOOS + + Integrated Ocean Observing System + + trajectory + + satellite telemetry tag + + arbitrary keywords + + + + 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. + +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. + + + + 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-26 + + + 2014-04-27 + + + + + + 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 + + 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 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. + + + + + + + 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 + + principal investigator + + 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 + + + + + Ribbon seal (Histriophoca fasciata) location data from satellite telemetry tag ptt 137494 deployed in the Bering Sea by the Marine Mammal Laboratory, NOAA Alaska Fisheries Science Center on 2014-04-26 (NCEI Accession 0305178) + ASCII + + + HTM + + + + + https://www.ncei.noaa.gov/archive/accession/0305178 + + + + + 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 + + + + + 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 + ASCII + + + HTM + + + + + https://doi.org/10.24431/rw1k8er + + + + + + +
\ No newline at end of file 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 new file mode 100644 index 0000000..aed8864 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_137494_ribbon-seal_trajectory_20140426-20140426/meta.xml @@ -0,0 +1,58 @@ + + + + atn_137494_ribbon-seal_trajectory_20140426-20140426_event.csv + + + + + + + + + + + + + + + atn_137494_ribbon-seal_trajectory_20140426-20140426_occurrence.csv + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 new file mode 100644 index 0000000..e189934 Binary files /dev/null and b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/atn_38553_bearded-seal_trajectory_20110618-20120314.zip differ 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 new file mode 100644 index 0000000..455534a --- /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,dynamicProperties +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,"{'date_created': '2024-08-28T00:07:07Z', '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': 'Not Provided', 'creator_email': 'peter.boveng@noaa.gov', 'id': '52d85570a86a2315ac16876f', 'tag_serial': '10A0200', 'source': 'Service Argos', 'attachment': 'head', 'project': 'A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012', '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': 'Peter Boveng', 'creator_url': 'https://orcid.org/0000-0003-2732-4833', 'geospatial_lat_units': 'degrees_north', 'geospatial_lon_units': 'degrees_east', 'infoUrl': 'https://portal.atn.ioos.us/#metadata/0ceb0cce-3602-4a4f-a5cc-b6dc365c2239/project', 'institution': '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.', '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.422), 'geospatial_lat_max': np.float64(71.51), 'geospatial_lon_min': np.float64(-173.277), 'geospatial_lon_max': np.float64(-145.971), 'geospatial_bbox': 'POLYGON ((-145.971 60.422, -145.971 71.51000000000001, -173.277 71.51000000000001, -173.277 60.422, -145.971 60.422))', 'geospatial_bounds': 'POLYGON ((-171.945 60.422, -173.107 60.682, -173.114 60.684, -173.277 60.749, -167.901 68.614, -166.043 69.941, -165.914 70.02500000000001, -165.853 70.044, -164.091 70.396, -163.83 70.44499999999999, -156.861 71.488, -155.693 71.51000000000001, -155.678 71.51000000000001, -154.729 71.468, -145.971 64.71899999999999, -171.904 60.425, -171.945 60.422))', 'geospatial_bounds_crs': 'EPSG:4326', 'time_coverage_start': '2011-06-18T03:00:00Z', 'time_coverage_end': '2012-03-14T02:53:09Z', 'time_coverage_duration': 'P269DT23H53M9S', 'time_coverage_resolution': 'P0DT0H40M44S', 'date_issued': '2024-08-28T00:07:07Z', 'date_modified': '2024-08-28T00:07:07Z', 'history': '2023-11-16T21:10:35Z - Created by the IOOS ATN DAC from the Wildlife Computers API', 'summary': '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', 'title': 'Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f', 'uuid': 'f8c60e9e-cdbc-5936-86fa-a21647e7a7ad', 'platform_name': 'Erignathus barbatus', 'platform_id': '137079', 'vendor_id': '52d85570a86a2315ac16876f', 'sea_name': 'Arctic Ocean,Beaufort Sea,Bering Sea,Chukchi 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': '20240828', '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': 'bearded seal', 'animal_id': 'EB2011_3002', 'animal_scientific_name': 'Erignathus barbatus', 'deployment_id': '52d85570a86a2315ac16876f', 'deployment_start_datetime': '2011-06-18T03:07:00Z', 'deployment_end_datetime': '2012-03-14T03:00:00Z', 'wmo_platform_code': '', 'comment': 'EB2011_3002_10A0200', 'ptt_id': '38553', 'deployment_start_lat': '66.64', 'deployment_start_lon': '-163.0', 'contributor_name': 'Josh London,Michael Cameron,John Jansen,Alex Whiting', 'contributor_email': 'josh.london@noaa.gov,michael.cameron@noaa.gov,john.jansen@noaa.gov,', 'contributor_role': 'originator,author,author,author', 'contributor_institution': 'NOAA Alaska Fisheries Science Center,NOAA Alaska Fisheries Science Center,NOAA Alaska Fisheries Science Center,Native Village of Kotzebue', 'contributor_url': 'https://orcid.org/0000-0002-3647-5046,,,https://orcid.org/0000-0003-0664-490X', 'creator_role': 'principalInvestigator', 'creator_sector': 'government', 'creator_country': 'USA', 'creator_institution': 'NOAA Alaska Fisheries Science Center', 'creator_institution_url': 'https://www.fisheries.noaa.gov/alaska/marine-mammal-protection/ice-seal-research-alaska', 'citation': 'Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).', 'dataset_ipt_id': None, 'dataset_short_name': 'atn_38553_bearded-seal_trajectory_20110618-20120314', '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': 'Josh London', 'contributor_email': 'josh.london@noaa.gov', 'contributor_role': 'originator', 'contributor_institution': 'NOAA Alaska Fisheries Science Center', 'contributor_url': 'https://orcid.org/0000-0002-3647-5046'}, {'contributor_name': 'Michael Cameron', 'contributor_email': 'michael.cameron@noaa.gov', 'contributor_role': 'author', 'contributor_institution': 'NOAA Alaska Fisheries Science Center', 'contributor_url': ''}, {'contributor_name': 'John Jansen', 'contributor_email': 'john.jansen@noaa.gov', 'contributor_role': 'author', 'contributor_institution': 'NOAA Alaska Fisheries Science Center', 'contributor_url': ''}, {'contributor_name': 'Alex Whiting', 'contributor_email': '', 'contributor_role': 'author', 'contributor_institution': 'Native Village of Kotzebue', 'contributor_url': 'https://orcid.org/0000-0003-0664-490X'}], 'ncei_accession_number': '0298218', 'related_data_url': 'https://doi.org/10.24431/rw1k31x', 'related_data_citation': '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', 'ncei_title': 'Bearded seal (Erignathus barbatus) location data from satellite telemetry tag ptt 38553 deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and Chukchi Sea by the NOAA Alaska Fisheries Science Center from 2011-06-18 to 2012-03-14 (NCEI Accession 0298218)', 'filename': 'atn_38553_bearded-seal_trajectory_20110618-20120314', 'nc_globals': ""{'date_created': '2024-08-28T00:07:07Z', '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': 'Not Provided', 'creator_email': 'peter.boveng@noaa.gov', 'id': '52d85570a86a2315ac16876f', 'tag_serial': '10A0200', 'source': 'Service Argos', 'attachment': 'head', 'project': 'A Dataset from Bio-loggers Deployed on Adult Bearded Seals (Erignathus barbatus) in Kotzebue Sound, Alaska, USA, 2009-2012', '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': 'Peter Boveng', 'creator_url': 'https://orcid.org/0000-0003-2732-4833', 'geospatial_lat_units': 'degrees_north', 'geospatial_lon_units': 'degrees_east', 'infoUrl': 'https://portal.atn.ioos.us/#metadata/0ceb0cce-3602-4a4f-a5cc-b6dc365c2239/project', 'institution': '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.', '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.422), 'geospatial_lat_max': np.float64(71.51), 'geospatial_lon_min': np.float64(-173.277), 'geospatial_lon_max': np.float64(-145.971), 'geospatial_bbox': 'POLYGON ((-145.971 60.422, -145.971 71.51000000000001, -173.277 71.51000000000001, -173.277 60.422, -145.971 60.422))', 'geospatial_bounds': 'POLYGON ((-171.945 60.422, -173.107 60.682, -173.114 60.684, -173.277 60.749, -167.901 68.614, -166.043 69.941, -165.914 70.02500000000001, -165.853 70.044, -164.091 70.396, -163.83 70.44499999999999, -156.861 71.488, -155.693 71.51000000000001, -155.678 71.51000000000001, -154.729 71.468, -145.971 64.71899999999999, -171.904 60.425, -171.945 60.422))', 'geospatial_bounds_crs': 'EPSG:4326', 'time_coverage_start': '2011-06-18T03:00:00Z', 'time_coverage_end': '2012-03-14T02:53:09Z', 'time_coverage_duration': 'P269DT23H53M9S', 'time_coverage_resolution': 'P0DT0H40M44S', 'date_issued': '2024-08-28T00:07:07Z', 'date_modified': '2024-08-28T00:07:07Z', 'history': '2023-11-16T21:10:35Z - Created by the IOOS ATN DAC from the Wildlife Computers API', 'summary': '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', 'title': 'Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f', 'uuid': 'f8c60e9e-cdbc-5936-86fa-a21647e7a7ad', 'platform_name': 'Erignathus barbatus', 'platform_id': '137079', 'vendor_id': '52d85570a86a2315ac16876f', 'sea_name': 'Arctic Ocean,Beaufort Sea,Bering Sea,Chukchi 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': '20240828', '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': 'bearded seal', 'animal_id': 'EB2011_3002', 'animal_scientific_name': 'Erignathus barbatus', 'deployment_id': '52d85570a86a2315ac16876f', 'deployment_start_datetime': '2011-06-18T03:07:00Z', 'deployment_end_datetime': '2012-03-14T03:00:00Z', 'wmo_platform_code': '', 'comment': 'EB2011_3002_10A0200', 'ptt_id': '38553', 'deployment_start_lat': '66.64', 'deployment_start_lon': '-163.0', 'contributor_name': 'Josh London,Michael Cameron,John Jansen,Alex Whiting', 'contributor_email': 'josh.london@noaa.gov,michael.cameron@noaa.gov,john.jansen@noaa.gov,', 'contributor_role': 'originator,author,author,author', 'contributor_institution': 'NOAA Alaska Fisheries Science Center,NOAA Alaska Fisheries Science Center,NOAA Alaska Fisheries Science Center,Native Village of Kotzebue', 'contributor_url': 'https://orcid.org/0000-0002-3647-5046,,,https://orcid.org/0000-0003-0664-490X', 'creator_role': 'principalInvestigator', 'creator_sector': 'government', 'creator_country': 'USA', 'creator_institution': 'NOAA Alaska Fisheries Science Center', 'creator_institution_url': 'https://www.fisheries.noaa.gov/alaska/marine-mammal-protection/ice-seal-research-alaska', 'citation': 'Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).'}"", 'manufacturer': 'Wildlife Computers', 'make_model': 'SPLASH10', 'serial_number': '10A0200', '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_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..65153af --- /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; https://www.ncei.noaa.gov/archive/accession/0298218; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. For 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,first of 2 records for this hour.,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,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; https://doi.org/10.24431/rw1k31x,1500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,500,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (ATN).",This is a representative occurrence from a full deployment. 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; https://doi.org/10.24431/rw1k31x,10000,0.0,0.0,,"Boveng, Peter; London, Josh; Cameron, Michael; Jansen, John; Whiting, Alex. (2024). Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f. [Dataset]. US Integrated Ocean Observing System (IOOS) Animal Telemetry Network (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 new file mode 100644 index 0000000..8a32f49 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/eml.xml @@ -0,0 +1,376 @@ + + + + https://ipt-obis.gbif.us/resource?r=atn_38553_bearded-seal_trajectory_20110618-20120314 + https://doi.org/10.25921/wp4e-ph20 + https://www.ncei.noaa.gov/archive/accession/0298218 + https://doi.org/10.24431/rw1k31x + Bearded seal (Erignathus barbatus) location data from a satellite telemetry tag (ptt id 38553) deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and the Chukchi Sea from 2011-06-18 to 2012-03-14, deployment id 52d85570a86a2315ac16876f + + + Megan + McKinzie + + U.S. Animal Telemetry Network (ATN) + Data Manager +
+ U.S. Integrated Ocean Observing System + Silver Spring + Maryland + 20910 + US +
+ + mmckinzie@mbari.org + https://atn.ioos.us/ +
+ + + Josh + London + + NOAA Alaska Fisheries Science Center + josh.london@noaa.gov + https://orcid.org/0000-0002-3647-5046 + + + + + + Michael + Cameron + + 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 +
+ atndata@ioos.us + https://atn.ioos.us +
+ + + + + Josh + London + + NOAA Alaska Fisheries Science Center + josh.london@noaa.gov + https://orcid.org/0000-0002-3647-5046 + originator + + + + + Michael + Cameron + + NOAA Alaska Fisheries Science Center + michael.cameron@noaa.gov + + author + + + + + John + Jansen + + NOAA Alaska Fisheries Science Center + john.jansen@noaa.gov + + author + + + + + Alex + 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 + + 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 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/0298218. 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 + + + + + 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 + + GCMD Science Keywords v15.1 + + + + ATN + + Animal Telemetry Network + + IOOS + + Integrated Ocean Observing System + + trajectory + + satellite telemetry tag + + arbitrary keywords + + + + 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. + +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. + + + + 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-18 + + + 2012-03-14 + + + + + + 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 + + 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 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. + + + + + + + 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 + + principal investigator + + 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 + + + + + Bearded seal (Erignathus barbatus) location data from satellite telemetry tag ptt 38553 deployed in the Arctic Ocean, Beaufort Sea, Bering Sea, and Chukchi Sea by the NOAA Alaska Fisheries Science Center from 2011-06-18 to 2012-03-14 (NCEI Accession 0298218) + ASCII + + + HTM + + + + + https://www.ncei.noaa.gov/archive/accession/0298218 + + + + + 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 + + + + + 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 + ASCII + + + HTM + + + + + https://doi.org/10.24431/rw1k31x + + + + + + +
\ No newline at end of file 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 new file mode 100644 index 0000000..cdcc046 --- /dev/null +++ b/datasets/atn_satellite_telemetry/data/dwc/atn_38553_bearded-seal_trajectory_20110618-20120314/meta.xml @@ -0,0 +1,58 @@ + + + + atn_38553_bearded-seal_trajectory_20110618-20120314_event.csv + + + + + + + + + + + + + + + atn_38553_bearded-seal_trajectory_20110618-20120314_occurrence.csv + + + + + + + + + + + + + + + + + + + + + + + + + + + + atn_38553_bearded-seal_trajectory_20110618-20120314_emof.csv + + + + + + + + + + + \ 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..d7f5082 --- /dev/null +++ b/datasets/atn_satellite_telemetry/templates/eml.xml.j2 @@ -0,0 +1,290 @@ + + + + https://ipt-obis.gbif.us/resource?r={{ dataset_short_name }} + https://doi.org/10.25921/wp4e-ph20 + https://www.ncei.noaa.gov/archive/accession/{{ ncei_accession_number }} + {{ related_data_url }} + {{ title }} + + + {{ data_manager_firstname }} + {{ data_manager_lastname }} + + U.S. Animal Telemetry Network (ATN) + {{ data_manager_title }} +
+ U.S. Integrated Ocean Observing System + Silver Spring + Maryland + 20910 + US +
+ {{ data_manager_phone }} + {{ data_manager_email }} + https://atn.ioos.us/ +
+ +{%- for party in contributors %} + + + {{ party.contributor_name.split(" ")[0] }} + {{ party.contributor_name.split(" ")[-1] }} + + {{ party.contributor_institution }}{% if party.contributor_email %} + {{ party.contributor_email }}{% endif %} + {{ party.contributor_url }} + + +{% endfor %} + + + + {{ publisher_name }} + Animal Telemetry Network +
+ {{ publisher_country }} +
+ {{ publisher_email }} + {{ publisher_url }} +
+ + + +{%- for party in contributors %} + + + {{ party.contributor_name.split(" ")[0] }} + {{ party.contributor_name.split(" ")[-1] }} + + {{ 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 + + This is the OBIS extraction of {{ title }} 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/{{ ncei_accession_number }}. 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 + + + +{% for keyword in keywords.split(", ")%} + {{ keyword }} +{% endfor %} + {{ keywords_vocabulary }} + + +{% for keyword in arbitrary_keywords.split(", ")%} + {{ keyword }} +{% endfor %} + arbitrary keywords + + + + 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. + +{{ license }} + + + + 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.split("T")[0] }} + + + {{ time_coverage_end.split("T")[0] }} + + + + + + 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.split(" ")[0] }} + {{ creator_name.split(" ")[-1] }} + + {{ 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 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 {%if serial_number %}(serial number: {{ serial_number }}){% endif %} attached to {{ animal_common_name }}{%if attachment %} on {{ attachment }}{% endif %}. + + + + + + + {{ project }} + + + + {{ summary }} + + + + + {{ processing_level }} + + + + + {{ project }} + + + {{ creator_name.split(" ")[0] }} + {{ creator_name.split(" ")[-1] }} + + {{ creator_role|replace('I',' i') }} + + {{ project }} + + +
+ + + + {{ date_created }} + dataset + {{ citation }} Accessed via the OBIS-USA IPT on INSERT DATE + + {{ citation}} + + + {{ project }} + ASCII + + + HTM + + + + + {{ infoUrl }} + + + + + {{ ncei_title }} + ASCII + + + HTM + + + + + https://www.ncei.noaa.gov/archive/accession/{{ ncei_accession_number }} + + + + + 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 + + + + + {{ related_data_citation }} + ASCII + + + HTM + + + + + {{ related_data_url }} + + + + + + +
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..9f05b49 --- /dev/null +++ b/datasets/atn_satellite_telemetry/templates/meta.xml.j2 @@ -0,0 +1,23 @@ + + + + {{ event_filename.split("\\")[-1] }} + + {% for event_colname in event_cols_list %} + {% endfor %} + + + + {{ occurrence_filename.split("\\")[-1] }} + + {% for colname in cols_list %}{%if colname !='eventID' %} + {% endif %}{% endfor %} + {% if emof_filename %} + + + {{ emof_filename.split("\\")[-1] }} + + {% for emof_colname in emof_cols_list %}{% if emof_colname != 'eventID' %} + {% endif %}{% endfor %} + {% endif %} +