From 9463b34e08f0c95b592df3e0c486a50439d5cd35 Mon Sep 17 00:00:00 2001 From: niallmurphy93 Date: Fri, 18 Oct 2024 13:50:07 +0100 Subject: [PATCH] Review OSPAR dataset to identify unique compound_idx. Include _temp_compund_idx.ipynb --- nbs/handlers/_temp_compound_idx.ipynb | 3344 +++++++++++++++++++++++++ 1 file changed, 3344 insertions(+) create mode 100644 nbs/handlers/_temp_compound_idx.ipynb diff --git a/nbs/handlers/_temp_compound_idx.ipynb b/nbs/handlers/_temp_compound_idx.ipynb new file mode 100644 index 0000000..deaa8a0 --- /dev/null +++ b/nbs/handlers/_temp_compound_idx.ipynb @@ -0,0 +1,3344 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Defining compound_idx. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In many MARIS handlers, a pivot from long to wideformat is required. For this pivot, a compound_idx is used. \n", + "Currently, the compound_idx is determined by combining the folowing: \n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Currently duplicaiton of the compound_idx will be found in the following situations:\n", + "\n", + "1) in geotraces when we have the same (e.g for seawater) lon, lat, time, smp_depth for several nuclides measurement in a given rosette (at least that's what I understand);\n", + "2) in OSPAR sediment when we have records where top, bottom is NaN for a given lon, lat, time. In that case our compound index would be (lon, lat, time, top, bottom);\n", + "3) In situations where a nuclide is measured for a sample using more than one method (e.g. Am241 normaly measured by alpha and gamma spectrometry). \n", + "4) Im situations where rapid analysis and detailed analysis is reported\n", + "5) In a situation where a sample is collected and split into two or more sub-samples. For this sample the compound index would be the same. Sometimes this type of sample is sent to several laboratories. \n" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "from pathlib import Path " + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": {}, + "outputs": [], + "source": [ + "from marisco.handlers.helcom import load_data as helcom_load_data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Load OSPAR data" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "metadata": {}, + "outputs": [], + "source": [ + "default_smp_types = {'Seawater data': 'seawater', 'Biota data': 'biota'}\n", + "def ospar_load_data(src_dir:str, # Directory where the source CSV files are located\n", + " lut:dict=default_smp_types # A dictionary with the file name as key and the sample type as value\n", + " ) -> dict: # A dictionary with sample types as keys and their corresponding dataframes as values\n", + " \"Load `OSPAR` data and return the data in a dictionary of dataframes with the dictionary key as the sample type.\"\n", + " return {\n", + " sample_type: pd.read_csv(Path(src_dir) / f'{file_name}.csv', encoding='unicode_escape')\n", + " for file_name, sample_type in lut.items()\n", + " }" + ] + }, + { + "cell_type": "code", + "execution_count": 89, + "metadata": {}, + "outputs": [], + "source": [ + "ospar_fname_in = '../../_data/accdb/ospar/csv'" + ] + }, + { + "cell_type": "code", + "execution_count": 90, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "keys/sample types: dict_keys(['seawater', 'biota'])\n", + "seawater columns: Index(['ID', 'Contracting Party', 'RSC Sub-division', 'Station ID',\n", + " 'Sample ID', 'LatD', 'LatM', 'LatS', 'LatDir', 'LongD', 'LongM',\n", + " 'LongS', 'LongDir', 'Sample type', 'Sampling depth', 'Sampling date',\n", + " 'Nuclide', 'Value type', 'Activity or MDA', 'Uncertainty', 'Unit',\n", + " 'Data provider', 'Measurement Comment', 'Sample Comment',\n", + " 'Reference Comment'],\n", + " dtype='object')\n", + "biota columns: Index(['ID', 'Contracting Party', 'RSC Sub-division', 'Station ID',\n", + " 'Sample ID', 'LatD', 'LatM', 'LatS', 'LatDir', 'LongD', 'LongM',\n", + " 'LongS', 'LongDir', 'Sample type', 'Biological group', 'Species',\n", + " 'Body Part', 'Sampling date', 'Nuclide', 'Value type',\n", + " 'Activity or MDA', 'Uncertainty', 'Unit', 'Data provider',\n", + " 'Measurement Comment', 'Sample Comment', 'Reference Comment'],\n", + " dtype='object')\n" + ] + } + ], + "source": [ + "#| eval: false\n", + "ospar_dfs = ospar_load_data(ospar_fname_in)\n", + "\n", + "print('keys/sample types: ', ospar_dfs.keys())\n", + "\n", + "for key in ospar_dfs.keys():\n", + " print(f'{key} columns: ', ospar_dfs[key].columns)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Size of dataframe:" + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(15314, 27)" + ] + }, + "execution_count": 91, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ospar_dfs['biota'].shape" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(18856, 25)" + ] + }, + "execution_count": 92, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ospar_dfs['seawater'].shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Review of the duplicate compound_idx for OSPAR data\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Duplicates of data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The OAPR dataset includes a unique 'ID' for each row, lets check that each row is unique." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Number of duplicated rows in the biota dataframe;" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ospar_dfs['biota'].duplicated().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Number of duplicated rows in the seawater dataframe;\n" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ospar_dfs['seawater'].duplicated().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are no duplicated rows in the biota or seawater dataframe, each row is unique. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Review of the compound index ( BIOTA )" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "First, focusing on the biota dataframe. Lets look at the columns of the biota dataframe:" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "metadata": {}, + "outputs": [], + "source": [ + "grp='biota'" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['ID', 'Contracting Party', 'RSC Sub-division', 'Station ID',\n", + " 'Sample ID', 'LatD', 'LatM', 'LatS', 'LatDir', 'LongD', 'LongM',\n", + " 'LongS', 'LongDir', 'Sample type', 'Biological group', 'Species',\n", + " 'Body Part', 'Sampling date', 'Nuclide', 'Value type',\n", + " 'Activity or MDA', 'Uncertainty', 'Unit', 'Data provider',\n", + " 'Measurement Comment', 'Sample Comment', 'Reference Comment'],\n", + " dtype='object')" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ospar_dfs[grp].columns" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lets looks where the combined 'Sample ID' and 'Nuclide' are duplicated." + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD \\\n", + "4 96857 United Kingdom 10 Torness 2100074 55 \n", + "8 95781 Denmark 9 Agger Tange 20210688 56 \n", + "9 95785 Denmark 9 Hvide Sande 20210683 56 \n", + "88 96109 Netherlands 9 BOCHTVWTM NaN 53 \n", + "89 96110 Netherlands 9 BOCHTVWTM NaN 53 \n", + "... ... ... ... ... ... ... \n", + "15283 49399 Ireland 4 Bull Island NaN 53 \n", + "15310 48606 France 2 Granville NaN 48 \n", + "15311 48634 France 2 Granville NaN 48 \n", + "15312 48650 France 2 Dielette NaN 49 \n", + "15313 48610 France 2 Goury NaN 49 \n", + "\n", + " LatM LatS LatDir LongD ... Sampling date Nuclide Value type \\\n", + "4 57 53.0 N 2 ... 31/12/2021 99Tc = \n", + "8 43 0.0 N 8 ... 17/12/2021 137Cs = \n", + "9 0 0.0 N 8 ... 17/12/2021 137Cs = \n", + "88 25 2.0 N 6 ... 07/10/2021 137Cs < \n", + "89 25 2.0 N 6 ... 07/10/2021 226Ra < \n", + "... ... ... ... ... ... ... ... ... \n", + "15283 21 7.0 N 6 ... 15/01/1995 137Cs = \n", + "15310 49 58.0 N 1 ... 03/01/1995 239,240Pu = \n", + "15311 49 58.0 N 1 ... 03/01/1995 137Cs = \n", + "15312 33 6.0 N 1 ... 03/01/1995 137Cs = \n", + "15313 42 52.0 N 1 ... 01/01/1995 99Tc = \n", + "\n", + " Activity or MDA Uncertainty Unit \\\n", + "4 16.0000 6.000000 Bq/kg f.w. \n", + "8 0.0258 NaN Bq/kg fw \n", + "9 0.0720 0.005832 Bq/kg fw \n", + "88 0.2000 NaN Bq/kg f.w. \n", + "89 1.8000 NaN Bq/kg f.w. \n", + "... ... ... ... \n", + "15283 1.3800 0.072968 Bq/kg f.w. \n", + "15310 0.0180 0.001530 Bq/kg f.w. \n", + "15311 0.2100 0.034650 Bq/kg f.w. \n", + "15312 0.5600 0.035000 Bq/kg f.w. \n", + "15313 17.1560 0.247000 Bq/kg f.w. \n", + "\n", + " Data provider Measurement Comment \\\n", + "4 SEPA-Scottish Environment Protection Agency NaN \n", + "8 DTU SUS NaN \n", + "9 DTU SUS NaN \n", + "88 Rijkswaterstaat Laboratory CIV NaN \n", + "89 Rijkswaterstaat Laboratory CIV NaN \n", + "... ... ... \n", + "15283 Radiological Protection Institute of Ireland NaN \n", + "15310 IRSN : OPRI NaN \n", + "15311 IRSN : OPRI NaN \n", + "15312 IRSN : LERFA NaN \n", + "15313 IRSN : LERFA NaN \n", + "\n", + " Sample Comment Reference Comment \n", + "4 Thornton Loch. Annual bulk of 2 samples, repre... NaN \n", + "8 NaN NaN \n", + "9 NaN NaN \n", + "88 NaN NaN \n", + "89 NaN NaN \n", + "... ... ... \n", + "15283 Representative sample date - mid month NaN \n", + "15310 NaN NaN \n", + "15311 NaN NaN \n", + "15312 NaN NaN \n", + "15313 NaN NaN \n", + "\n", + "[5833 rows x 27 columns]\n" + ] + } + ], + "source": [ + "ospar_dfs_sampleId_nuclide_df=ospar_dfs[grp][ospar_dfs[grp][['Sample ID','Nuclide']].duplicated(keep=False)]\n", + "print(ospar_dfs_sampleId_nuclide_df)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How many 'Nan' sample id? " + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "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", + "
IDContracting PartyRSC Sub-divisionStation IDSample IDLatDLatMLatSLatDirLongD...Sampling dateNuclideValue typeActivity or MDAUncertaintyUnitData providerMeasurement CommentSample CommentReference Comment
8896109Netherlands9BOCHTVWTMNaN53252.0N6...07/10/2021137Cs<0.200NaNBq/kg f.w.Rijkswaterstaat Laboratory CIVNaNNaNNaN
8996110Netherlands9BOCHTVWTMNaN53252.0N6...07/10/2021226Ra<1.800NaNBq/kg f.w.Rijkswaterstaat Laboratory CIVNaNNaNNaN
9096111Netherlands9BOCHTVWTMNaN53252.0N6...07/10/2021210Pb<1.000NaNBq/kg f.w.Rijkswaterstaat Laboratory CIVNaNNaNNaN
9196112Netherlands9BOCHTVWTMNaN53252.0N6...07/10/2021137Cs<0.200NaNBq/kg f.w.Rijkswaterstaat Laboratory CIVNaNNaNNaN
9296113Netherlands9BOCHTVWTMNaN53252.0N6...07/10/2021226Ra<1.800NaNBq/kg f.w.Rijkswaterstaat Laboratory CIVNaNNaNNaN
..................................................................
1528349399Ireland4Bull IslandNaN53217.0N6...15/01/1995137Cs=1.3800.072968Bq/kg f.w.Radiological Protection Institute of IrelandNaNRepresentative sample date - mid monthNaN
1531048606France2GranvilleNaN484958.0N1...03/01/1995239,240Pu=0.0180.001530Bq/kg f.w.IRSN : OPRINaNNaNNaN
1531148634France2GranvilleNaN484958.0N1...03/01/1995137Cs=0.2100.034650Bq/kg f.w.IRSN : OPRINaNNaNNaN
1531248650France2DieletteNaN49336.0N1...03/01/1995137Cs=0.5600.035000Bq/kg f.w.IRSN : LERFANaNNaNNaN
1531348610France2GouryNaN494252.0N1...01/01/199599Tc=17.1560.247000Bq/kg f.w.IRSN : LERFANaNNaNNaN
\n", + "

5483 rows × 27 columns

\n", + "
" + ], + "text/plain": [ + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD \\\n", + "88 96109 Netherlands 9 BOCHTVWTM NaN 53 \n", + "89 96110 Netherlands 9 BOCHTVWTM NaN 53 \n", + "90 96111 Netherlands 9 BOCHTVWTM NaN 53 \n", + "91 96112 Netherlands 9 BOCHTVWTM NaN 53 \n", + "92 96113 Netherlands 9 BOCHTVWTM NaN 53 \n", + "... ... ... ... ... ... ... \n", + "15283 49399 Ireland 4 Bull Island NaN 53 \n", + "15310 48606 France 2 Granville NaN 48 \n", + "15311 48634 France 2 Granville NaN 48 \n", + "15312 48650 France 2 Dielette NaN 49 \n", + "15313 48610 France 2 Goury NaN 49 \n", + "\n", + " LatM LatS LatDir LongD ... Sampling date Nuclide Value type \\\n", + "88 25 2.0 N 6 ... 07/10/2021 137Cs < \n", + "89 25 2.0 N 6 ... 07/10/2021 226Ra < \n", + "90 25 2.0 N 6 ... 07/10/2021 210Pb < \n", + "91 25 2.0 N 6 ... 07/10/2021 137Cs < \n", + "92 25 2.0 N 6 ... 07/10/2021 226Ra < \n", + "... ... ... ... ... ... ... ... ... \n", + "15283 21 7.0 N 6 ... 15/01/1995 137Cs = \n", + "15310 49 58.0 N 1 ... 03/01/1995 239,240Pu = \n", + "15311 49 58.0 N 1 ... 03/01/1995 137Cs = \n", + "15312 33 6.0 N 1 ... 03/01/1995 137Cs = \n", + "15313 42 52.0 N 1 ... 01/01/1995 99Tc = \n", + "\n", + " Activity or MDA Uncertainty Unit \\\n", + "88 0.200 NaN Bq/kg f.w. \n", + "89 1.800 NaN Bq/kg f.w. \n", + "90 1.000 NaN Bq/kg f.w. \n", + "91 0.200 NaN Bq/kg f.w. \n", + "92 1.800 NaN Bq/kg f.w. \n", + "... ... ... ... \n", + "15283 1.380 0.072968 Bq/kg f.w. \n", + "15310 0.018 0.001530 Bq/kg f.w. \n", + "15311 0.210 0.034650 Bq/kg f.w. \n", + "15312 0.560 0.035000 Bq/kg f.w. \n", + "15313 17.156 0.247000 Bq/kg f.w. \n", + "\n", + " Data provider Measurement Comment \\\n", + "88 Rijkswaterstaat Laboratory CIV NaN \n", + "89 Rijkswaterstaat Laboratory CIV NaN \n", + "90 Rijkswaterstaat Laboratory CIV NaN \n", + "91 Rijkswaterstaat Laboratory CIV NaN \n", + "92 Rijkswaterstaat Laboratory CIV NaN \n", + "... ... ... \n", + "15283 Radiological Protection Institute of Ireland NaN \n", + "15310 IRSN : OPRI NaN \n", + "15311 IRSN : OPRI NaN \n", + "15312 IRSN : LERFA NaN \n", + "15313 IRSN : LERFA NaN \n", + "\n", + " Sample Comment Reference Comment \n", + "88 NaN NaN \n", + "89 NaN NaN \n", + "90 NaN NaN \n", + "91 NaN NaN \n", + "92 NaN NaN \n", + "... ... ... \n", + "15283 Representative sample date - mid month NaN \n", + "15310 NaN NaN \n", + "15311 NaN NaN \n", + "15312 NaN NaN \n", + "15313 NaN NaN \n", + "\n", + "[5483 rows x 27 columns]" + ] + }, + "execution_count": 98, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nan_sample_id_rows = ospar_dfs[grp][ospar_dfs[grp]['Sample ID'].isna()]\n", + "nan_sample_id_rows" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are 175 rows where the sample_id is duplicated (and not nan).\n", + "- Number of duplicate rows that are not nan : 5833 - 5483 = 350\n", + "- Number of 'Sample ID' with a duplicate: 350 / 2 = 175\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Can we find a unique compound_idx for OSPAR Biota?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Rows where the lat/long and sampling date are the same;" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "6555" + ] + }, + "execution_count": 99, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "compound_idx =['LatD', 'LatM', 'LatS', 'LatDir', 'LongD', 'LongM',\n", + " 'LongS', 'LongDir', 'Sampling date']\n", + "ospar_dfs[grp][compound_idx].duplicated().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Rows where the lat/long, sampling date, biologocal group, species and body part are the same;" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "5454" + ] + }, + "execution_count": 100, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "compound_idx =['LatD', 'LatM', 'LatS', 'LatDir', 'LongD', 'LongM',\n", + " 'LongS', 'LongDir', 'Sampling date','Biological group', 'Species',\n", + " 'Body Part']\n", + "ospar_dfs[grp][compound_idx].duplicated().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "A large amount of OSPAR data include the same position, time and biological infromation, below we will include the 'Sample ID' in the compound index. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Rows where the lat/long, sampling date, biologocal group, species, body part, nuclide and sample ID are the same;" + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of duplicated rows: 338\n", + "\n", + "Grouped identical rows with full compound index:\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "83342 France 2 Goury 201625023 49 42 52.0 N 1 56 46.0 W BIOT Molluscs PATELLA SOFT PARTS 07/06/2016 239,240Pu = 0.004678 0.00016 Bq/kg f.w. Institut de Radioprotection et Sûreté Nucléaire : LRC/LMRE NaN NaN NaN\n", + "83344 France 2 Goury 201625023 49 42 52.0 N 1 56 46.0 W BIOT Molluscs PATELLA SOFT PARTS 07/06/2016 239,240Pu = 0.004678 0.00016 Bq/kg f.w. Institut de Radioprotection et Sûreté Nucléaire : LRC/LMRE NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52624 Ireland 1 Kilmore Quay ES1100561 52 9 55.0 N 6 35 36.0 W BIOT Fish Gadus morhua FLESH WITHOUT BONES 08/06/2011 137Cs = 0.204127 0.009951 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87909 Ireland 1 Kilmore Quay ES1100561 52 9 55.0 N 6 35 36.0 W BIOT Fish Gadus morhua FLESH WITHOUT BONES 08/06/2011 137Cs = 0.204127 0.009951 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52626 Ireland 1 Kilmore Quay ES1100564 52 9 55.0 N 6 35 36.0 W BIOT Fish Melanogrammus aeglefinus FLESH WITHOUT BONES 08/06/2011 137Cs = 0.079172 0.004232 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87911 Ireland 1 Kilmore Quay ES1100564 52 9 55.0 N 6 35 36.0 W BIOT Fish Melanogrammus aeglefinus FLESH WITHOUT BONES 08/06/2011 137Cs = 0.079172 0.004232 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52627 Ireland 1 Kilmore Quay ES1100563 52 9 55.0 N 6 35 36.0 W BIOT Fish Pleuronectes platessa FLESH WITHOUT BONES 08/06/2011 137Cs = 0.093507 0.003974 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87912 Ireland 1 Kilmore Quay ES1100563 52 9 55.0 N 6 35 36.0 W BIOT Fish Pleuronectes platessa FLESH WITHOUT BONES 08/06/2011 137Cs = 0.093507 0.003974 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "91585 United Kingdom 6 Sellafield 1995001155 54 29 20.0 N 3 36 25.0 W BIOT Seaweed FUCUS VESICULOSUS GROWING TIPS 19/01/1995 137Cs = 9.325 0.066 Bq/kg f.w. FSA-Food Standards Agency NaN St Bees W NaN\n", + "91586 United Kingdom 6 Sellafield 1995001155 54 29 20.0 N 3 36 25.0 W BIOT Seaweed FUCUS VESICULOSUS GROWING TIPS 19/01/1995 137Cs = 9.551 0.439 Bq/kg f.w. FSA-Food Standards Agency NaN St Bees W NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52628 Ireland 1 Killybegs ES1100579 54 37 58.0 N 8 26 6.0 W BIOT Fish Gadus morhua FLESH WITHOUT BONES 14/06/2011 137Cs = 0.083026 0.006779 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87913 Ireland 1 Killybegs ES1100579 54 37 58.0 N 8 26 6.0 W BIOT Fish Gadus morhua FLESH WITHOUT BONES 14/06/2011 137Cs = 0.083026 0.006779 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52629 Ireland 1 Killybegs ES1100583 54 37 58.0 N 8 26 6.0 W BIOT Fish Melanogrammus aeglefinus FLESH WITHOUT BONES 14/06/2011 137Cs = 0.099574 0.006141 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87917 Ireland 1 Killybegs ES1100583 54 37 58.0 N 8 26 6.0 W BIOT Fish Melanogrammus aeglefinus FLESH WITHOUT BONES 14/06/2011 137Cs = 0.099574 0.006141 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52630 Ireland 1 Killybegs ES1100580 54 37 58.0 N 8 26 6.0 W BIOT Fish Pleuronectes platessa FLESH WITHOUT BONES 14/06/2011 137Cs = 0.056632 0.005097 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87914 Ireland 1 Killybegs ES1100580 54 37 58.0 N 8 26 6.0 W BIOT Fish Pleuronectes platessa FLESH WITHOUT BONES 14/06/2011 137Cs = 0.056632 0.005097 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52631 Ireland 1 Killybegs ES1100581 54 37 58.0 N 8 26 6.0 W BIOT Fish Scomber scombrus FLESH WITHOUT BONES 14/06/2011 137Cs = 0.157676 0.007824 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87915 Ireland 1 Killybegs ES1100581 54 37 58.0 N 8 26 6.0 W BIOT Fish Scomber scombrus FLESH WITHOUT BONES 14/06/2011 137Cs = 0.157676 0.007824 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "69544 Iceland 15 Vestmannaeyjar THVES03F 63 24 37.0 N 20 16 59.0 W BIOT SEAWEED Fucus vesiculosus WHOLE PLANT 26/06/2003 99Tc = 6.491417 0.649142 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "69545 Iceland 15 Vestmannaeyjar THVES03F 63 24 37.0 N 20 16 59.0 W BIOT SEAWEED Fucus vesiculosus WHOLE PLANT 26/06/2003 99Tc = 4.824595 0.482459 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "69522 Iceland 15 Faskrudsfjordur THFAS02G 64 52 34.0 N 13 46 10.0 W BIOT SEAWEED ASCOPHYLLUM NODOSUM WHOLE PLANT 27/06/2002 99Tc = 38.309614 3.830961 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "69523 Iceland 15 Faskrudsfjordur THFAS02G 64 52 34.0 N 13 46 10.0 W BIOT SEAWEED ASCOPHYLLUM NODOSUM WHOLE PLANT 27/06/2002 99Tc = 38.580404 3.858040 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "69440 Iceland 15 Faskrudsfjordur THFAS99L 64 54 33.0 N 13 55 58.0 W BIOT SEAWEED ASCOPHYLLUM NODOSUM WHOLE PLANT 28/12/1999 99Tc = 34.358767 3.435877 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "69441 Iceland 15 Faskrudsfjordur THFAS99L 64 54 33.0 N 13 55 58.0 W BIOT SEAWEED ASCOPHYLLUM NODOSUM WHOLE PLANT 28/12/1999 99Tc = 48.517247 4.851725 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "Count: 2\n", + "\n", + "Grouped identical rows without 'Sample ID':\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "91662 Spain 1 Cabo Ajo NaN 43 38 4.0 N 3 34 41.0 W BIOT Fish Thunnus sp. FLESH WITHOUT BONES 12/12/2019 226Ra = 0.1541 0.030555 Bq/kg f.w. Nuclear Safety Council Gamma spectrometry NaN NaN\n", + "91663 Spain 1 Cabo Ajo NaN 43 38 4.0 N 3 34 41.0 W BIOT Fish Thunnus sp. FLESH WITHOUT BONES 12/12/2019 226Ra = 0.3796 0.029670 Bq/kg f.w. Nuclear Safety Council Radiochemical technique NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "91660 Spain 1 Cabo Ajo NaN 43 38 4.0 N 3 34 41.0 W BIOT Seaweed Unknown WHOLE PLANT 12/12/2019 226Ra = 0.5453 0.04976 Bq/kg f.w. Nuclear Safety Council Gamma spectrometry Mixture of green, red and brown algae NaN\n", + "91661 Spain 1 Cabo Ajo NaN 43 38 4.0 N 3 34 41.0 W BIOT Seaweed Unknown WHOLE PLANT 12/12/2019 226Ra = 11.5600 0.76000 Bq/kg f.w. Nuclear Safety Council Radiochemical technique Mixture of green, red and brown algae NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "47847 France 2 Granville NaN 48 49 58.0 N 1 35 29.0 W BIOT Molluscs Patella sp. SOFT PARTS 12/11/1996 239,240Pu = 0.0075 0.000562 Bq/kg f.w. IRSN : OPRI-LVRE NaN NaN NaN\n", + "48010 France 2 Granville NaN 48 49 58.0 N 1 35 29.0 W BIOT Molluscs Patella sp. SOFT PARTS 12/11/1996 239,240Pu = 0.0150 0.002175 Bq/kg f.w. IRSN : OPRI-LVRE NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "65315 France 3 Luc-sur-mer NaN 49 19 6.0 N 0 20 48.0 W BIOT Seaweed FUCUS SERRATUS WHOLE PLANT 13/03/2006 137Cs = 0.043388 0.009725 Bq/kg f.w. IRSN : LRC NaN NaN NaN\n", + "65319 France 3 Wimereux NaN 49 19 6.0 N 0 20 48.0 W BIOT Seaweed FUCUS SERRATUS WHOLE PLANT 13/03/2006 137Cs = 0.052372 0.010137 Bq/kg f.w. IRSN : LRC NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "64877 France 3 LUC-SUR-MER NaN 49 19 6.0 N 0 20 48.0 W BIOT SEAWEED FUCUS SERRATUS WHOLE PLANT 14/03/2005 137Cs = 0.08 0.01 Bq/kg f.w. IRSN : LRC NaN NaN NaN\n", + "64881 France 3 WIMEREUX NaN 49 19 6.0 N 0 20 48.0 W BIOT SEAWEED FUCUS SERRATUS WHOLE PLANT 14/03/2005 137Cs = 0.06 0.01 Bq/kg f.w. IRSN : LRC NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "47944 France 2 Barneville-Carteret NaN 49 21 56.0 N 1 46 18.0 W BIOT Seaweed Fucus serratus WHOLE PLANT 10/01/1997 137Cs < 0.0375 NaN Bq/kg f.w. IRSN : OPRI-LVRE NaN NaN NaN\n", + "47977 France 2 Barneville-Carteret NaN 49 21 56.0 N 1 46 18.0 W BIOT Seaweed Fucus serratus WHOLE PLANT 10/01/1997 137Cs < 0.0600 NaN Bq/kg f.w. IRSN : LERFA NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "48481 France 2 Herquemoulin NaN 49 21 56.0 N 1 46 18.0 W BIOT Seaweed Fucus serratus WHOLE PLANT 17/09/2001 137Cs = 0.13 0.015 Bq/kg f.w. IRSN : OPRI-LVRE NaN NaN NaN\n", + "48493 France 2 Barneville-Carteret NaN 49 21 56.0 N 1 46 18.0 W BIOT Seaweed Fucus serratus WHOLE PLANT 17/09/2001 137Cs = 0.08 0.010 Bq/kg f.w. IRSN : LERFA NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "48250 France 2 Sciotot NaN 49 30 31.0 N 1 51 6.0 W BIOT Seaweed Fucus serratus WHOLE PLANT 12/08/1999 137Cs < 0.090 NaN Bq/kg f.w. IRSN : OPRI-LVRE NaN NaN NaN\n", + "48254 France 2 Barneville-Carteret NaN 49 30 31.0 N 1 51 6.0 W BIOT Seaweed Fucus serratus WHOLE PLANT 12/08/1999 137Cs < 0.215 NaN Bq/kg f.w. IRSN : OPRI-LVRE NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "47934 France 2 Moulinets NaN 49 30 31.0 N 1 51 6.0 W BIOT Seaweed Fucus serratus WHOLE PLANT 18/09/1997 137Cs < 0.45 NaN Bq/kg f.w. IRSN : OPRI-LVRE NaN NaN NaN\n", + "47935 France 2 Moulinets NaN 49 30 31.0 N 1 51 6.0 W BIOT Seaweed Fucus serratus WHOLE PLANT 18/09/1997 137Cs = 0.19 0.04655 Bq/kg f.w. IRSN : OPRI-LVRE NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "48473 France 2 Barneville-Carteret NaN 49 30 31.0 N 1 51 6.0 W BIOT Seaweed Fucus serratus WHOLE PLANT 18/10/2001 137Cs < 0.095 NaN Bq/kg f.w. IRSN : OPRI-LVRE NaN NaN NaN\n", + "48474 France 2 Barneville-Carteret NaN 49 30 31.0 N 1 51 6.0 W BIOT Seaweed Fucus serratus WHOLE PLANT 18/10/2001 137Cs < 0.130 NaN Bq/kg f.w. IRSN : OPRI-LVRE NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "83342 France 2 Goury 201625023 49 42 52.0 N 1 56 46.0 W BIOT Molluscs PATELLA SOFT PARTS 07/06/2016 239,240Pu = 0.004678 0.00016 Bq/kg f.w. Institut de Radioprotection et Sûreté Nucléaire : LRC/LMRE NaN NaN NaN\n", + "83344 France 2 Goury 201625023 49 42 52.0 N 1 56 46.0 W BIOT Molluscs PATELLA SOFT PARTS 07/06/2016 239,240Pu = 0.004678 0.00016 Bq/kg f.w. Institut de Radioprotection et Sûreté Nucléaire : LRC/LMRE NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "93846 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/09/2020 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93849 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/09/2020 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93852 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/09/2020 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "93848 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/09/2020 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93851 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/09/2020 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93854 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/09/2020 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "93847 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/09/2020 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93850 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/09/2020 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93853 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/09/2020 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "93855 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/09/2020 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93858 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/09/2020 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93861 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/09/2020 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "93857 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/09/2020 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93860 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/09/2020 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93863 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/09/2020 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "93856 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/09/2020 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93859 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/09/2020 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93862 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/09/2020 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89343 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 14/11/2019 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89346 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 14/11/2019 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89349 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 14/11/2019 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89345 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 14/11/2019 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89348 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 14/11/2019 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89351 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 14/11/2019 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89344 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 14/11/2019 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89347 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 14/11/2019 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89350 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 14/11/2019 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89352 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 14/11/2019 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89355 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 14/11/2019 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89358 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 14/11/2019 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89354 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 14/11/2019 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89357 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 14/11/2019 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89360 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 14/11/2019 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89353 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 14/11/2019 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89356 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 14/11/2019 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89359 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 14/11/2019 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96118 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 29/09/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96121 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 29/09/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96124 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 29/09/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96120 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 29/09/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96123 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 29/09/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96126 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 29/09/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96119 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 29/09/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96122 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 29/09/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96125 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Crassostrea gigas Soft Parts 29/09/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96127 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96130 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96133 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96136 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 4\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96129 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96132 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 210Pb = 2.4 0.24 Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96135 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96138 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 4\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96128 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96131 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96134 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96137 Netherlands 8 KNUITHK NaN 51 24 0.0 N 3 57 44.0 E BIOT Molluscs Mytilus edulis Soft Parts 29/09/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 4\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52624 Ireland 1 Kilmore Quay ES1100561 52 9 55.0 N 6 35 36.0 W BIOT Fish Gadus morhua FLESH WITHOUT BONES 08/06/2011 137Cs = 0.204127 0.009951 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87909 Ireland 1 Kilmore Quay ES1100561 52 9 55.0 N 6 35 36.0 W BIOT Fish Gadus morhua FLESH WITHOUT BONES 08/06/2011 137Cs = 0.204127 0.009951 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52626 Ireland 1 Kilmore Quay ES1100564 52 9 55.0 N 6 35 36.0 W BIOT Fish Melanogrammus aeglefinus FLESH WITHOUT BONES 08/06/2011 137Cs = 0.079172 0.004232 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87911 Ireland 1 Kilmore Quay ES1100564 52 9 55.0 N 6 35 36.0 W BIOT Fish Melanogrammus aeglefinus FLESH WITHOUT BONES 08/06/2011 137Cs = 0.079172 0.004232 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52627 Ireland 1 Kilmore Quay ES1100563 52 9 55.0 N 6 35 36.0 W BIOT Fish Pleuronectes platessa FLESH WITHOUT BONES 08/06/2011 137Cs = 0.093507 0.003974 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87912 Ireland 1 Kilmore Quay ES1100563 52 9 55.0 N 6 35 36.0 W BIOT Fish Pleuronectes platessa FLESH WITHOUT BONES 08/06/2011 137Cs = 0.093507 0.003974 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50622 Ireland 1 Salthill-Galway NaN 53 15 40.0 N 9 4 15.0 W BIOT Seaweed Fucus vesiculosus WHOLE PLANT 01/11/1996 137Cs = 0.06 0.0075 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50623 Ireland 1 Salthill-Galway NaN 53 15 40.0 N 9 4 15.0 W BIOT Seaweed Fucus vesiculosus WHOLE PLANT 01/11/1996 137Cs = 0.12 0.0150 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50179 Ireland 4 Bull Island NaN 53 21 7.0 N 6 9 50.0 W BIOT Seaweed Ascophyllum nodosum WHOLE PLANT 01/12/2003 137Cs = 0.32 0.0400 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50180 Ireland 4 Bull Island NaN 53 21 7.0 N 6 9 50.0 W BIOT Seaweed Ascophyllum nodosum WHOLE PLANT 01/12/2003 137Cs = 0.50 0.0625 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "49424 Ireland 4 Sutton NaN 53 22 48.0 N 6 6 0.0 W BIOT Molluscs Mytilus edulis Soft parts 01/07/1995 210Po = 42.4 4.24 Bq/kg f.w. Radiological Protection Institute of Ireland NaN Representative sample date - mid year NaN\n", + "49425 Ireland 4 Sutton NaN 53 22 48.0 N 6 6 0.0 W BIOT Molluscs Mytilus edulis Soft parts 01/07/1995 210Po = 41.8 4.18 Bq/kg f.w. Radiological Protection Institute of Ireland NaN Representative sample date - mid year NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14045 United Kingdom 6 Wylfa NaN 53 24 53.0 N 4 27 5.0 W BIOT Molluscs LITTORINA LITTOREA SOFT PARTS 01/07/2007 239,240Pu = 0.150 0.00480 Bq/kg f.w. FSA-Food Standards Agency NaN Cemaes Bay NaN\n", + "18380 United Kingdom 6 Wylfa NaN 53 24 53.0 N 4 27 5.0 W BIOT Molluscs LITTORINA LITTOREA SOFT PARTS 01/07/2007 239,240Pu = 0.137 0.00458 Bq/kg f.w. FSA-Food Standards Agency NaN Cemaes Bay NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "93837 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 05/10/2020 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93840 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 05/10/2020 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93843 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 05/10/2020 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "93839 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 05/10/2020 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93842 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 05/10/2020 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93845 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 05/10/2020 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "93838 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 05/10/2020 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93841 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 05/10/2020 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "93844 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 05/10/2020 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96109 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/10/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96112 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/10/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96115 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/10/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96111 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/10/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96114 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/10/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96117 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/10/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96110 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/10/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96113 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/10/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96116 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 07/10/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96139 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/10/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96142 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/10/2021 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96141 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/10/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96144 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/10/2021 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "96140 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/10/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "96143 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Mytilus edulis Soft Parts 07/10/2021 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89334 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 23/10/2019 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89337 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 23/10/2019 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89340 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 23/10/2019 137Cs < 0.2 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89336 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 23/10/2019 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89339 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 23/10/2019 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89342 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 23/10/2019 210Pb < 1.0 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89335 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 23/10/2019 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89338 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 23/10/2019 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "89341 Netherlands 9 BOCHTVWTM NaN 53 25 2.0 N 6 52 34.0 E BIOT Molluscs Crassostrea gigas Soft Parts 23/10/2019 226Ra < 1.8 NaN Bq/kg f.w. Rijkswaterstaat Laboratory CIV NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50486 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/01/2005 137Cs = 0.1 0.0125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50487 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/01/2005 137Cs = 0.7 0.0875 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50463 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/03/2003 137Cs = 0.1 0.0125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50464 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/03/2003 137Cs = 0.3 0.0375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50466 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/05/2003 137Cs = 0.1 0.0125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50467 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/05/2003 137Cs = 0.4 0.0500 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50489 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/05/2005 137Cs = 0.3 0.0375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50490 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/05/2005 137Cs = 0.6 0.0750 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50503 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2003 239,240Pu = 0.028 0.00350 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50504 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2003 239,240Pu = 0.098 0.01225 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels. Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50506 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2003 99Tc = 34.0 4.250 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50507 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2003 99Tc = 29.0 3.625 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels. Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50477 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2004 137Cs = 0.1 0.0125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50478 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2004 137Cs = 0.3 0.0375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50492 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/08/2005 137Cs = 0.2 0.025 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50493 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/08/2005 137Cs = 0.4 0.050 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50469 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/09/2003 137Cs = 0.1 0.0125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50470 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/09/2003 137Cs = 0.3 0.0375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50480 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/09/2004 137Cs = 0.1 0.0125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50481 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/09/2004 137Cs = 0.4 0.0500 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50495 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/10/2005 137Cs = 0.1 0.0125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50496 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/10/2005 137Cs = 0.3 0.0375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50483 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/11/2004 137Cs = 0.4 0.0500 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50484 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/11/2004 137Cs = 0.5 0.0625 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50472 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/12/2003 137Cs = 0.1 0.0125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50473 Ireland 4 Clogherhead NaN 53 47 60.0 N 6 13 0.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/12/2003 137Cs = 0.4 0.0500 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50311 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/02/2002 137Cs = 0.1 0.0125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50312 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/02/2002 137Cs = 0.6 0.0750 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50328 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/1996 239,240Pu = 0.15 0.01875 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50329 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/1996 239,240Pu = 0.19 0.02375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50392 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/1996 99Tc = 15.0 1.875 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50393 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/1996 99Tc = 18.0 2.250 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50295 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2000 137Cs = 0.4 0.0500 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50296 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2000 137Cs = 0.9 0.1125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50356 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2000 239,240Pu = 0.095 0.011875 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50357 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2000 239,240Pu = 0.217 0.027125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50418 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2000 99Tc = 24.0 3.000 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50419 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2000 99Tc = 35.0 4.375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50304 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2001 137Cs = 0.3 0.0375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50305 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2001 137Cs = 0.4 0.0500 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50365 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2001 239,240Pu = 0.076 0.00950 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50366 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2001 239,240Pu = 0.174 0.02175 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50427 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2001 99Tc = 30.0 3.750 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50428 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2001 99Tc = 51.0 6.375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50314 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2002 137Cs = 0.20 0.025 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50315 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2002 137Cs = 0.24 0.030 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50316 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2002 137Cs = 0.40 0.050 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50374 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2002 239,240Pu = 0.037 0.004625 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50375 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2002 239,240Pu = 0.060 0.007500 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50376 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2002 239,240Pu = 0.093 0.011625 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels. Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50436 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2002 99Tc = 9.3 1.1625 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50437 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2002 99Tc = 18.8 2.3500 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels. Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50385 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2004 239,240Pu = 0.034 0.00425 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50386 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2004 239,240Pu = 0.084 0.01050 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50387 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2004 239,240Pu = 0.130 0.01625 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels. Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50440 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2004 99Tc = 13.0 1.6250 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50441 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2004 99Tc = 26.5 3.3125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50442 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2004 99Tc = 40.0 5.0000 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels. Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50389 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2005 239,240Pu = 0.0330 0.004125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50390 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2005 239,240Pu = 0.0332 0.004150 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50444 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2005 99Tc = 4.0 0.5 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50445 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2005 99Tc = 20.0 2.5 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50446 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/06/2005 99Tc = 36.0 4.5 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels. Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50318 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/09/2002 137Cs = 0.2 0.0250 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50319 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/09/2002 137Cs = 0.3 0.0375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50378 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/09/2002 239,240Pu = 0.063 0.007875 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50379 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/09/2002 239,240Pu = 0.085 0.010625 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels. Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50321 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/11/2002 137Cs = 0.2 0.0250 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50322 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/11/2002 137Cs = 0.3 0.0375 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels, representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50381 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/11/2002 239,240Pu = 0.049 0.006125 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "50382 Ireland 4 Carlingford NaN 54 2 19.0 N 6 9 29.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/11/2002 239,240Pu = 0.127 0.015875 Bq/kg f.w. Radiological Protection Instiute of Ireland Uncertainty value estimated Wild Mussels. Data based on pooled samples taken throughout the year. Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14043 United Kingdom 6 Heysham NaN 54 4 39.0 N 2 52 8.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/07/2007 239,240Pu = 1.13 0.033 Bq/kg f.w. FSA-Food Standards Agency NaN Morecambe NaN\n", + "18377 United Kingdom 6 Heysham NaN 54 4 39.0 N 2 52 8.0 W BIOT Molluscs Mytilus edulis SOFT PARTS 01/07/2007 239,240Pu = 2.38 0.051 Bq/kg f.w. FSA-Food Standards Agency NaN Morecambe NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "91585 United Kingdom 6 Sellafield 1995001155 54 29 20.0 N 3 36 25.0 W BIOT Seaweed FUCUS VESICULOSUS GROWING TIPS 19/01/1995 137Cs = 9.325 0.066 Bq/kg f.w. FSA-Food Standards Agency NaN St Bees W NaN\n", + "91586 United Kingdom 6 Sellafield 1995001155 54 29 20.0 N 3 36 25.0 W BIOT Seaweed FUCUS VESICULOSUS GROWING TIPS 19/01/1995 137Cs = 9.551 0.439 Bq/kg f.w. FSA-Food Standards Agency NaN St Bees W NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52628 Ireland 1 Killybegs ES1100579 54 37 58.0 N 8 26 6.0 W BIOT Fish Gadus morhua FLESH WITHOUT BONES 14/06/2011 137Cs = 0.083026 0.006779 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87913 Ireland 1 Killybegs ES1100579 54 37 58.0 N 8 26 6.0 W BIOT Fish Gadus morhua FLESH WITHOUT BONES 14/06/2011 137Cs = 0.083026 0.006779 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52629 Ireland 1 Killybegs ES1100583 54 37 58.0 N 8 26 6.0 W BIOT Fish Melanogrammus aeglefinus FLESH WITHOUT BONES 14/06/2011 137Cs = 0.099574 0.006141 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87917 Ireland 1 Killybegs ES1100583 54 37 58.0 N 8 26 6.0 W BIOT Fish Melanogrammus aeglefinus FLESH WITHOUT BONES 14/06/2011 137Cs = 0.099574 0.006141 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52630 Ireland 1 Killybegs ES1100580 54 37 58.0 N 8 26 6.0 W BIOT Fish Pleuronectes platessa FLESH WITHOUT BONES 14/06/2011 137Cs = 0.056632 0.005097 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87914 Ireland 1 Killybegs ES1100580 54 37 58.0 N 8 26 6.0 W BIOT Fish Pleuronectes platessa FLESH WITHOUT BONES 14/06/2011 137Cs = 0.056632 0.005097 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "52631 Ireland 1 Killybegs ES1100581 54 37 58.0 N 8 26 6.0 W BIOT Fish Scomber scombrus FLESH WITHOUT BONES 14/06/2011 137Cs = 0.157676 0.007824 Bq/kg f.w. Radiological Protection Instiute of Ireland NaN NaN NaN\n", + "87915 Ireland 1 Killybegs ES1100581 54 37 58.0 N 8 26 6.0 W BIOT Fish Scomber scombrus FLESH WITHOUT BONES 14/06/2011 137Cs = 0.157676 0.007824 Bq/kg f.w. Environmental Protection Agency NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "18419 United Kingdom 10 Hartlepool NaN 54 38 48.0 N 1 8 7.0 W BIOT Molluscs LITTORINA LITTOREA SOFT PARTS 16/08/2007 210Po = 19.8 0.827 Bq/kg f.w. FSA-Food Standards Agency NaN South Gare NaN\n", + "18420 United Kingdom 10 Hartlepool NaN 54 38 48.0 N 1 8 7.0 W BIOT Molluscs LITTORINA LITTOREA SOFT PARTS 16/08/2007 210Po = 13.2 0.632 Bq/kg f.w. FSA-Food Standards Agency NaN South Gare NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "16256 Germany 10 P01 NaN 55 25 45.0 N 5 13 36.0 E BIOT Fish Gadus morhua Flesh without bones 30/08/2007 137Cs = 0.622 0.025502 Bq/kg f.w. Johann Heinrich von Thünen Institute (vTI) NaN NaN NaN\n", + "16257 Germany 10 P01 NaN 55 25 45.0 N 5 13 36.0 E BIOT Fish Gadus morhua Flesh without bones 30/08/2007 137Cs = 0.450 0.018900 Bq/kg f.w. Johann Heinrich von Thünen Institute (vTI) NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73047 Norway 10 Lista NaN 58 7 48.0 N 6 34 48.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 137Cs = 0.32 0.032 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "73048 Norway 10 Lista NaN 58 7 48.0 N 6 34 48.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 137Cs = 0.28 0.022 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73069 Norway 10 Lista NaN 58 7 48.0 N 6 34 48.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 99Tc = 56.0 5.6 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "73070 Norway 10 Lista NaN 58 7 48.0 N 6 34 48.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 99Tc = 50.0 5.0 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73049 Norway 11 Narestø NaN 58 28 11.0 N 8 49 45.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 137Cs = 0.62 0.044 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "73050 Norway 11 Narestø NaN 58 28 11.0 N 8 49 45.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 137Cs = 0.32 0.032 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73071 Norway 11 Narestø NaN 58 28 11.0 N 8 49 45.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 99Tc = 41.0 4.0 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "73072 Norway 11 Narestø NaN 58 28 11.0 N 8 49 45.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 99Tc = 54.0 5.2 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73045 Norway 11 Tjøme NaN 59 7 11.0 N 10 24 0.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 137Cs = 0.54 0.032 Bq/kg f.w. NRPA NaN Estimated sampling date NaN\n", + "73046 Norway 11 Tjøme NaN 59 7 11.0 N 10 24 0.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 137Cs = 0.34 0.030 Bq/kg f.w. NRPA NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73067 Norway 11 Tjøme NaN 59 7 11.0 N 10 24 0.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 99Tc = 46.0 4.6 Bq/kg f.w. NRPA NaN Estimated sampling date NaN\n", + "73068 Norway 11 Tjøme NaN 59 7 11.0 N 10 24 0.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 99Tc = 24.0 2.4 Bq/kg f.w. NRPA NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73484 Norway 10 Utsira NaN 59 18 36.0 N 4 52 47.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2006 99Tc = 35.6 3.50 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "73485 Norway 10 Utsira NaN 59 18 36.0 N 4 52 47.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2006 99Tc = 13.6 1.32 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72707 Norway 10 Outside Shetland and Orkney Islands NaN 59 42 36.0 N 0 58 11.0 E BIOT Fish Clupea harengus Muscle 01/07/2004 210Po = 5.63 0.563 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72716 Norway 10 Outside Shetland and Orkney Islands NaN 59 42 36.0 N 0 58 11.0 E BIOT Fish Clupea harengus Muscle 01/07/2004 210Po = 8.53 0.853 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72717 Norway 10 Outside Shetland and Orkney Islands NaN 59 42 36.0 N 0 58 11.0 E BIOT Fish Clupea harengus Muscle 01/07/2004 210Po = 6.40 0.640 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72718 Norway 10 Outside Shetland and Orkney Islands NaN 59 42 36.0 N 0 58 11.0 E BIOT Fish Clupea harengus Muscle 01/07/2004 210Po = 3.04 0.304 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72719 Norway 10 Outside Shetland and Orkney Islands NaN 59 42 36.0 N 0 58 11.0 E BIOT Fish Clupea harengus Muscle 01/07/2004 210Po = 3.91 0.391 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "Count: 5\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72708 Norway 10 NaN NaN 59 43 11.0 N 2 57 0.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 1.81 0.181 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72724 Norway 10 North sea Viking NaN 59 43 11.0 N 2 57 0.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 2.95 0.295 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72725 Norway 10 North sea Viking NaN 59 43 11.0 N 2 57 0.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 1.25 0.125 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72726 Norway 10 North sea Viking NaN 59 43 11.0 N 2 57 0.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 1.55 0.155 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "Count: 4\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72715 Norway 10 Utsira Nord NaN 60 1 12.0 N 3 4 11.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 2.47 0.247 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72735 Norway 10 Utsira Nord NaN 60 1 12.0 N 3 4 11.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 4.13 0.413 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72736 Norway 10 Utsira Nord NaN 60 1 12.0 N 3 4 11.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 2.10 0.210 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72737 Norway 10 Utsira Nord NaN 60 1 12.0 N 3 4 11.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 1.98 0.198 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72738 Norway 10 Utsira Nord NaN 60 1 12.0 N 3 4 11.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 2.40 0.240 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "Count: 5\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72710 Norway 10 Outside Shetland and Orkney Islands NaN 60 11 23.0 N 0 0 36.0 E BIOT Fish Clupea harengus Muscle 01/07/2004 210Po = 2.68 0.268 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72727 Norway 10 Outside Shetland and Orkney Islands NaN 60 11 23.0 N 0 0 36.0 E BIOT Fish Clupea harengus Muscle 01/07/2004 210Po = 2.51 0.251 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72728 Norway 10 Outside Shetland and Orkney Islands NaN 60 11 23.0 N 0 0 36.0 E BIOT Fish Clupea harengus Muscle 01/07/2004 210Po = 3.54 0.354 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72729 Norway 10 Outside Shetland and Orkney Islands NaN 60 11 23.0 N 0 0 36.0 E BIOT Fish Clupea harengus Muscle 01/07/2004 210Po = 6.12 0.612 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72730 Norway 10 Outside Shetland and Orkney Islands NaN 60 11 23.0 N 0 0 36.0 E BIOT Fish Clupea harengus Muscle 01/07/2004 210Po = 6.13 0.613 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "Count: 5\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72709 Norway 10 Outside Shetland and Orkney Islands NaN 60 11 23.0 N 0 0 36.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 5.41 0.541 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72720 Norway 10 Outside Shetland and Orkney Islands NaN 60 11 23.0 N 0 0 36.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 4.52 0.452 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72721 Norway 10 Outside Shetland and Orkney Islands NaN 60 11 23.0 N 0 0 36.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 2.36 0.236 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72722 Norway 10 Outside Shetland and Orkney Islands NaN 60 11 23.0 N 0 0 36.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 4.26 0.426 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72723 Norway 10 Outside Shetland and Orkney Islands NaN 60 11 23.0 N 0 0 36.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 4.23 0.423 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "Count: 5\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72739 Norway 10 Utsira Nord NaN 60 19 47.0 N 2 39 0.0 E BIOT Fish Gadus Morhua Muscle 01/07/2004 210Po = 1.28 0.128 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72740 Norway 10 Utsira Nord NaN 60 19 47.0 N 2 39 0.0 E BIOT Fish Gadus Morhua Muscle 01/07/2004 210Po = 1.42 0.142 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72714 Norway 10 Utsira Nord NaN 60 21 35.0 N 3 21 35.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 1.68 0.168 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72731 Norway 10 Utsira Nord NaN 60 21 35.0 N 3 21 35.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 2.82 0.282 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72732 Norway 10 Utsira Nord NaN 60 21 35.0 N 3 21 35.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 1.49 0.149 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72733 Norway 10 Utsira Nord NaN 60 21 35.0 N 3 21 35.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 1.47 0.147 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "72734 Norway 10 Utsira Nord NaN 60 21 35.0 N 3 21 35.0 E BIOT Fish Scomber scombrus Muscle 01/07/2004 210Po = 1.65 0.165 Bq/kg f.w. NaN Estimated uncertainty Estimated sampling date NaN\n", + "Count: 5\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "69544 Iceland 15 Vestmannaeyjar THVES03F 63 24 37.0 N 20 16 59.0 W BIOT SEAWEED Fucus vesiculosus WHOLE PLANT 26/06/2003 99Tc = 6.491417 0.649142 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "69545 Iceland 15 Vestmannaeyjar THVES03F 63 24 37.0 N 20 16 59.0 W BIOT SEAWEED Fucus vesiculosus WHOLE PLANT 26/06/2003 99Tc = 4.824595 0.482459 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "69522 Iceland 15 Faskrudsfjordur THFAS02G 64 52 34.0 N 13 46 10.0 W BIOT SEAWEED ASCOPHYLLUM NODOSUM WHOLE PLANT 27/06/2002 99Tc = 38.309614 3.830961 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "69523 Iceland 15 Faskrudsfjordur THFAS02G 64 52 34.0 N 13 46 10.0 W BIOT SEAWEED ASCOPHYLLUM NODOSUM WHOLE PLANT 27/06/2002 99Tc = 38.580404 3.858040 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "69440 Iceland 15 Faskrudsfjordur THFAS99L 64 54 33.0 N 13 55 58.0 W BIOT SEAWEED ASCOPHYLLUM NODOSUM WHOLE PLANT 28/12/1999 99Tc = 34.358767 3.435877 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "69441 Iceland 15 Faskrudsfjordur THFAS99L 64 54 33.0 N 13 55 58.0 W BIOT SEAWEED ASCOPHYLLUM NODOSUM WHOLE PLANT 28/12/1999 99Tc = 48.517247 4.851725 Bq/kg f.w. Icelandic Radiation Safety Authority 10% uncertainty assumed NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72741 Norway 13 Norwegian sea NaN 67 8 16.0 N 11 23 12.0 E BIOT Fish Gadus Morhua Muscle 01/07/2004 210Po = 0.12 0.012 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72746 Norway 13 Norwegian sea NaN 67 8 16.0 N 11 23 12.0 E BIOT Fish Gadus Morhua Muscle 01/07/2004 210Po = 0.41 0.041 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72744 Norway 13 Norwegian sea NaN 67 8 16.0 N 11 23 12.0 E BIOT Fish Melanogrammus aeglefinus Muscle 01/07/2004 210Po = 1.18 0.118 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72745 Norway 13 Norwegian sea NaN 67 8 16.0 N 11 23 12.0 E BIOT Fish Melanogrammus aeglefinus Muscle 01/07/2004 210Po = 1.52 0.152 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72742 Norway 13 Norwegian sea NaN 67 8 16.0 N 11 23 12.0 E BIOT Fish Pollachius virens Muscle 01/07/2004 210Po = 1.04 0.104 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72743 Norway 13 Norwegian sea NaN 67 8 16.0 N 11 23 12.0 E BIOT Fish Pollachius virens Muscle 01/07/2004 210Po = 0.70 0.070 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "8086 Norway 13 Nordland 1567-1 NaN 67 24 0.0 N 12 0 0.0 E BIOT Fish Gadus morhua Muscle 31/03/2009 137Cs = 0.35 0.12 Bq/kg f.w. Norweigian Radiation Protection Authority NaN NaN NaN\n", + "8087 Norway 13 Nordland 1567-2 NaN 67 24 0.0 N 12 0 0.0 E BIOT Fish Gadus morhua Muscle 31/03/2009 137Cs = 0.21 0.06 Bq/kg f.w. Norweigian Radiation Protection Authority NaN NaN NaN\n", + "8088 Norway 13 Nordland 1567-3 NaN 67 24 0.0 N 12 0 0.0 E BIOT Fish Gadus morhua Muscle 31/03/2009 137Cs = 0.24 0.11 Bq/kg f.w. Norweigian Radiation Protection Authority NaN NaN NaN\n", + "8089 Norway 13 Nordland 1567-4 NaN 67 24 0.0 N 12 0 0.0 E BIOT Fish Gadus morhua Muscle 31/03/2009 137Cs = 0.32 0.13 Bq/kg f.w. Norweigian Radiation Protection Authority NaN NaN NaN\n", + "8090 Norway 13 Nordland 1567-5 NaN 67 24 0.0 N 12 0 0.0 E BIOT Fish Gadus morhua Muscle 31/03/2009 137Cs = 0.26 0.13 Bq/kg f.w. Norweigian Radiation Protection Authority NaN NaN NaN\n", + "Count: 5\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73517 Norway 13 Coast of Nordland NaN 67 25 12.0 N 13 36 3.0 E BIOT Fish Gadus morhua Muscle 01/07/2006 210Po = 0.43 0.043 Bq/kg f.w. IMR Estimated uncertainty Estimated sampling date, representative coordinates NaN\n", + "73518 Norway 13 Coast of Nordland NaN 67 25 12.0 N 13 36 3.0 E BIOT Fish Gadus morhua Muscle 01/07/2006 210Po = 0.23 0.023 Bq/kg f.w. IMR Estimated uncertainty Estimated sampling date, representative coordinates NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "86059 Norway 13 Tromsøflaket NaN 68 56 38.0 N 13 32 3.0 E BIOT FISH Gadus morhua FLESH WITHOUT BONES 27/05/2017 137Cs = 0.341525 0.033978 Bq/kg f.w. Norwegian Radiaton Protection Authority NaN NaN NaN\n", + "86060 Norway 13 Tromsøflaket NaN 68 56 38.0 N 13 32 3.0 E BIOT FISH Gadus morhua FLESH WITHOUT BONES 27/05/2017 137Cs = 0.213935 0.050984 Bq/kg f.w. Norwegian Radiaton Protection Authority NaN NaN NaN\n", + "86061 Norway 13 Tromsøflaket NaN 68 56 38.0 N 13 32 3.0 E BIOT FISH Gadus morhua FLESH WITHOUT BONES 27/05/2017 137Cs = 0.223244 0.038458 Bq/kg f.w. Norwegian Radiaton Protection Authority NaN NaN NaN\n", + "86062 Norway 13 Tromsøflaket NaN 68 56 38.0 N 13 32 3.0 E BIOT FISH Gadus morhua FLESH WITHOUT BONES 27/05/2017 137Cs = 0.152971 0.027109 Bq/kg f.w. Norwegian Radiaton Protection Authority NaN NaN NaN\n", + "Count: 4\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73089 Norway 14 Grense Jakobselv NaN 69 46 35.0 N 30 49 47.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 99Tc = 32.0 3.2 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "73090 Norway 14 Grense Jakobselv NaN 69 46 35.0 N 30 49 47.0 E BIOT Seaweed Fucus vesiculosus Whole plant 01/07/2005 99Tc = 29.0 2.8 Bq/kg f.w. IFE NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "70859 Norway 14 Barents sea NaN 69 55 0.0 N 34 21 0.0 E BIOT Fish Melanogrammus aeglefinus Muscle 08/02/1999 137Cs = 0.17 0.05 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70863 Norway 14 Barents sea NaN 69 55 0.0 N 34 21 0.0 E BIOT Fish Melanogrammus aeglefinus Muscle 08/02/1999 137Cs = 0.20 0.04 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70864 Norway 14 Barents sea NaN 69 55 0.0 N 34 21 0.0 E BIOT Fish Melanogrammus aeglefinus Muscle 08/02/1999 137Cs = 0.28 0.06 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70865 Norway 14 Barents sea NaN 69 55 0.0 N 34 21 0.0 E BIOT Fish Melanogrammus aeglefinus Muscle 08/02/1999 137Cs = 0.14 0.06 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70866 Norway 14 Barents sea NaN 69 55 0.0 N 34 21 0.0 E BIOT Fish Melanogrammus aeglefinus Muscle 08/02/1999 137Cs = 0.20 0.04 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70867 Norway 14 Barents sea NaN 69 55 0.0 N 34 21 0.0 E BIOT Fish Melanogrammus aeglefinus Muscle 08/02/1999 137Cs = 0.12 0.03 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "Count: 6\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72271 Norway 14 Varangerfjorden NaN 70 5 25.0 N 28 58 55.0 E BIOT Fish Pollachius virens Muscle 16/10/2003 137Cs = 0.3 0.1 Bq/kg f.w. IMR NaN Estimated coordinates NaN\n", + "72282 Norway 14 Varangerfjorden NaN 70 5 25.0 N 28 58 55.0 E BIOT Fish Pollachius virens Muscle 16/10/2003 137Cs = 0.3 0.1 Bq/kg f.w. IMR NaN Estimated coordinates NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "71861 Norway 14 Østbanken NaN 70 19 47.0 N 32 2 59.0 E BIOT Fish Gadus morhua Muscle 05/08/2002 137Cs = 0.23 0.03 Bq/kg f.w. IMR NaN NaN NaN\n", + "71862 Norway 14 Østbanken NaN 70 19 47.0 N 32 2 59.0 E BIOT Fish Gadus morhua Muscle 05/08/2002 137Cs = 0.28 0.02 Bq/kg f.w. IMR NaN NaN NaN\n", + "71864 Norway 14 Østbanken NaN 70 19 47.0 N 32 2 59.0 E BIOT Fish Gadus morhua Muscle 05/08/2002 137Cs = 0.23 0.03 Bq/kg f.w. IMR NaN NaN NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74464 Norway 14 Norwegian Sea NaN 70 25 48.0 N 32 1 48.0 E BIOT Fish GADUS MORHUA MUSCLE 12/06/2001 137Cs = 0.18 0.03 Bq/kg f.w. Institute of Marine Research NaN NaN NaN\n", + "74465 Norway 14 Norwegian Sea NaN 70 25 48.0 N 32 1 48.0 E BIOT Fish GADUS MORHUA MUSCLE 12/06/2001 137Cs = 0.30 0.04 Bq/kg f.w. Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "17334 Norway 14 Barents Sea area 3 NaN 70 46 0.0 N 30 15 0.0 E BIOT Fish Gadus morhua Muscle 31/10/2007 137Cs = 0.30 0.04 Bq/kg f.w. Norwegian Radiation Protection Authority NaN NaN NaN\n", + "17335 Norway 14 Barents Sea area 3 NaN 70 46 0.0 N 30 15 0.0 E BIOT Fish Gadus morhua Muscle 31/10/2007 137Cs = 0.21 0.04 Bq/kg f.w. Norwegian Radiation Protection Authority NaN NaN NaN\n", + "17336 Norway 14 Barents Sea area 3 NaN 70 46 0.0 N 30 15 0.0 E BIOT Fish Gadus morhua Muscle 31/10/2007 137Cs = 0.27 0.04 Bq/kg f.w. Norwegian Radiation Protection Authority NaN NaN NaN\n", + "17337 Norway 14 Barents Sea area 3 NaN 70 46 0.0 N 30 15 0.0 E BIOT Fish Gadus morhua Muscle 31/10/2007 137Cs = 0.21 0.04 Bq/kg f.w. Norwegian Radiation Protection Authority NaN NaN NaN\n", + "17338 Norway 14 Barents Sea area 3 NaN 70 46 0.0 N 30 15 0.0 E BIOT Fish Gadus morhua Muscle 31/10/2007 137Cs = 0.31 0.04 Bq/kg f.w. Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 5\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73093 Norway 14 Coast of Finnmark NaN 71 17 58.0 N 28 16 16.0 E BIOT Fish Gadus morhua Muscle 07/08/2005 137Cs = 0.31 0.15 Bq/kg f.w. IMR NaN Representative coordinate NaN\n", + "73094 Norway 14 Coast of Finnmark NaN 71 17 58.0 N 28 16 16.0 E BIOT Fish Gadus morhua Muscle 07/08/2005 137Cs = 0.26 0.10 Bq/kg f.w. IMR NaN Representative coordinate NaN\n", + "73095 Norway 14 Coast of Finnmark NaN 71 17 58.0 N 28 16 16.0 E BIOT Fish Gadus morhua Muscle 07/08/2005 137Cs = 0.23 0.12 Bq/kg f.w. IMR NaN Representative coordinate NaN\n", + "73096 Norway 14 Coast of Finnmark NaN 71 17 58.0 N 28 16 16.0 E BIOT Fish Gadus morhua Muscle 07/08/2005 137Cs = 0.31 0.15 Bq/kg f.w. IMR NaN Representative coordinate NaN\n", + "Count: 4\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72272 Norway 14 south west part of the Barents sea NaN 72 2 40.0 N 25 15 45.0 E BIOT Fish Melanogrammus aeglefinus Muscle 01/08/2003 137Cs = 0.15 0.03340 Bq/kg f.w. IMR NaN Estimated coordinates NaN\n", + "72273 Norway 14 south west part of the Barents sea NaN 72 2 40.0 N 25 15 45.0 E BIOT Fish Melanogrammus aeglefinus Muscle 01/08/2003 137Cs = 0.20 0.03947 Bq/kg f.w. IMR NaN Estimated coordinates NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "70870 Norway 14 Barents sea NaN 72 35 59.0 N 38 58 11.0 E BIOT Fish Boreogadus Saida WHOLE FISH 15/02/1999 137Cs = 0.13 0.03 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70871 Norway 14 Barents sea NaN 72 35 59.0 N 38 58 11.0 E BIOT Fish Boreogadus Saida WHOLE FISH 15/02/1999 137Cs = 0.14 0.03 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70872 Norway 14 Barents sea NaN 72 35 59.0 N 38 58 11.0 E BIOT Fish Boreogadus Saida WHOLE FISH 15/02/1999 137Cs = 0.16 0.06 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70873 Norway 14 Barents sea NaN 72 35 59.0 N 38 58 11.0 E BIOT Fish Boreogadus Saida WHOLE FISH 15/02/1999 137Cs = 0.10 0.03 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "Count: 4\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "70857 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Gadus morhua Muscle 07/02/1999 137Cs = 0.20 0.08 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70858 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Gadus morhua Muscle 07/02/1999 137Cs = 0.31 0.05 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70881 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Gadus morhua Muscle 07/02/1999 137Cs = 0.13 0.04 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70882 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Gadus morhua Muscle 07/02/1999 137Cs = 0.31 0.04 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70883 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Gadus morhua Muscle 07/02/1999 137Cs = 0.53 0.12 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70885 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Gadus morhua Muscle 07/02/1999 137Cs = 0.21 0.04 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70886 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Gadus morhua Muscle 07/02/1999 137Cs = 0.26 0.05 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70888 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Gadus morhua Muscle 07/02/1999 137Cs = 0.23 0.05 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "Count: 8\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "70860 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Pleuronectiformes [order] Muscle 07/02/1999 137Cs = 0.38 0.09 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70861 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Pleuronectiformes [order] Muscle 07/02/1999 137Cs = 0.40 0.14 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70862 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Pleuronectiformes [order] Muscle 07/02/1999 137Cs = 0.28 0.05 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "70887 Norway 14 Barents sea NaN 72 40 0.0 N 36 15 0.0 E BIOT Fish Pleuronectiformes [order] Muscle 07/02/1999 137Cs = 0.26 0.07 Bq/kg f.w. Institute for marine research NaN Assuming IMR as data provider NaN\n", + "Count: 4\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72267 Norway 14 Bjørnøya NaN 74 28 11.0 N 18 58 11.0 E BIOT Fish Gadus morhua Muscle 16/08/2003 137Cs = 0.22 0.02 Bq/kg f.w. IMR NaN Estimated coordinates NaN\n", + "72269 Norway 14 Bjørnøya NaN 74 28 11.0 N 18 58 11.0 E BIOT Fish Gadus morhua Muscle 16/08/2003 137Cs = 0.12 0.05 Bq/kg f.w. IMR NaN Estimated coordinates NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74467 Norway 14 Norwegian Sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish GADUS MORHUA MUSCLE 01/07/2001 137Cs = 0.30 0.10 Bq/kg f.w. Institute of Marine Research NaN Estimated coordinates and sampling date NaN\n", + "74468 Norway 14 Norwegian Sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish GADUS MORHUA MUSCLE 01/07/2001 137Cs = 0.24 0.01 Bq/kg f.w. Institute of Marine Research NaN Estimated coordinates and sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72691 Norway 14 Barents sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish unknown Muscle 01/07/2004 137Cs = 0.27 0.027 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72692 Norway 14 Barents sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish unknown Muscle 01/07/2004 137Cs = 0.28 0.028 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72693 Norway 14 Barents sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish unknown Muscle 01/07/2004 137Cs = 0.24 0.024 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72694 Norway 14 Barents sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish unknown Muscle 01/07/2004 137Cs = 0.40 0.040 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72695 Norway 14 Barents sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish unknown Muscle 01/07/2004 137Cs = 0.20 0.020 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72696 Norway 14 Barents sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish unknown Muscle 01/07/2004 137Cs = 0.23 0.023 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72697 Norway 14 Barents sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish unknown Muscle 01/07/2004 137Cs = 0.25 0.025 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72698 Norway 14 Barents sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish unknown Muscle 01/07/2004 137Cs = 0.30 0.030 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "72706 Norway 14 Barents sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish unknown Muscle 01/07/2004 137Cs = 0.20 0.020 Bq/kg f.w. NaN Estimated uncertainty Representative coordinate, sampling date NaN\n", + "Count: 9\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Biological group Species Body Part Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74498 Norway 14 Norwegian Sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish GADUS MORHUA MUSCLE 04/10/2001 137Cs = 0.23 0.01 Bq/kg f.w. Institute of Marine Research NaN Estimated coordinates NaN\n", + "74499 Norway 14 Norwegian Sea NaN 74 42 47.0 N 28 7 34.0 E BIOT Fish GADUS MORHUA MUSCLE 04/10/2001 137Cs = 0.16 0.01 Bq/kg f.w. Institute of Marine Research NaN Estimated coordinates NaN\n", + "Count: 2\n" + ] + } + ], + "source": [ + "compound_idx = ['LatD', 'LatM', 'LatS', 'LatDir', 'LongD', 'LongM',\n", + " 'LongS', 'LongDir', 'Sampling date', 'Biological group', \n", + " 'Species', 'Body Part', 'Nuclide', 'Sample ID']\n", + "\n", + "# Find duplicated rows\n", + "duplicated_rows = ospar_dfs[grp][ospar_dfs[grp][compound_idx].duplicated(keep=False)]\n", + "\n", + "# Print the number of duplicated rows\n", + "print(f'Number of duplicated rows: {len(duplicated_rows)}')\n", + "\n", + "# Group by the full compound index to find all identical rows\n", + "if not duplicated_rows.empty:\n", + " print(\"\\nGrouped identical rows with full compound index:\")\n", + " grouped_full = duplicated_rows.groupby(compound_idx)\n", + "\n", + " for compound_values, group in grouped_full:\n", + " count = len(group)\n", + " print(\"\\nGroup:\")\n", + " print(group.to_string(index=False)) # Print the group without the index\n", + " print(f\"Count: {count}\")\n", + "\n", + "# Remove 'Sample ID' from the compound index\n", + "compound_idx_without_sample_id = [col for col in compound_idx if col != 'Sample ID']\n", + "\n", + "# Group by the compound index without 'Sample ID'\n", + "if not duplicated_rows.empty:\n", + " print(\"\\nGrouped identical rows without 'Sample ID':\")\n", + " grouped_without_sample_id = duplicated_rows.groupby(compound_idx_without_sample_id)\n", + "\n", + " for compound_values, group in grouped_without_sample_id:\n", + " count = len(group)\n", + " print(\"\\nGroup:\")\n", + " print(group.to_string(index=False)) # Print the group without the index\n", + " print(f\"Count: {count}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are 338 rows that are problematic. Some are duplicated (include the Activity or MDA value) and some rows have beem reported for multiple 'Data provider'. However there are some entries that have multiple Activity or MDA values reported for the same sample and nuclide. . \n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In total there is a very small amount (2.21%) of the OSPAR biota dataset is duplicated. See;" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2.2071307300509337" + ] + }, + "execution_count": 102, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "338/15314*100" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Review of the compound index ( SEAWATER )" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "First, focusing on the biota dataframe. Lets look at the columns of the biota dataframe:" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "metadata": {}, + "outputs": [], + "source": [ + "grp='seawater'" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['ID', 'Contracting Party', 'RSC Sub-division', 'Station ID',\n", + " 'Sample ID', 'LatD', 'LatM', 'LatS', 'LatDir', 'LongD', 'LongM',\n", + " 'LongS', 'LongDir', 'Sample type', 'Sampling depth', 'Sampling date',\n", + " 'Nuclide', 'Value type', 'Activity or MDA', 'Uncertainty', 'Unit',\n", + " 'Data provider', 'Measurement Comment', 'Sample Comment',\n", + " 'Reference Comment'],\n", + " dtype='object')" + ] + }, + "execution_count": 108, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ospar_dfs[grp].columns" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lets looks where the combined 'Sample ID' and 'Nuclide' are duplicated." + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD \\\n", + "411 2435 Norway 11.0 507 NaN 57.0 \n", + "412 2436 Norway 9.0 509 NaN 56.0 \n", + "413 2437 Norway 11.0 Tjøme NaN 59.0 \n", + "414 2438 Norway 11.0 505 NaN 57.0 \n", + "415 2439 Norway 11.0 506 NaN 58.0 \n", + "... ... ... ... ... ... ... \n", + "18806 121601 United Kingdom 6.0 Sellafield NaN 54.0 \n", + "18807 121602 United Kingdom 6.0 Sellafield NaN 54.0 \n", + "18848 121643 United Kingdom 10.0 Hartlepool NaN 54.0 \n", + "18849 121644 United Kingdom 10.0 Sizewell NaN 52.0 \n", + "18850 121645 United Kingdom 10.0 Sizewell NaN 52.0 \n", + "\n", + " LatM LatS LatDir LongD ... Sampling date Nuclide Value type \\\n", + "411 50.0 51.0 N 8.0 ... 08/07/2010 239,240Pu = \n", + "412 59.0 58.0 N 7.0 ... 08/07/2010 239,240Pu = \n", + "413 3.0 30.0 N 10.0 ... 11/11/2010 239,240Pu = \n", + "414 58.0 52.0 N 8.0 ... 07/07/2010 99Tc = \n", + "415 6.0 34.0 N 8.0 ... 07/07/2010 99Tc = \n", + "... ... ... ... ... ... ... ... ... \n", + "18806 29.0 20.0 N 3.0 ... 01/07/2021 99Tc < \n", + "18807 29.0 20.0 N 3.0 ... 01/07/2021 137Cs < \n", + "18848 38.0 55.0 N 1.0 ... 01/07/2021 3H < \n", + "18849 9.0 17.0 N 1.0 ... 01/07/2021 3H < \n", + "18850 9.0 17.0 N 1.0 ... 01/07/2021 137Cs < \n", + "\n", + " Activity or MDA Uncertainty Unit \\\n", + "411 0.000007 0.000001 Bq/l \n", + "412 0.000005 0.000001 Bq/l \n", + "413 0.000004 0.000002 Bq/l \n", + "414 0.000390 0.000025 Bq/l \n", + "415 0.000380 0.000025 Bq/l \n", + "... ... ... ... \n", + "18806 0.045000 NaN Bq/l \n", + "18807 0.138000 NaN Bq/l \n", + "18848 4.250000 NaN Bq/l \n", + "18849 3.750000 NaN Bq/l \n", + "18850 0.260000 NaN Bq/l \n", + "\n", + " Data provider Measurement Comment \\\n", + "411 Norwegian Radiation Protection Authority NaN \n", + "412 Norwegian Radiation Protection Authority NaN \n", + "413 Norwegian Radiation Protection Authority NaN \n", + "414 Institute for Marine Research NaN \n", + "415 Institute for Marine Research NaN \n", + "... ... ... \n", + "18806 EA-Environment Agency NaN \n", + "18807 EA-Environment Agency NaN \n", + "18848 EA-Environment Agency NaN \n", + "18849 EA-Environment Agency NaN \n", + "18850 EA-Environment Agency NaN \n", + "\n", + " Sample Comment Reference Comment \n", + "411 NaN NaN \n", + "412 NaN NaN \n", + "413 NaN NaN \n", + "414 NaN NaN \n", + "415 NaN NaN \n", + "... ... ... \n", + "18806 St Bees W. Average of 2 samples, representativ... NaN \n", + "18807 St Bees W. Average of 2 samples, representativ... NaN \n", + "18848 North Gare. Average of 2 samples, representati... NaN \n", + "18849 Local beach. Average of 2 samples, representat... NaN \n", + "18850 Local beach. Average of 2 samples, representat... NaN \n", + "\n", + "[7477 rows x 25 columns]\n" + ] + } + ], + "source": [ + "ospar_dfs_sampleId_nuclide_df=ospar_dfs[grp][ospar_dfs[grp][['Sample ID','Nuclide']].duplicated(keep=False)]\n", + "print(ospar_dfs_sampleId_nuclide_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "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", + "
IDContracting PartyRSC Sub-divisionStation IDSample IDLatDLatMLatSLatDirLongD...Sampling dateNuclideValue typeActivity or MDAUncertaintyUnitData providerMeasurement CommentSample CommentReference Comment
4112435Norway11.0507NaN57.050.051.0N8.0...08/07/2010239,240Pu=0.0000070.000001Bq/lNorwegian Radiation Protection AuthorityNaNNaNNaN
4122436Norway9.0509NaN56.059.058.0N7.0...08/07/2010239,240Pu=0.0000050.000001Bq/lNorwegian Radiation Protection AuthorityNaNNaNNaN
4132437Norway11.0TjømeNaN59.03.030.0N10.0...11/11/2010239,240Pu=0.0000040.000002Bq/lNorwegian Radiation Protection AuthorityNaNNaNNaN
4142438Norway11.0505NaN57.058.052.0N8.0...07/07/201099Tc=0.0003900.000025Bq/lInstitute for Marine ResearchNaNNaNNaN
4152439Norway11.0506NaN58.06.034.0N8.0...07/07/201099Tc=0.0003800.000025Bq/lInstitute for Marine ResearchNaNNaNNaN
..................................................................
18806121601United Kingdom6.0SellafieldNaN54.029.020.0N3.0...01/07/202199Tc<0.045000NaNBq/lEA-Environment AgencyNaNSt Bees W. Average of 2 samples, representativ...NaN
18807121602United Kingdom6.0SellafieldNaN54.029.020.0N3.0...01/07/2021137Cs<0.138000NaNBq/lEA-Environment AgencyNaNSt Bees W. Average of 2 samples, representativ...NaN
18848121643United Kingdom10.0HartlepoolNaN54.038.055.0N1.0...01/07/20213H<4.250000NaNBq/lEA-Environment AgencyNaNNorth Gare. Average of 2 samples, representati...NaN
18849121644United Kingdom10.0SizewellNaN52.09.017.0N1.0...01/07/20213H<3.750000NaNBq/lEA-Environment AgencyNaNLocal beach. Average of 2 samples, representat...NaN
18850121645United Kingdom10.0SizewellNaN52.09.017.0N1.0...01/07/2021137Cs<0.260000NaNBq/lEA-Environment AgencyNaNLocal beach. Average of 2 samples, representat...NaN
\n", + "

7296 rows × 25 columns

\n", + "
" + ], + "text/plain": [ + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD \\\n", + "411 2435 Norway 11.0 507 NaN 57.0 \n", + "412 2436 Norway 9.0 509 NaN 56.0 \n", + "413 2437 Norway 11.0 Tjøme NaN 59.0 \n", + "414 2438 Norway 11.0 505 NaN 57.0 \n", + "415 2439 Norway 11.0 506 NaN 58.0 \n", + "... ... ... ... ... ... ... \n", + "18806 121601 United Kingdom 6.0 Sellafield NaN 54.0 \n", + "18807 121602 United Kingdom 6.0 Sellafield NaN 54.0 \n", + "18848 121643 United Kingdom 10.0 Hartlepool NaN 54.0 \n", + "18849 121644 United Kingdom 10.0 Sizewell NaN 52.0 \n", + "18850 121645 United Kingdom 10.0 Sizewell NaN 52.0 \n", + "\n", + " LatM LatS LatDir LongD ... Sampling date Nuclide Value type \\\n", + "411 50.0 51.0 N 8.0 ... 08/07/2010 239,240Pu = \n", + "412 59.0 58.0 N 7.0 ... 08/07/2010 239,240Pu = \n", + "413 3.0 30.0 N 10.0 ... 11/11/2010 239,240Pu = \n", + "414 58.0 52.0 N 8.0 ... 07/07/2010 99Tc = \n", + "415 6.0 34.0 N 8.0 ... 07/07/2010 99Tc = \n", + "... ... ... ... ... ... ... ... ... \n", + "18806 29.0 20.0 N 3.0 ... 01/07/2021 99Tc < \n", + "18807 29.0 20.0 N 3.0 ... 01/07/2021 137Cs < \n", + "18848 38.0 55.0 N 1.0 ... 01/07/2021 3H < \n", + "18849 9.0 17.0 N 1.0 ... 01/07/2021 3H < \n", + "18850 9.0 17.0 N 1.0 ... 01/07/2021 137Cs < \n", + "\n", + " Activity or MDA Uncertainty Unit \\\n", + "411 0.000007 0.000001 Bq/l \n", + "412 0.000005 0.000001 Bq/l \n", + "413 0.000004 0.000002 Bq/l \n", + "414 0.000390 0.000025 Bq/l \n", + "415 0.000380 0.000025 Bq/l \n", + "... ... ... ... \n", + "18806 0.045000 NaN Bq/l \n", + "18807 0.138000 NaN Bq/l \n", + "18848 4.250000 NaN Bq/l \n", + "18849 3.750000 NaN Bq/l \n", + "18850 0.260000 NaN Bq/l \n", + "\n", + " Data provider Measurement Comment \\\n", + "411 Norwegian Radiation Protection Authority NaN \n", + "412 Norwegian Radiation Protection Authority NaN \n", + "413 Norwegian Radiation Protection Authority NaN \n", + "414 Institute for Marine Research NaN \n", + "415 Institute for Marine Research NaN \n", + "... ... ... \n", + "18806 EA-Environment Agency NaN \n", + "18807 EA-Environment Agency NaN \n", + "18848 EA-Environment Agency NaN \n", + "18849 EA-Environment Agency NaN \n", + "18850 EA-Environment Agency NaN \n", + "\n", + " Sample Comment Reference Comment \n", + "411 NaN NaN \n", + "412 NaN NaN \n", + "413 NaN NaN \n", + "414 NaN NaN \n", + "415 NaN NaN \n", + "... ... ... \n", + "18806 St Bees W. Average of 2 samples, representativ... NaN \n", + "18807 St Bees W. Average of 2 samples, representativ... NaN \n", + "18848 North Gare. Average of 2 samples, representati... NaN \n", + "18849 Local beach. Average of 2 samples, representat... NaN \n", + "18850 Local beach. Average of 2 samples, representat... NaN \n", + "\n", + "[7296 rows x 25 columns]" + ] + }, + "execution_count": 110, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nan_sample_id_rows = ospar_dfs[grp][ospar_dfs[grp]['Sample ID'].isna()]\n", + "nan_sample_id_rows" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are 7477 rows where the sample_id is duplicated (and not nan). \n", + "- Number of duplicate rows that are not nan : 7477 - 7296 = 181\n", + "- Number of 'Sample ID' with a duplicate: 181 / 2 = 90.5\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Can we find a unique compound_idx for OSPAR Biota?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Rows where the lat/long and sampling date are the same;" + ] + }, + { + "cell_type": "code", + "execution_count": 114, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "8223" + ] + }, + "execution_count": 114, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "compound_idx =['LatD', 'LatM', 'LatS', 'LatDir', 'LongD', 'LongM',\n", + " 'LongS', 'LongDir', 'Sampling date']\n", + "ospar_dfs[grp][compound_idx].duplicated().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "A large amount of OSPAR data include the same position and time, below we will include the 'Sample ID' in the compound index. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Rows where the lat/long, sampling date, nuclide and sample ID are the same;" + ] + }, + { + "cell_type": "code", + "execution_count": 118, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of duplicated rows: 834\n", + "\n", + "Grouped identical rows with full compound index:\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "71628 France 1.0 CONCARNEAU 201122066 47.0 47.0 33.0 N 3.0 50.0 54.0 W WATER 0.0 30/08/2011 3H = 0.00117 0.00008 Bq/l IRSN : LRC/LS3E/RSMASS NaN NaN NaN\n", + "71638 France 1.0 CONCARNEAU 201122066 47.0 47.0 33.0 N 3.0 50.0 54.0 W WATER 0.0 30/08/2011 3H = 0.15000 0.01110 Bq/l IRSN : LRC/LS3E/RSMASS NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "71633 France 1.0 ROSCOFF 201122065 48.0 43.0 40.0 N 3.0 59.0 20.0 W WATER 0.0 29/08/2011 3H = 0.00136 0.00008 Bq/l IRSN : LRC/LS3E/RSMASS NaN NaN NaN\n", + "71643 France 1.0 ROSCOFF 201122065 48.0 43.0 40.0 N 3.0 59.0 20.0 W WATER 0.0 29/08/2011 3H = 0.20000 0.01400 Bq/l IRSN : LRC/LS3E/RSMASS NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89458 Norway 10.0 North sea 469 (sed. St. 15) 58.0 1.0 39.0 N 5.0 45.0 42.0 E WATER 0.0 05/07/2013 239,240Pu = 0.000003 0.000001 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89459 Norway 10.0 North sea 469 (sed. St. 15) 58.0 1.0 39.0 N 5.0 45.0 42.0 E WATER 0.0 05/07/2013 239,240Pu = 0.000011 0.000002 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89460 Norway 7.0 North sea 566 (sed. St. 10) 59.0 16.0 49.0 N 2.0 13.0 47.0 W WATER 0.0 21/07/2013 239,240Pu = 0.000039 0.000004 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89461 Norway 7.0 North sea 566 (sed. St. 10) 59.0 16.0 49.0 N 2.0 13.0 47.0 W WATER 0.0 21/07/2013 239,240Pu = 0.000039 0.000004 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89462 Norway 10.0 North sea 600 (sed. St. 4) 60.0 45.0 10.0 N 4.0 26.0 56.0 E WATER 0.0 01/08/2013 239,240Pu = 0.000006 0.000001 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89463 Norway 10.0 North sea 600 (sed. St. 4) 60.0 45.0 10.0 N 4.0 26.0 56.0 E WATER 0.0 01/08/2013 239,240Pu = 0.000009 0.000003 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Grouped identical rows without 'Sample ID':\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "71628 France 1.0 CONCARNEAU 201122066 47.0 47.0 33.0 N 3.0 50.0 54.0 W WATER 0.0 30/08/2011 3H = 0.00117 0.00008 Bq/l IRSN : LRC/LS3E/RSMASS NaN NaN NaN\n", + "71638 France 1.0 CONCARNEAU 201122066 47.0 47.0 33.0 N 3.0 50.0 54.0 W WATER 0.0 30/08/2011 3H = 0.15000 0.01110 Bq/l IRSN : LRC/LS3E/RSMASS NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "71633 France 1.0 ROSCOFF 201122065 48.0 43.0 40.0 N 3.0 59.0 20.0 W WATER 0.0 29/08/2011 3H = 0.00136 0.00008 Bq/l IRSN : LRC/LS3E/RSMASS NaN NaN NaN\n", + "71643 France 1.0 ROSCOFF 201122065 48.0 43.0 40.0 N 3.0 59.0 20.0 W WATER 0.0 29/08/2011 3H = 0.20000 0.01400 Bq/l IRSN : LRC/LS3E/RSMASS NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + " 98469 United Kingdom 3.0 Dungeness NaN 50.0 54.0 43.0 N 0.0 56.0 17.0 E WATER 0.0 01/07/2019 137Cs < 0.24 NaN Bq/l EA-Environment Agency NaN Dungeness south coast. Average of 2 samples, representative sampling date. No sampling number. NaN\n", + "118989 United Kingdom 3.0 Dungeness NaN 50.0 54.0 43.0 N 0.0 56.0 17.0 E WATER 0.0 01/07/2019 137Cs < 0.19 NaN Bq/l EA-Environment Agency NaN Dungeness south coast. Average of 2 samples, representative sampling date. No sampling number. NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + " 98468 United Kingdom 3.0 Dungeness NaN 50.0 54.0 43.0 N 0.0 56.0 17.0 E WATER 0.0 01/07/2019 3H < 2.75 NaN Bq/l EA-Environment Agency NaN Dungeness south coast. Average of 2 samples, representative sampling date. No sampling number. NaN\n", + "118988 United Kingdom 3.0 Dungeness NaN 50.0 54.0 43.0 N 0.0 56.0 17.0 E WATER 0.0 01/07/2019 3H < 3.10 NaN Bq/l EA-Environment Agency NaN Dungeness south coast. Average of 2 samples, representative sampling date. No sampling number. NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "50409 Ireland 4.0 Greenore NaN 54.0 1.0 53.0 N 6.0 7.0 47.0 W Water 0.0 01/10/1997 137Cs = 0.0430 0.005375 Bq/l Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "50410 Ireland 4.0 Greenore NaN 54.0 1.0 53.0 N 6.0 7.0 47.0 W Water 0.0 01/10/1997 137Cs = 0.0061 0.000763 Bq/l Radiological Protection Instiute of Ireland Uncertainty value estimated Representative sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + " 98472 United Kingdom 6.0 Sellafield NaN 54.0 29.0 20.0 N 3.0 36.0 25.0 W WATER 0.0 01/07/2019 137Cs < 0.205 NaN Bq/l EA-Environment Agency NaN St Bees W. Average of 2 samples, representative sampling date. No sampling number. (Used filtrate water result) NaN\n", + "118998 United Kingdom 6.0 Sellafield NaN 54.0 29.0 20.0 N 3.0 36.0 25.0 W WATER 0.0 01/07/2019 137Cs < 0.260 NaN Bq/l EA-Environment Agency NaN St Bees W. Average of 2 samples, representative sampling date. No sampling number. (Used filtrate water result) NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + " 98470 United Kingdom 6.0 Sellafield NaN 54.0 29.0 20.0 N 3.0 36.0 25.0 W WATER 0.0 01/07/2019 3H = 11.85 0.5925 Bq/l EA-Environment Agency 5% uncertainty assumed St Bees W. Average of 2 samples, representative sampling date. No sampling number. (Used filtrate water result) NaN\n", + "118996 United Kingdom 6.0 Sellafield NaN 54.0 29.0 20.0 N 3.0 36.0 25.0 W WATER 0.0 01/07/2019 3H < 4.00 NaN Bq/l EA-Environment Agency 5% uncertainty assumed St Bees W. Average of 2 samples, representative sampling date. No sampling number. (Used filtrate water result) NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + " 98471 United Kingdom 6.0 Sellafield NaN 54.0 29.0 20.0 N 3.0 36.0 25.0 W WATER 0.0 01/07/2019 99Tc < 0.1345 NaN Bq/l EA-Environment Agency NaN St Bees W. Average of 2 samples, representative sampling date. No sampling number. (Used filtrate water result) NaN\n", + "118997 United Kingdom 6.0 Sellafield NaN 54.0 29.0 20.0 N 3.0 36.0 25.0 W WATER 0.0 01/07/2019 99Tc < 0.0620 NaN Bq/l EA-Environment Agency NaN St Bees W. Average of 2 samples, representative sampling date. No sampling number. (Used filtrate water result) NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73874 Norway 10.0 Egersundsbanken St.1179 NaN 57.0 12.0 24.0 N 5.0 45.0 24.0 E WATER 50.0 01/11/2002 226Ra = 0.0012 0.000136 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73884 Norway 10.0 Egersundsbanken St.1179 NaN 57.0 12.0 24.0 N 5.0 45.0 24.0 E WATER 25.0 01/11/2002 226Ra = 0.0015 0.000175 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73887 Norway 10.0 Egersundsbanken St.1179 NaN 57.0 12.0 24.0 N 5.0 45.0 24.0 E WATER 0.0 01/11/2002 226Ra = 0.0015 0.000178 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73870 Norway 10.0 Station 1201 NaN 57.0 44.0 52.0 N 5.0 6.0 31.0 E WATER 50.0 01/11/2002 226Ra = 0.0013 0.000156 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73879 Norway 10.0 Egersundsbanken St.1201 NaN 57.0 44.0 52.0 N 5.0 6.0 31.0 E WATER 0.0 01/11/2002 226Ra = 0.0015 0.000174 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73881 Norway 10.0 Station 1201 NaN 57.0 44.0 52.0 N 5.0 6.0 31.0 E WATER 100.0 01/11/2002 226Ra = 0.0014 0.000165 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14960 Norway 10.0 CTD-514 NaN 57.0 51.0 36.0 N 5.0 48.0 0.0 E WATER 0.0 09/07/2008 137Cs = 0.0059 0.0006 Bq/l Institute of Marine Research NaN NaN NaN\n", + "14961 Norway 10.0 CTD-514 NaN 57.0 51.0 36.0 N 5.0 48.0 0.0 E WATER 205.0 09/07/2008 137Cs = 0.0014 0.0006 Bq/l Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14963 Norway 10.0 CTD-514 NaN 57.0 51.0 36.0 N 5.0 48.0 0.0 E WATER 0.0 09/07/2008 99Tc = 0.00072 0.00004 Bq/l Institute of Marine Research NaN NaN NaN\n", + "14964 Norway 10.0 CTD-514 NaN 57.0 51.0 36.0 N 5.0 48.0 0.0 E WATER 205.0 09/07/2008 99Tc = 0.00029 0.00004 Bq/l Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89458 Norway 10.0 North sea 469 (sed. St. 15) 58.0 1.0 39.0 N 5.0 45.0 42.0 E WATER 0.0 05/07/2013 239,240Pu = 0.000003 0.000001 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89459 Norway 10.0 North sea 469 (sed. St. 15) 58.0 1.0 39.0 N 5.0 45.0 42.0 E WATER 0.0 05/07/2013 239,240Pu = 0.000011 0.000002 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89157 Norway 10.0 497 NaN 58.0 1.0 48.0 N 5.0 45.0 35.0 E WATER 5.0 30/07/2016 137Cs = 0.0050 0.00035 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89158 Norway 10.0 497 NaN 58.0 1.0 48.0 N 5.0 45.0 35.0 E WATER 277.0 30/07/2016 137Cs = 0.0014 0.00010 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "75809 Norway 10.0 Lista NaN 58.0 7.0 48.0 N 6.0 34.0 48.0 E WATER 0.0 01/07/2006 99Tc = 0.00075 0.00012 Bq/l IFE NaN Estimated sampling date NaN\n", + "75810 Norway 10.0 Lista NaN 58.0 7.0 48.0 N 6.0 34.0 48.0 E WATER 0.0 01/07/2006 99Tc = 0.00076 0.00012 Bq/l IFE NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72801 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/1999 99Tc = 0.0047 0.00047 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72802 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/1999 99Tc = 0.0072 0.00072 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73342 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2002 99Tc = 0.00130 0.000130 Bq/l NRPA Estimated uncertainty Assuming sampling depth = 0. assuming sampling date 1.7. Representative coordinates NaN\n", + "73343 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2002 99Tc = 0.00205 0.000205 Bq/l NRPA Estimated uncertainty Assuming sampling depth = 0. assuming sampling date 1.7. Representative coordinates NaN\n", + "73344 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2002 99Tc = 0.00172 0.000172 Bq/l NRPA Estimated uncertainty Assuming sampling depth = 0. assuming sampling date 1.7. Representative coordinates NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74809 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2004 137Cs = 0.0114 0.00114 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74810 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2004 137Cs = 0.0086 0.00086 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74811 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2004 137Cs = 0.0063 0.00063 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74886 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2004 226Ra = 0.002542 0.000254 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74887 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2004 226Ra = 0.002166 0.000217 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74888 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2004 226Ra = 0.002241 0.000224 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74889 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2004 226Ra = 0.001288 0.000129 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 4\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74851 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000003 3.500000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74852 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000005 5.500000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "75343 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2005 226Ra = 0.0051 0.00051 Bq/l IMR Estimated uncertainty Representative coordinate, estimated sampling date NaN\n", + "75344 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/07/2005 226Ra = 0.0019 0.00019 Bq/l IMR Estimated uncertainty Representative coordinate, estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "71731 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/11/1997 137Cs = 0.0202 0.00202 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71732 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/11/1997 137Cs = 0.0083 0.00083 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71733 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/11/1997 137Cs = 0.0086 0.00086 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71734 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/11/1997 137Cs = 0.0218 0.00218 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71735 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 01/11/1997 137Cs = 0.0267 0.00267 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "Count: 5\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "75273 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 21/09/2005 137Cs = 0.0092 0.00055 Bq/l IMR NaN Representative coordinate NaN\n", + "75275 Norway 11.0 Skagerrak NaN 58.0 14.0 35.0 N 9.0 35.0 6.0 E WATER 0.0 21/09/2005 137Cs = 0.0049 0.00002 Bq/l IMR NaN Representative coordinate NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73867 Norway 10.0 Sleipner St.1203 NaN 58.0 21.0 47.0 N 1.0 47.0 21.0 E WATER 0.0 01/11/2002 226Ra = 0.0014 0.000166 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73873 Norway 10.0 Sleipner St.1203 NaN 58.0 21.0 47.0 N 1.0 47.0 21.0 E WATER 45.0 01/11/2002 226Ra = 0.0012 0.000144 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73883 Norway 10.0 Sleipner St.1203 NaN 58.0 21.0 47.0 N 1.0 47.0 21.0 E WATER 90.0 01/11/2002 226Ra = 0.0013 0.000150 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73872 Norway 10.0 Sleipner St.1202 NaN 58.0 22.0 13.0 N 2.0 2.0 32.0 E WATER 40.0 01/11/2002 226Ra = 0.0015 0.000177 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73878 Norway 10.0 Sleipner St.1202 NaN 58.0 22.0 13.0 N 2.0 2.0 32.0 E WATER 0.0 01/11/2002 226Ra = 0.0016 0.000182 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73880 Norway 10.0 Sleipner St.1202 NaN 58.0 22.0 13.0 N 2.0 2.0 32.0 E WATER 75.0 01/11/2002 226Ra = 0.0013 0.000157 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73875 Norway 10.0 Sleipner St.1204 NaN 58.0 23.0 10.0 N 2.0 0.0 20.0 E WATER 0.0 01/11/2002 226Ra = 0.0025 0.000287 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73877 Norway 10.0 Sleipner St.1204 NaN 58.0 23.0 10.0 N 2.0 0.0 20.0 E WATER 75.0 01/11/2002 226Ra = 0.0014 0.000154 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73882 Norway 10.0 Sleipner St.1204 NaN 58.0 23.0 10.0 N 2.0 0.0 20.0 E WATER 40.0 01/11/2002 226Ra = 0.0012 0.000147 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "75811 Norway 11.0 Tromøy NaN 58.0 28.0 11.0 N 8.0 49.0 45.0 E WATER 0.0 01/07/2006 99Tc = 0.00056 0.00010 Bq/l IFE NaN Estimated sampling date NaN\n", + "75812 Norway 11.0 Tromøy NaN 58.0 28.0 11.0 N 8.0 49.0 45.0 E WATER 0.0 01/07/2006 99Tc = 0.00045 0.00009 Bq/l IFE NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "75807 Norway 11.0 Tjøme NaN 59.0 3.0 30.0 N 10.0 24.0 34.0 E WATER 0.0 01/07/2006 99Tc = 0.00059 0.00012 Bq/l NRPA NaN Estimated sampling date NaN\n", + "75808 Norway 11.0 Tjøme NaN 59.0 3.0 30.0 N 10.0 24.0 34.0 E WATER 0.0 01/07/2006 99Tc = 0.00051 0.00009 Bq/l NRPA NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89160 Norway 7.0 527 NaN 59.0 16.0 48.0 N 3.0 46.0 12.0 W WATER 5.0 10/08/2016 137Cs = 0.0037 0.00025 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89161 Norway 7.0 527 NaN 59.0 16.0 48.0 N 3.0 46.0 12.0 W WATER 69.0 10/08/2016 137Cs = 0.0035 0.00025 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89169 Norway 7.0 527 NaN 59.0 16.0 48.0 N 3.0 46.0 12.0 W WATER 5.0 10/08/2016 239,240Pu = 0.000037 0.000002 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89170 Norway 7.0 527 NaN 59.0 16.0 48.0 N 3.0 46.0 12.0 W WATER 69.0 10/08/2016 239,240Pu = 0.000039 0.000003 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14955 Norway 10.0 CTD-557 NaN 59.0 16.0 48.0 N 4.0 49.0 48.0 E WATER 0.0 18/07/2008 99Tc = 0.00117 0.00006 Bq/l Institute of Marine Research NaN NaN NaN\n", + "14956 Norway 10.0 CTD-557 NaN 59.0 16.0 48.0 N 4.0 49.0 48.0 E WATER 176.0 18/07/2008 99Tc = 0.00080 0.00004 Bq/l Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89423 Norway 7.0 Nordsjøen NaN 59.0 16.0 49.0 N 2.0 13.0 47.0 W WATER 0.0 21/07/2013 137Cs = 0.004132 0.000893 Bq/l Institute for Marine Research NaN NaN NaN\n", + "89424 Norway 7.0 Nordsjøen NaN 59.0 16.0 49.0 N 2.0 13.0 47.0 W WATER 0.0 21/07/2013 137Cs = 0.004193 0.000833 Bq/l Institute for Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89460 Norway 7.0 North sea 566 (sed. St. 10) 59.0 16.0 49.0 N 2.0 13.0 47.0 W WATER 0.0 21/07/2013 239,240Pu = 0.000039 0.000004 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89461 Norway 7.0 North sea 566 (sed. St. 10) 59.0 16.0 49.0 N 2.0 13.0 47.0 W WATER 0.0 21/07/2013 239,240Pu = 0.000039 0.000004 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72798 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/1999 99Tc = 0.00245 0.000245 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72799 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/1999 99Tc = 0.00360 0.000360 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72800 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/1999 99Tc = 0.00460 0.000460 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74857 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001382 0.000138 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74858 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001243 0.000124 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74859 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.002935 0.000293 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74860 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001539 0.000154 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74861 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001861 0.000186 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74862 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001289 0.000129 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74863 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001758 0.000176 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74864 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.002749 0.000275 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74865 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001659 0.000166 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74866 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001716 0.000172 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74867 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001082 0.000108 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74868 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001850 0.000185 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74869 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001642 0.000164 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74870 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.002528 0.000253 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74871 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001687 0.000169 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74872 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001407 0.000141 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74873 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001398 0.000140 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74874 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001237 0.000124 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74875 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001623 0.000162 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74876 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001031 0.000103 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74877 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 226Ra = 0.001928 0.000193 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 21\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74878 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 228Ra = 0.003089 0.000309 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74879 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 228Ra = 0.000898 0.000090 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74880 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 228Ra = 0.000277 0.000028 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74881 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 228Ra = 0.002334 0.000233 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74882 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 228Ra = 0.000258 0.000026 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74883 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 228Ra = 0.000121 0.000012 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74884 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 228Ra = 0.001888 0.000189 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74885 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 228Ra = 0.000279 0.000028 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 8\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74842 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000005 5.500000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74843 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000006 6.500000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74844 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000006 6.400000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74845 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000006 6.100000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74846 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000010 9.800000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74847 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000006 6.300000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74848 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000006 5.700000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74849 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000024 2.400000e-06 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74850 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000012 1.160000e-06 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 9\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "75338 Norway 10.0 North sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2005 226Ra = 0.0022 0.00022 Bq/l IMR Estimated uncertainty Representative coordinate, estimated sampling date NaN\n", + "75341 Norway 10.0 North sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2005 226Ra = 0.0009 0.00009 Bq/l IMR Estimated uncertainty Representative coordinate, estimated sampling date NaN\n", + "75342 Norway 10.0 North sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2005 226Ra = 0.0013 0.00013 Bq/l IMR Estimated uncertainty Representative coordinate, estimated sampling date NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "75310 Norway 10.0 North sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2005 239,240Pu = 0.000019 0.000002 Bq/l IMR Estimated uncertainty Representative coordinate, estimated sampling date NaN\n", + "75312 Norway 10.0 North sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/07/2005 239,240Pu = 0.000029 0.000003 Bq/l IMR Estimated uncertainty Representative coordinate, estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "71719 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0025 0.00025 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71720 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0076 0.00076 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71721 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0063 0.00063 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71722 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0029 0.00029 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71723 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0117 0.00117 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71724 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0036 0.00036 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71725 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0025 0.00025 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71726 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0058 0.00058 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71727 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0081 0.00081 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71728 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0036 0.00036 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71729 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0098 0.00098 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "71730 Norway 10.0 North Sea NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 01/11/1997 137Cs = 0.0067 0.00067 Bq/l IMR Estimated uncertainty sampling date: November 1997, estimated to 1. November 1997. Estimated Sampling depth. Estimated coordinates NaN\n", + "Count: 12\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "75339 Norway 10.0 489/490 NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 06/09/2005 226Ra = 0.0018 2.000000e-07 Bq/l IMR NaN Representative coordinate NaN\n", + "75340 Norway 10.0 491 NaN 59.0 20.0 10.0 N 2.0 29.0 32.0 E WATER 0.0 06/09/2005 226Ra = 0.0019 2.000000e-07 Bq/l IMR NaN Representative coordinate NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89153 Norway 10.0 465 NaN 60.0 45.0 0.0 N 1.0 30.0 0.0 E WATER 5.0 24/07/2016 137Cs = 0.0021 0.00015 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89154 Norway 10.0 465 NaN 60.0 45.0 0.0 N 1.0 30.0 0.0 E WATER 142.0 24/07/2016 137Cs = 0.0014 0.00015 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89426 Norway 10.0 Nordsjøen NaN 60.0 45.0 10.0 N 4.0 26.0 56.0 E WATER 0.0 01/08/2013 137Cs = 0.0048 0.000829 Bq/l Institute for Marine Research NaN NaN NaN\n", + "89427 Norway 10.0 Nordsjøen NaN 60.0 45.0 10.0 N 4.0 26.0 56.0 E WATER 0.0 01/08/2013 137Cs = 0.0018 0.000462 Bq/l Institute for Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89462 Norway 10.0 North sea 600 (sed. St. 4) 60.0 45.0 10.0 N 4.0 26.0 56.0 E WATER 0.0 01/08/2013 239,240Pu = 0.000006 0.000001 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89463 Norway 10.0 North sea 600 (sed. St. 4) 60.0 45.0 10.0 N 4.0 26.0 56.0 E WATER 0.0 01/08/2013 239,240Pu = 0.000009 0.000003 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73869 Norway 10.0 Gullfaks st.1123 NaN 61.0 10.0 28.0 N 2.0 20.0 19.0 E WATER 0.0 01/11/2002 226Ra = 0.0016 0.000183 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73885 Norway 10.0 Gullfaks st.1123 NaN 61.0 10.0 28.0 N 2.0 20.0 19.0 E WATER 100.0 01/11/2002 226Ra = 0.0013 0.000162 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73889 Norway 10.0 Gullfaks st.1123 NaN 61.0 10.0 28.0 N 2.0 20.0 19.0 E WATER 195.0 01/11/2002 226Ra = 0.0011 0.000135 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73871 Norway 10.0 Gullfaks st.1125 NaN 61.0 10.0 34.0 N 2.0 8.0 50.0 E WATER 125.0 01/11/2002 226Ra = 0.0011 0.000136 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73876 Norway 10.0 Gullfaks st.1125 NaN 61.0 10.0 34.0 N 2.0 8.0 50.0 E WATER 75.0 01/11/2002 226Ra = 0.0012 0.000139 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73888 Norway 10.0 Gullfaks st.1125 NaN 61.0 10.0 34.0 N 2.0 8.0 50.0 E WATER 0.0 01/11/2002 226Ra = 0.0015 0.000175 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "73866 Norway 10.0 Gullfaks st.1124 NaN 61.0 13.0 41.0 N 2.0 12.0 42.0 E WATER 100.0 01/11/2002 226Ra = 0.0014 0.000164 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73868 Norway 10.0 Gullfaks st.1124 NaN 61.0 13.0 41.0 N 2.0 12.0 42.0 E WATER 190.0 01/11/2002 226Ra = 0.0009 0.000120 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "73886 Norway 10.0 Gullfaks st.1124 NaN 61.0 13.0 41.0 N 2.0 12.0 42.0 E WATER 0.0 01/11/2002 226Ra = 0.0014 0.000166 Bq/l IMR NaN Assuming IMR as data provider, sampling date November, assuming 1st of Nov. NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "85463 Norway 13.0 CTD 354 (utenfor Kristiansund) NaN 63.0 10.0 9.0 N 6.0 44.0 53.0 E WATER 0.0 10/06/2014 137Cs = 0.002944 0.000255 Bq/l Institute of Marine Research NaN NaN NaN\n", + "85464 Norway 13.0 CTD 354 (utenfor Kristiansund) NaN 63.0 10.0 9.0 N 6.0 44.0 53.0 E WATER 176.0 10/06/2014 137Cs = 0.001534 0.000125 Bq/l Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "85486 Norway 13.0 CTD 354 (utenfor Kristiansund) NaN 63.0 10.0 9.0 N 6.0 44.0 53.0 E WATER 0.0 10/06/2014 226Ra = 0.00185 0.00015 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "85487 Norway 13.0 CTD 354 (utenfor Kristiansund) NaN 63.0 10.0 9.0 N 6.0 44.0 53.0 E WATER 176.0 10/06/2014 226Ra = 0.00150 0.00013 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "85494 Norway 13.0 CTD 354 (utenfor Kristiansund) NaN 63.0 10.0 9.0 N 6.0 44.0 53.0 E WATER 0.0 10/06/2014 239,240Pu = 0.000003 3.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "85495 Norway 13.0 CTD 354 (utenfor Kristiansund) NaN 63.0 10.0 9.0 N 6.0 44.0 53.0 E WATER 176.0 10/06/2014 239,240Pu = 0.000007 6.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "85466 Norway 13.0 CTD 362 (øst for Draugen) NaN 64.0 24.0 11.0 N 7.0 51.0 50.0 E WATER 0.0 12/06/2014 137Cs = 0.002278 0.000197 Bq/l Institute of Marine Research NaN NaN NaN\n", + "85467 Norway 13.0 CTD 362 (øst for Draugen) NaN 64.0 24.0 11.0 N 7.0 51.0 50.0 E WATER 233.0 12/06/2014 137Cs = 0.001223 0.000099 Bq/l Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "85489 Norway 13.0 CTD 362 (øst for Draugen) NaN 64.0 24.0 11.0 N 7.0 51.0 50.0 E WATER 0.0 12/06/2014 226Ra = 0.00214 0.00018 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "85490 Norway 13.0 CTD 362 (øst for Draugen) NaN 64.0 24.0 11.0 N 7.0 51.0 50.0 E WATER 233.0 12/06/2014 226Ra = 0.00171 0.00014 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "85497 Norway 13.0 CTD 362 (øst for Draugen) NaN 64.0 24.0 11.0 N 7.0 51.0 50.0 E WATER 0.0 12/06/2014 239,240Pu = 0.000003 4.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "85498 Norway 13.0 CTD 362 (øst for Draugen) NaN 64.0 24.0 11.0 N 7.0 51.0 50.0 E WATER 233.0 12/06/2014 239,240Pu = 0.000007 5.500000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "76254 Norway 13.0 St 17/938 Nordland, 100m NaN 66.0 51.0 0.0 N 9.0 4.0 12.0 E WATER 100.0 30/10/2000 239,240Pu = 0.000013 0.000002 Bq/l Norwegian Radiation Protection Authority Uncertainties estimated to 10% NaN NaN\n", + "76255 Norway 13.0 St 17/938 Nordland, 307m NaN 66.0 51.0 0.0 N 9.0 4.0 12.0 E WATER 307.0 30/10/2000 239,240Pu = 0.000014 0.000003 Bq/l Norwegian Radiation Protection Authority Uncertainties estimated to 10% NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74890 Norway 13.0 Norwegian Sea NaN 67.0 8.0 16.0 N 11.0 23.0 12.0 E WATER 0.0 01/07/2004 226Ra = 0.001435 0.000144 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74891 Norway 13.0 Norwegian Sea NaN 67.0 8.0 16.0 N 11.0 23.0 12.0 E WATER 0.0 01/07/2004 226Ra = 0.001492 0.000149 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74892 Norway 13.0 Norwegian Sea NaN 67.0 8.0 16.0 N 11.0 23.0 12.0 E WATER 0.0 01/07/2004 228Ra = 0.000124 0.000012 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74893 Norway 13.0 Norwegian Sea NaN 67.0 8.0 16.0 N 11.0 23.0 12.0 E WATER 0.0 01/07/2004 228Ra = 0.000180 0.000018 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74853 Norway 13.0 Norwegian Sea NaN 67.0 8.0 16.0 N 11.0 23.0 12.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000004 3.600000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74854 Norway 13.0 Norwegian Sea NaN 67.0 8.0 16.0 N 11.0 23.0 12.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000007 6.800000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74855 Norway 13.0 Norwegian Sea NaN 67.0 8.0 16.0 N 11.0 23.0 12.0 E WATER 0.0 01/07/2004 239,240Pu = 0.000007 7.200000e-07 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "67988 Iceland 15.0 KG6 NaN 67.0 35.0 0.0 N 23.0 56.0 0.0 W WATER 0.0 09/02/2007 99Tc = 0.000068 0.000010 Bq/l DTU Nutech, DK 15% uncertainty assumed PW NaN\n", + "67989 Iceland 15.0 KG6 NaN 67.0 35.0 0.0 N 23.0 56.0 0.0 W WATER 220.0 09/02/2007 99Tc = 0.000096 0.000014 Bq/l DTU Nutech, DK 15% uncertainty assumed AIW NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "67992 Iceland 15.0 KG6 NaN 67.0 35.0 0.0 N 23.0 56.0 0.0 W WATER 250.0 17/05/2007 99Tc = 0.000089 0.000013 Bq/l DTU Nutech, DK 15% uncertainty assumed ASW NaN\n", + "67993 Iceland 15.0 KG6 NaN 67.0 35.0 0.0 N 23.0 56.0 0.0 W WATER 0.0 17/05/2007 99Tc = 0.000112 0.000017 Bq/l DTU Nutech, DK 15% uncertainty assumed AIW NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74382 Norway 13.0 Hillesøy NaN 69.0 38.0 28.0 N 17.0 58.0 18.0 E WATER 0.0 01/07/2003 239,240Pu = 0.000008 7.500000e-07 Bq/l NRPA Estimated uncertainty Estimated sampling date NaN\n", + "74383 Norway 13.0 Hillesøy NaN 69.0 38.0 28.0 N 17.0 58.0 18.0 E WATER 0.0 01/07/2003 239,240Pu = 0.000007 7.300000e-07 Bq/l NRPA Estimated uncertainty Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "75826 Norway 14.0 Grense Jakobselv NaN 69.0 46.0 35.0 N 30.0 49.0 47.0 E WATER 0.0 01/07/2006 99Tc = 0.00057 0.00010 Bq/l IFE NaN Estimated sampling date NaN\n", + "75827 Norway 14.0 Grense Jakobselv NaN 69.0 46.0 35.0 N 30.0 49.0 47.0 E WATER 0.0 01/07/2006 99Tc = 0.00037 0.00008 Bq/l IFE NaN Estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72835 Norway 15.0 Norwegian Sea NaN 70.0 21.0 53.0 N 6.0 24.0 39.0 E WATER 0.0 01/07/1999 239,240Pu = 0.000008 8.100000e-07 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72836 Norway 15.0 Norwegian Sea NaN 70.0 21.0 53.0 N 6.0 24.0 39.0 E WATER 0.0 01/07/1999 239,240Pu = 0.000007 6.600000e-07 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74833 Norway 15.0 Norwegian Sea NaN 70.0 21.0 53.0 N 6.0 24.0 39.0 E WATER 0.0 01/07/2004 99Tc = 0.00018 0.000018 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74834 Norway 15.0 Norwegian Sea NaN 70.0 21.0 53.0 N 6.0 24.0 39.0 E WATER 0.0 01/07/2004 99Tc = 0.00022 0.000022 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74835 Norway 15.0 Norwegian Sea NaN 70.0 21.0 53.0 N 6.0 24.0 39.0 E WATER 0.0 01/07/2004 99Tc = 0.00019 0.000019 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74836 Norway 15.0 Norwegian Sea NaN 70.0 21.0 53.0 N 6.0 24.0 39.0 E WATER 0.0 01/07/2004 99Tc = 0.00009 0.000009 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74837 Norway 15.0 Norwegian Sea NaN 70.0 21.0 53.0 N 6.0 24.0 39.0 E WATER 0.0 01/07/2004 99Tc = 0.00007 0.000007 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74838 Norway 15.0 Norwegian Sea NaN 70.0 21.0 53.0 N 6.0 24.0 39.0 E WATER 0.0 01/07/2004 99Tc = 0.00006 0.000006 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74839 Norway 15.0 Norwegian Sea NaN 70.0 21.0 53.0 N 6.0 24.0 39.0 E WATER 0.0 01/07/2004 99Tc = 0.00008 0.000008 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74840 Norway 15.0 Norwegian Sea NaN 70.0 21.0 53.0 N 6.0 24.0 39.0 E WATER 0.0 01/07/2004 99Tc = 0.00015 0.000015 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 8\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "86488 Norway 14.0 773 NaN 70.0 39.0 13.0 N 32.0 17.0 53.0 E Water 0.0 16/08/2015 210Po = 0.00166 0.00018 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "86489 Norway 14.0 773 NaN 70.0 39.0 13.0 N 32.0 17.0 53.0 E Water 289.0 16/08/2015 210Po = 0.00144 0.00016 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "86475 Norway 14.0 773 NaN 70.0 39.0 13.0 N 32.0 17.0 53.0 E Water 0.0 16/08/2015 226Ra = 0.00132 0.00024 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "86476 Norway 14.0 773 NaN 70.0 39.0 13.0 N 32.0 17.0 53.0 E Water 289.0 16/08/2015 226Ra = 0.00178 0.00029 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "86496 Norway 14.0 773 NaN 70.0 39.0 13.0 N 32.0 17.0 53.0 E Water 0.0 16/08/2015 3H < 4.6 NaN Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "86497 Norway 14.0 773 NaN 70.0 39.0 13.0 N 32.0 17.0 53.0 E Water 289.0 16/08/2015 3H < 4.6 NaN Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74380 Norway 13.0 Vest-Finnmark NaN 71.0 12.0 53.0 N 21.0 38.0 7.0 E WATER 0.0 01/07/2003 239,240Pu = 0.000006 5.800000e-07 Bq/l NRPA Estimated uncertainty Estimated coordinates and sampling date NaN\n", + "74381 Norway 13.0 Vest-Finnmark NaN 71.0 12.0 53.0 N 21.0 38.0 7.0 E WATER 0.0 01/07/2003 239,240Pu = 0.000006 5.600000e-07 Bq/l NRPA Estimated uncertainty Estimated coordinates and sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14984 Norway 14.0 CTD-404 NaN 71.0 15.0 0.0 N 28.0 43.0 48.0 E WATER 0.0 27/08/2008 239,240Pu = 0.000004 5.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "14985 Norway 14.0 CTD-404 NaN 71.0 15.0 0.0 N 28.0 43.0 48.0 E WATER 395.0 27/08/2008 239,240Pu = 0.000010 8.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14995 Norway 14.0 CTD-404 NaN 71.0 15.0 0.0 N 28.0 43.0 48.0 E WATER 0.0 27/08/2008 99Tc = 0.00035 0.000040 Bq/l Institute of Marine Research NaN NaN NaN\n", + "14996 Norway 14.0 CTD-404 NaN 71.0 15.0 0.0 N 28.0 43.0 48.0 E WATER 395.0 27/08/2008 99Tc = 0.00016 0.000014 Bq/l Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "19973 Norway 14.0 Kysten Finnmark NaN 71.0 21.0 6.0 N 27.0 27.0 0.0 E WATER 0.0 15/08/2007 137Cs = 0.0023 0.00015 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "19974 Norway 14.0 Kysten Finnmark NaN 71.0 21.0 6.0 N 27.0 27.0 0.0 E WATER 348.0 15/08/2007 137Cs = 0.0023 0.00015 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "19980 Norway 14.0 Kysten Finnmark NaN 71.0 21.0 6.0 N 27.0 27.0 0.0 E WATER 0.0 15/08/2007 99Tc = 0.00020 0.00001 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "19981 Norway 14.0 Kysten Finnmark NaN 71.0 21.0 6.0 N 27.0 27.0 0.0 E WATER 348.0 15/08/2007 99Tc = 0.00011 0.00001 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14986 Norway 14.0 CTD-417 NaN 71.0 48.0 0.0 N 36.0 4.0 12.0 E WATER 0.0 30/08/2008 239,240Pu = 0.000005 6.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "14987 Norway 14.0 CTD-417 NaN 71.0 48.0 0.0 N 36.0 4.0 12.0 E WATER 264.0 30/08/2008 239,240Pu = 0.000005 5.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14997 Norway 14.0 CTD-417 NaN 71.0 48.0 0.0 N 36.0 4.0 12.0 E WATER 0.0 30/08/2008 99Tc = 0.00011 0.00002 Bq/l Institute of Marine Research NaN NaN NaN\n", + "14998 Norway 14.0 CTD-417 NaN 71.0 48.0 0.0 N 36.0 4.0 12.0 E WATER 264.0 30/08/2008 99Tc = 0.00015 0.00002 Bq/l Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "19967 Norway 13.0 Barentshavet NaN 73.0 11.0 4.0 N 18.0 18.0 0.0 E WATER 0.0 15/08/2007 137Cs = 0.0021 0.0001 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "19968 Norway 13.0 Barentshavet NaN 73.0 11.0 4.0 N 18.0 18.0 0.0 E WATER 443.0 15/08/2007 137Cs = 0.0024 0.0002 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "19976 Norway 13.0 Barentshavet NaN 73.0 11.0 4.0 N 18.0 18.0 0.0 E WATER 0.0 15/08/2007 99Tc = 0.00026 0.00001 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "19977 Norway 13.0 Barentshavet NaN 73.0 11.0 4.0 N 18.0 18.0 0.0 E WATER 443.0 15/08/2007 99Tc = 0.00014 0.00001 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "86485 Norway 14.0 374 NaN 73.0 34.0 12.0 N 28.0 21.0 22.0 E Water 0.0 16/09/2015 210Po = 0.00206 0.00022 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "86486 Norway 14.0 NaN NaN 73.0 34.0 12.0 N 28.0 21.0 22.0 E Water 378.0 16/09/2015 210Po = 0.00127 0.00014 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "86472 Norway 14.0 374 NaN 73.0 34.0 12.0 N 28.0 21.0 22.0 E Water 0.0 16/09/2015 226Ra = 0.00127 0.00023 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "86473 Norway 14.0 NaN NaN 73.0 34.0 12.0 N 28.0 21.0 22.0 E Water 378.0 16/09/2015 226Ra = 0.00119 0.00020 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "86481 Norway 14.0 374 NaN 73.0 34.0 12.0 N 28.0 21.0 22.0 E Water 0.0 16/09/2015 228Ra = 0.000564 0.000069 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "86482 Norway 14.0 NaN NaN 73.0 34.0 12.0 N 28.0 21.0 22.0 E Water 378.0 16/09/2015 228Ra = 0.000630 0.000057 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "19982 Norway 15.0 Barentshavet-Komso-817 NaN 73.0 43.0 2.0 N 13.0 15.0 6.0 E WATER 0.0 15/08/2007 137Cs = 0.0026 0.0002 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "19983 Norway 15.0 Barentshavet-Komso-817 NaN 73.0 43.0 2.0 N 13.0 15.0 6.0 E WATER 1694.0 15/08/2007 137Cs = 0.0012 0.0001 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "19984 Norway 15.0 Barentshavet-Komso-817 NaN 73.0 43.0 2.0 N 13.0 15.0 6.0 E WATER 0.0 15/08/2007 99Tc = 0.00020 0.000012 Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "19985 Norway 15.0 Barentshavet-Komso-817 NaN 73.0 43.0 2.0 N 13.0 15.0 6.0 E WATER 1694.0 15/08/2007 99Tc < 0.00012 NaN Bq/l Institute of Marine Research NaN Sample collected in August 2007, so representative sampling date given. NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "9547 Norway 15.0 479-482 NaN 73.0 43.0 9.0 N 13.0 16.0 31.0 E WATER 0.0 16/08/2009 137Cs = 0.0021 0.0003 Bq/l Institute for Marine Research NaN NaN NaN\n", + "9548 Norway 15.0 479-482 NaN 73.0 43.0 9.0 N 13.0 16.0 31.0 E WATER 1681.0 16/08/2009 137Cs < 0.0019 NaN Bq/l Institute for Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "9551 Norway 15.0 479-482 NaN 73.0 43.0 9.0 N 13.0 16.0 31.0 E WATER 0.0 16/08/2009 239,240Pu = 0.000001 2.000000e-07 Bq/l Norweigian Radiation Protection Authority NaN NaN NaN\n", + "9552 Norway 15.0 479-482 NaN 73.0 43.0 9.0 N 13.0 16.0 31.0 E WATER 1681.0 16/08/2009 239,240Pu = 0.000012 1.300000e-06 Bq/l Norweigian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "9556 Norway 15.0 479-482 NaN 73.0 43.0 9.0 N 13.0 16.0 31.0 E WATER 0.0 16/08/2009 99Tc = 0.00014 0.00001 Bq/l Institute for Marine Research NaN NaN NaN\n", + "9557 Norway 15.0 479-482 NaN 73.0 43.0 9.0 N 13.0 16.0 31.0 E WATER 1681.0 16/08/2009 99Tc = 0.00003 0.00001 Bq/l Institute for Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89421 Norway 15.0 Norwegian Sea NaN 73.0 43.0 12.0 N 13.0 16.0 12.0 E WATER 0.0 07/04/2013 137Cs = 0.001355 0.000135 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89422 Norway 15.0 Norwegian Sea NaN 73.0 43.0 12.0 N 13.0 16.0 12.0 E WATER 1683.0 07/04/2013 137Cs = 0.000570 0.000090 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "85469 Norway 15.0 307 Komsomolets overflatevann NaN 73.0 43.0 24.0 N 13.0 16.0 7.0 E WATER 0.0 29/05/2014 137Cs = 0.001499 0.000263 Bq/l Institute of Marine Research NaN NaN NaN\n", + "85470 Norway 15.0 307, 1307, 2307, 3307 (Komsomolets bunnvann) NaN 73.0 43.0 24.0 N 13.0 16.0 7.0 E WATER 1673.0 29/05/2014 137Cs = 0.001049 0.000249 Bq/l Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "86442 Norway 15.0 NaN NaN 73.0 43.0 27.0 N 13.0 16.0 0.0 E Water 0.0 23/09/2015 137Cs = 0.001250 0.000217 Bq/l Institute of Marine Research NaN NaN NaN\n", + "86443 Norway 15.0 NaN NaN 73.0 43.0 27.0 N 13.0 16.0 0.0 E Water 1685.0 23/09/2015 137Cs = 0.000544 0.000088 Bq/l Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "86465 Norway 15.0 NaN NaN 73.0 43.0 27.0 N 13.0 16.0 0.0 E Water 0.0 23/09/2015 239,240Pu = 0.000003 8.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "86466 Norway 15.0 NaN NaN 73.0 43.0 27.0 N 13.0 16.0 0.0 E Water 1685.0 23/09/2015 239,240Pu = 0.000015 2.000000e-06 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89136 Norway 15.0 579 NaN 73.0 43.0 29.0 N 13.0 15.0 52.0 E WATER 1682.0 03/08/2016 137Cs = 0.0015 0.00020 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89137 Norway 15.0 579 NaN 73.0 43.0 29.0 N 13.0 15.0 52.0 E WATER 1682.0 03/08/2016 137Cs = 0.0008 0.00025 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "89163 Norway 15.0 579 NaN 73.0 43.0 29.0 N 13.0 15.0 52.0 E WATER 1682.0 03/08/2016 239,240Pu = 0.000004 7.500000e-07 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "89164 Norway 15.0 579 NaN 73.0 43.0 29.0 N 13.0 15.0 52.0 E WATER 1682.0 03/08/2016 239,240Pu = 0.000009 8.000000e-07 Bq/l Institute of Marine Research/Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "77340 Norway 15.0 626 NaN 73.0 43.0 30.06 N 13.0 15.0 36.12 E WATER 0.0 06/09/2011 137Cs = 0.0019 0.0006 Bq/l Institute for Marine Research NaN NaN NaN\n", + "77341 Norway 15.0 626 NaN 73.0 43.0 30.06 N 13.0 15.0 36.12 E WATER 1655.0 06/09/2011 137Cs = 0.0013 0.0004 Bq/l Institute for Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "77342 Norway 15.0 626 NaN 73.0 43.0 30.06 N 13.0 15.0 36.12 E WATER 0.0 06/09/2011 239,240Pu = 0.000002 7.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "77343 Norway 15.0 626 NaN 73.0 43.0 30.06 N 13.0 15.0 36.12 E WATER 1655.0 06/09/2011 239,240Pu = 0.000010 1.900000e-06 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "15016 Norway 15.0 CTD-372 NaN 73.0 43.0 48.0 N 13.0 16.0 12.0 E WATER 0.0 21/08/2008 239,240Pu = 0.000002 3.500000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "15017 Norway 15.0 CTD-372 NaN 73.0 43.0 48.0 N 13.0 16.0 12.0 E WATER 1693.0 21/08/2008 239,240Pu = 0.000012 1.000000e-06 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72814 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 137Cs = 0.0037 0.00037 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72815 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 137Cs = 0.0029 0.00029 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72816 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 137Cs = 0.0038 0.00038 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72817 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 137Cs = 0.0037 0.00037 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72818 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 137Cs = 0.0040 0.00040 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72819 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 137Cs = 0.0034 0.00034 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72820 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 137Cs = 0.0031 0.00031 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "Count: 7\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72829 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 239,240Pu = 0.000008 8.300000e-07 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72830 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 239,240Pu = 0.000010 1.000000e-06 Bq/l NRPA Estimated sampling date NaN Assuming NRPA as data provider\n", + "72831 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 239,240Pu = 0.000007 7.100000e-07 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72832 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 239,240Pu = 0.000009 8.000000e-07 Bq/l NRPA Estimated sampling date NaN Assuming NRPA as data provider\n", + "72833 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 239,240Pu = 0.000009 8.900000e-07 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72834 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 239,240Pu = 0.000007 5.000000e-07 Bq/l NRPA Estimated sampling date NaN Assuming NRPA as data provider\n", + "Count: 6\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "72821 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 99Tc = 0.00022 0.000022 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72822 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 99Tc = 0.00054 0.000054 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72823 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 99Tc = 0.00069 0.000069 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72824 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 99Tc = 0.00025 0.000025 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72825 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 99Tc = 0.00093 0.000093 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72826 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 99Tc = 0.00097 0.000097 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72827 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 99Tc = 0.00109 0.000109 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "72828 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/1999 99Tc = 0.00114 0.000114 Bq/l NRPA Estimated uncertainty, estimated coordinates and sampling date NaN Assuming NRPA as data provider\n", + "Count: 8\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74371 Norway 14.0 Barents sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/2003 99Tc = 0.00021 0.000021 Bq/l NRPA Estimated uncertainty Estimated coordinates and sampling date NaN\n", + "74373 Norway 14.0 Barents sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/2003 99Tc = 0.00017 0.000017 Bq/l NRPA Estimated uncertainty Estimated coordinates and sampling date NaN\n", + "74374 Norway 14.0 Barents sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/2003 99Tc = 0.00035 0.000035 Bq/l NRPA Estimated uncertainty Estimated coordinates and sampling date NaN\n", + "Count: 3\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "74831 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/2004 99Tc = 0.00019 0.000019 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "74832 Norway 14.0 Barents Sea NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/07/2004 99Tc = 0.00070 0.000070 Bq/l IMR Estimated uncertainty Representative coordinates and estimated sampling date NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "75327 Norway 14.0 608 NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/09/2005 239,240Pu = 0.000002 3.000000e-07 Bq/l IMR NaN Representative coordinate NaN\n", + "75331 Norway 14.0 473 NaN 74.0 42.0 47.0 N 28.0 7.0 34.0 E WATER 0.0 01/09/2005 239,240Pu = 0.000004 4.000000e-07 Bq/l IMR NaN Representative coordinate NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14988 Norway 14.0 CTD-441/442/443 NaN 75.0 0.0 0.0 N 31.0 13.0 12.0 E WATER 0.0 04/09/2008 239,240Pu = 0.000005 5.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "14989 Norway 14.0 CTD-441/442/443 NaN 75.0 0.0 0.0 N 31.0 13.0 12.0 E WATER 351.0 04/09/2008 239,240Pu = 0.000008 8.000000e-07 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "14999 Norway 14.0 CTD-441/442/443 NaN 75.0 0.0 0.0 N 31.0 13.0 12.0 E WATER 0.0 04/09/2008 99Tc = 0.00013 0.00002 Bq/l Institute of Marine Research NaN NaN NaN\n", + "15000 Norway 14.0 CTD-441/442/443 NaN 75.0 0.0 0.0 N 31.0 13.0 12.0 E WATER 351.0 04/09/2008 99Tc = 0.00016 0.00002 Bq/l Institute of Marine Research NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "9526 Norway 14.0 533 NaN 76.0 49.0 14.0 N 43.0 1.0 58.0 E WATER 0.0 03/09/2009 239,240Pu = 0.000043 6.000000e-07 Bq/l Norweigian Radiation Protection Authority NaN NaN NaN\n", + "9527 Norway 14.0 533 NaN 76.0 49.0 14.0 N 43.0 1.0 58.0 E WATER 221.0 03/09/2009 239,240Pu = 0.000005 5.000000e-07 Bq/l Norweigian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "76211 Norway 15.0 St 175-1a NaN 78.0 50.0 0.0 N 3.0 51.0 0.0 E WATER 0.0 04/08/2000 239,240Pu = 0.000004 0.000001 Bq/l Norwegian Radiation Protection Authority Uncertainties estimated to 10% NaN NaN\n", + "76212 Norway 15.0 St 175-1 NaN 78.0 50.0 0.0 N 3.0 51.0 0.0 E WATER 150.0 04/08/2000 239,240Pu = 0.000012 0.000003 Bq/l Norwegian Radiation Protection Authority Uncertainties estimated to 10% NaN NaN\n", + "76213 Norway 15.0 St 175-1 NaN 78.0 50.0 0.0 N 3.0 51.0 0.0 E WATER 500.0 04/08/2000 239,240Pu = 0.000009 0.000002 Bq/l Norwegian Radiation Protection Authority Uncertainties estimated to 10% NaN NaN\n", + "76214 Norway 15.0 St 175-1 NaN 78.0 50.0 0.0 N 3.0 51.0 0.0 E WATER 1000.0 04/08/2000 239,240Pu = 0.000011 0.000004 Bq/l Norwegian Radiation Protection Authority Uncertainties estimated to 10% NaN NaN\n", + "Count: 4\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "76746 Norway 15.0 Svalbard 5B surface NaN 78.0 54.0 30.0 N 7.0 46.0 50.0 E WATER 0.0 20/05/2001 239,240Pu = 0.000009 0.000001 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "76747 Norway 15.0 Svalbard 5E 100m NaN 78.0 54.0 30.0 N 7.0 46.0 50.0 E WATER 100.0 20/05/2001 239,240Pu = 0.000012 0.000002 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "76223 Norway 15.0 St 264-2 NaN 78.0 55.0 0.0 N 8.0 28.0 0.0 E WATER 100.0 08/08/2000 239,240Pu = 0.000007 0.000001 Bq/l Norwegian Radiation Protection Authority Uncertainties estimated to 10% NaN NaN\n", + "76224 Norway 15.0 St 264-2 NaN 78.0 55.0 0.0 N 8.0 28.0 0.0 E WATER 465.0 08/08/2000 239,240Pu = 0.000009 0.000001 Bq/l Norwegian Radiation Protection Authority Uncertainties estimated to 10% NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "76750 Norway 15.0 Svalbard 7B surface NaN 78.0 59.0 58.0 N 11.0 42.0 48.0 E WATER 0.0 21/05/2001 239,240Pu = 0.000007 0.000002 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "76751 Norway 15.0 Svalbard 7E 125m NaN 78.0 59.0 58.0 N 11.0 42.0 48.0 E WATER 125.0 21/05/2001 239,240Pu = 0.000006 0.000002 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n", + "\n", + "Group:\n", + " ID Contracting Party RSC Sub-division Station ID Sample ID LatD LatM LatS LatDir LongD LongM LongS LongDir Sample type Sampling depth Sampling date Nuclide Value type Activity or MDA Uncertainty Unit Data provider Measurement Comment Sample Comment Reference Comment\n", + "76748 Norway 15.0 Svalbard 6B surface NaN 79.0 1.0 50.0 N 9.0 54.0 0.0 E WATER 0.0 20/05/2001 239,240Pu = 0.000006 0.000001 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "76749 Norway 15.0 Svalbard 6E 150m NaN 79.0 1.0 50.0 N 9.0 54.0 0.0 E WATER 150.0 20/05/2001 239,240Pu = 0.000008 0.000001 Bq/l Norwegian Radiation Protection Authority NaN NaN NaN\n", + "Count: 2\n" + ] + } + ], + "source": [ + "compound_idx = ['LatD', 'LatM', 'LatS', 'LatDir', 'LongD', 'LongM',\n", + " 'LongS', 'LongDir', 'Sampling date','Nuclide', 'Sample ID']\n", + "\n", + "# Find duplicated rows\n", + "duplicated_rows = ospar_dfs[grp][ospar_dfs[grp][compound_idx].duplicated(keep=False)]\n", + "\n", + "# Print the number of duplicated rows\n", + "print(f'Number of duplicated rows: {len(duplicated_rows)}')\n", + "\n", + "# Group by the full compound index to find all identical rows\n", + "if not duplicated_rows.empty:\n", + " print(\"\\nGrouped identical rows with full compound index:\")\n", + " grouped_full = duplicated_rows.groupby(compound_idx)\n", + "\n", + " for compound_values, group in grouped_full:\n", + " count = len(group)\n", + " print(\"\\nGroup:\")\n", + " print(group.to_string(index=False)) # Print the group without the index\n", + " print(f\"Count: {count}\")\n", + "\n", + "# Remove 'Sample ID' from the compound index\n", + "compound_idx_without_sample_id = [col for col in compound_idx if col != 'Sample ID']\n", + "\n", + "# Group by the compound index without 'Sample ID'\n", + "if not duplicated_rows.empty:\n", + " print(\"\\nGrouped identical rows without 'Sample ID':\")\n", + " grouped_without_sample_id = duplicated_rows.groupby(compound_idx_without_sample_id)\n", + "\n", + " for compound_values, group in grouped_without_sample_id:\n", + " count = len(group)\n", + " print(\"\\nGroup:\")\n", + " print(group.to_string(index=False)) # Print the group without the index\n", + " print(f\"Count: {count}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are 834 rows that are problematic. Some are duplicated (include the Activity or MDA value). However there are some entries that have multiple Activity or MDA values reported for the same sample and nuclide. . \n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In total there is a small amount (4.42%) of the OSPAR biota dataset is duplicated. See;" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4.422995333050488" + ] + }, + "execution_count": 119, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "834/18856*100" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "python3", + "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.10.15" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}