From 7b565a1e38227f340f2b815e160d272758815160 Mon Sep 17 00:00:00 2001 From: Luke McDonald Date: Thu, 21 Oct 2021 14:43:37 +0100 Subject: [PATCH 1/6] Ignoring local dev folder --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0be5651..bbb7132 100755 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ __pycache__ *.log *.csv arctic_office_projects_api/bulk_importer/json/ +/_dev From c5383d03c692f7ce60a67c50b46e2043b924ba6b Mon Sep 17 00:00:00 2001 From: Luke McDonald Date: Fri, 29 Oct 2021 15:08:39 +0100 Subject: [PATCH 2/6] Mapping new organisations and research topics --- arctic_office_projects_api/importers/gtr.py | 38 ++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/arctic_office_projects_api/importers/gtr.py b/arctic_office_projects_api/importers/gtr.py index 02ae2f1..8164ac2 100644 --- a/arctic_office_projects_api/importers/gtr.py +++ b/arctic_office_projects_api/importers/gtr.py @@ -347,8 +347,11 @@ def _map_to_grid_id(self) -> str: # ESRC elif self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/924BE15C-91F2-4AAD-941A-3F338324B6AE': return 'https://www.grid.ac/institutes/grid.434257.3' + # BBSRC + elif self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/2512EF1C-401B-4222-9869-A770D4C5FAC7': + return 'https://www.grid.ac/institutes/grid.418100.c' # Innovate Uk - elif (self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/1DA78802-0659-4398-B40B-7FA41B56BBF3') or (self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/E18E2F0F-AC7D-4E02-9559-669F7C8FEC74'): + elif (self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/1DA78802-0659-4398-B40B-7FA41B56BBF3') or (self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/E18E2F0F-AC7D-4E02-9559-669F7C8FEC74') or (self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/052C4F5E-74CA-4A1D-B771-82891497D8F5'): return 'https://www.grid.ac/institutes/grid.423443.6' # Cranfield University elif self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/F45A4578-F962-4EFA-9CC1-9F2FF4F760AE': @@ -392,6 +395,9 @@ def _map_to_grid_id(self) -> str: # British Trust for Ornithology elif self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/A8BE8EF6-CDA2-41D4-A52B-B66A41997D1D': return 'https://www.grid.ac/institutes/grid.423196.b' + # University of the West of England + elif self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/2A80FFDA-3B8B-43BA-80C3-3AA850B49BA1': + return 'https://www.grid.ac/institutes/grid.6518.a' # Unknown elif self.resource_uri == 'https://gtr.ukri.org:443/gtr/api/organisations/F0C1AEFB-C222-4BF6-9CA3-8CF628494537': return None @@ -1756,6 +1762,18 @@ def _map_gtr_project_research_topic_to_category_term(gtr_research_topic: dict) - elif gtr_research_topic['id'] == 'A4209D5A-2E41-4290-9D1A-3172C1F48962': # SPECIES/POPULATION INTERACTIONS return 'https://gcmdservices.gsfc.nasa.gov/kms/concept/58f39353-7e1c-4884-9501-376cd0377fbf' + # # Water Engineering + # elif gtr_research_topic['id'] == '19789484-D6B8-4965-AD25-309DD43054A0': + # # GCMD term? + # return '' + # # Research Approaches + # elif gtr_research_topic['id'] == '24CF2F4A-1F56-4DD4-9EA6-B54452142544': + # # GCMD term? + # return '' + # # Plant developmental biolog + # elif gtr_research_topic['id'] == '023A4090-7FA5-4AFE-9071-DCC99F0221C4': + # # GCMD term? + # return '' # Analytical Science elif gtr_research_topic['id'] == '98EA7556-1427-44F9-84F3-BF99B7207302': return None @@ -1852,6 +1870,24 @@ def _map_gtr_project_research_topic_to_category_term(gtr_research_topic: dict) - # Earth Engineering elif gtr_research_topic['id'] == 'DEEA5CB1-59E6-4D82-92D6-DB74E180E6F7': return None + # Water Engineering + elif gtr_research_topic['id'] == '19789484-D6B8-4965-AD25-309DD43054A0': + return None + # Research approaches + elif gtr_research_topic['id'] == '63F3D26F-05D5-477D-9F77-C6C8AC47C7DD': + return None + # Plant developmental biology + elif gtr_research_topic['id'] == '023A4090-7FA5-4AFE-9071-DCC99F0221C4': + return None + # Energy Efficiency + elif gtr_research_topic['id'] == 'BE7CEC14-3FA2-49BC-89EE-062447C269C1': + return None + # Genomics + elif gtr_research_topic['id'] == '4661C82D-F66E-4672-BA82-7C12180BBDF7': + return None + # Instrumentation Eng. & Dev. + elif gtr_research_topic['id'] == 'F78E4567-DD59-4364-9D1F-0A778996E941': + return None # Unclassified elif gtr_research_topic['id'] == 'D05BC2E0-0345-4A3F-8C3F-775BC42A0819': return None From 0cac1c895932b6bac082881d4f53c47cc2027fd2 Mon Sep 17 00:00:00 2001 From: Luke McDonald Date: Fri, 29 Oct 2021 15:08:54 +0100 Subject: [PATCH 3/6] Unignore the import json folder --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index bbb7132..1a9d42c 100755 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,4 @@ __pycache__ /.idea *.log *.csv -arctic_office_projects_api/bulk_importer/json/ /_dev From 35b9d734d69092dd8695835e12109adfe134682e Mon Sep 17 00:00:00 2001 From: Luke McDonald Date: Fri, 29 Oct 2021 15:09:12 +0100 Subject: [PATCH 4/6] Adding new projects import file --- .../json/projects-2021-10-18.json | 2570 +++++++++++++++++ 1 file changed, 2570 insertions(+) create mode 100644 arctic_office_projects_api/bulk_importer/json/projects-2021-10-18.json diff --git a/arctic_office_projects_api/bulk_importer/json/projects-2021-10-18.json b/arctic_office_projects_api/bulk_importer/json/projects-2021-10-18.json new file mode 100644 index 0000000..6eb81e8 --- /dev/null +++ b/arctic_office_projects_api/bulk_importer/json/projects-2021-10-18.json @@ -0,0 +1,2570 @@ +{ + "data": [{ + "parent-id": null, + "id": 1, + "title": "Aerosol-Cloud Coupling And Climate Interactions in the Arctic", + "grant-reference": "NE/I028858/1", + "notes": "" + }, + { + "parent-id": 1, + "id": 2, + "title": "Aerosol-Cloud Coupling And Climate Interactions in the Arctic", + "grant-reference": "NE/I028653/1", + "notes": "" + }, + { + "parent-id": 1, + "id": 3, + "title": "Aerosol-Cloud Coupling And Climate Interactions in the Arctic", + "grant-reference": "NE/I028696/1", + "notes": "" + }, + { + "parent-id": 1, + "id": 4, + "title": "Aerosol-Cloud Coupling And Climate Interactions in the Arctic", + "grant-reference": "NE/I028769/1", + "notes": "" + }, + { + "parent-id": 1, + "id": 5, + "title": "Aerosol-Cloud Coupling And Climate Interactions in the Arctic", + "grant-reference": "NE/I028297/1", + "notes": "" + }, + { + "parent-id": null, + "id": 6, + "title": "Arctic Predictability and Prediction On Seasonal to Inter-annual Timescales", + "grant-reference": "NE/I029447/1", + "notes": "" + }, + { + "parent-id": 6, + "id": 7, + "title": "Arctic Predictability and Prediction On Seasonal to Inter-annual Timescales", + "grant-reference": "NE/I029137/1", + "notes": "" + }, + { + "parent-id": null, + "id": 8, + "title": "Carbon Cycling Linkages of Permafrost Sysems", + "grant-reference": "NE/K000292/1", + "notes": "" + }, + { + "parent-id": 8, + "id": 9, + "title": "Carbon Cycling Linkages of Permafrost Sysems", + "grant-reference": "NE/K000179/1", + "notes": "" + }, + { + "parent-id": 8, + "id": 10, + "title": "Carbon Cycling Linkages of Permafrost Sysems", + "grant-reference": " NE/K00025X/1", + "notes": "" + }, + { + "parent-id": 8, + "id": 11, + "title": "Carbon Cycling Linkages of Permafrost Sysems", + "grant-reference": "NE/K000241/1", + "notes": "" + }, + { + "parent-id": null, + "id": 12, + "title": "Lakes and the Arctic Carbon Cycle", + "grant-reference": "NE/K000349/1", + "notes": "" + }, + { + "parent-id": 12, + "id": 13, + "title": "Lakes and the Arctic Carbon Cycle", + "grant-reference": "NE/K000233/1", + "notes": "" + }, + { + "parent-id": 12, + "id": 14, + "title": "Lakes and the Arctic Carbon Cycle", + "grant-reference": "NE/K000276/1", + "notes": "" + }, + { + "parent-id": 12, + "id": 15, + "title": "Lakes and the Arctic Carbon Cycle", + "grant-reference": "NE/K000276/1", + "notes": "" + }, + { + "parent-id": null, + "id": 16, + "title": "Methane and Other Greenhouse Gases in the Arctic - Measurements, Process Studies and Modelling (MAMM)", + "grant-reference": "NE/I029161/1", + "notes": "" + }, + { + "parent-id": 16, + "id": 17, + "title": "Methane and Other Greenhouse Gases in the Arctic - Measurements, Process Studies and Modelling (MAMM)", + "grant-reference": "NE/I029293/1", + "notes": "" + }, + { + "parent-id": 16, + "id": 18, + "title": "Methane and Other Greenhouse Gases in the Arctic - Measurements, Process Studies and Modelling (MAMM)", + "grant-reference": "NE/I028327/1", + "notes": "" + }, + { + "parent-id": 16, + "id": 19, + "title": "Methane and Other Greenhouse Gases in the Arctic - Measurements, Process Studies and Modelling (MAMM)", + "grant-reference": "NE/I028874/1", + "notes": "" + }, + { + "parent-id": 16, + "id": 20, + "title": "Methane and Other Greenhouse Gases in the Arctic - Measurements, Process Studies and Modelling (MAMM)", + "grant-reference": "NE/I02934X/1", + "notes": "" + }, + { + "parent-id": null, + "id": 21, + "title": "Permafrost catchments in transition: hydrological controls on carbon cycling and greenhouse gas budgets", + "grant-reference": "NE/K000284/1", + "notes": "" + }, + { + "parent-id": 21, + "id": 22, + "title": "Permafrost catchments in transition: hydrological controls on carbon cycling and greenhouse gas budgets", + "grant-reference": " NE/K000217/1", + "notes": "" + }, + { + "parent-id": 21, + "id": 23, + "title": "Permafrost catchments in transition: hydrological controls on carbon cycling and greenhouse gas budgets", + "grant-reference": "NE/K000268/1", + "notes": "" + }, + { + "parent-id": 21, + "id": 24, + "title": "Permafrost catchments in transition: hydrological controls on carbon cycling and greenhouse gas budgets", + "grant-reference": "NE/K000225/1", + "notes": "" + }, + { + "parent-id": 21, + "id": 25, + "title": "Permafrost catchments in transition: hydrological controls on carbon cycling and greenhouse gas budgets", + "grant-reference": "NE/K000217/2", + "notes": "" + }, + { + "parent-id": 21, + "id": 26, + "title": "Permafrost catchments in transition: hydrological controls on carbon cycling and greenhouse gas budgets", + "grant-reference": "NE/K000284/2", + "notes": "" + }, + { + "parent-id": null, + "id": 27, + "title": "Submarine Estimates of Arctic Turbulance Spectra ", + "grant-reference": "NE/I028408/1", + "notes": "" + }, + { + "parent-id": null, + "id": 28, + "title": "The Environment of the Arctic:  Climate, Ocean and Sea Ice", + "grant-reference": "NE/I028947/1", + "notes": "" + }, + { + "parent-id": 28, + "id": 29, + "title": "The Environment of the Arctic:  Climate, Ocean and Sea Ice", + "grant-reference": "NE/I029439/1", + "notes": "" + }, + { + "parent-id": 28, + "id": 30, + "title": "The Environment of the Arctic:  Climate, Ocean and Sea Ice", + "grant-reference": "NE/I028831/1", + "notes": "" + }, + { + "parent-id": 28, + "id": 31, + "title": "The Environment of the Arctic:  Climate, Ocean and Sea Ice", + "grant-reference": "NE/I028939/1", + "notes": "" + }, + { + "parent-id": 28, + "id": 32, + "title": "The Environment of the Arctic:  Climate, Ocean and Sea Ice", + "grant-reference": "NE/I02867X/1", + "notes": "" + }, + { + "parent-id": 28, + "id": 33, + "title": "The Environment of the Arctic:  Climate, Ocean and Sea Ice", + "grant-reference": " NE/I029072/1", + "notes": "" + }, + { + "parent-id": 28, + "id": 34, + "title": "The Environment of the Arctic:  Climate, Ocean and Sea Ice", + "grant-reference": "NE/I029633/1", + "notes": "" + }, + { + "parent-id": 28, + "id": 35, + "title": "The Environment of the Arctic:  Climate, Ocean and Sea Ice", + "grant-reference": "NE/I029226/1", + "notes": "" + }, + { + "parent-id": null, + "id": 36, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K00008X/1", + "notes": "" + }, + { + "parent-id": 36, + "id": 37, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K00008X/2", + "notes": "" + }, + { + "parent-id": 36, + "id": 38, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K000152/1", + "notes": "" + }, + { + "parent-id": 36, + "id": 39, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K000160/1", + "notes": "" + }, + { + "parent-id": 36, + "id": 40, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K000063/1", + "notes": "" + }, + { + "parent-id": 36, + "id": 41, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K000055/2", + "notes": "" + }, + { + "parent-id": 36, + "id": 42, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K000144/2", + "notes": "" + }, + { + "parent-id": 36, + "id": 43, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K000136/1", + "notes": "" + }, + { + "parent-id": 36, + "id": 44, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K000187/1", + "notes": "" + }, + { + "parent-id": 36, + "id": 45, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K000144/1", + "notes": "" + }, + { + "parent-id": 36, + "id": 46, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K000055/1", + "notes": "" + }, + { + "parent-id": 36, + "id": 47, + "title": "Will climate change in the Arctic increase the landslide-tsunami risk to the UK?", + "grant-reference": "NE/K000047/1", + "notes": "" + }, + { + "parent-id": null, + "id": 48, + "title": "Advective pathways of nutrients and key ecological substances in the Arctic ", + "grant-reference": "NE/R012865/1", + "notes": "" + }, + { + "parent-id": null, + "id": 49, + "title": "Arctic PRoductivity in the seasonal Ice ZonE (Arctic PRIZE)", + "grant-reference": "NE/P006302/1", + "notes": "" + }, + { + "parent-id": 49, + "id": 50, + "title": "Arctic PRoductivity in the seasonal Ice ZonE (Arctic PRIZE)", + "grant-reference": "NE/P006086/1", + "notes": "" + }, + { + "parent-id": 49, + "id": 51, + "title": "Arctic PRoductivity in the seasonal Ice ZonE (Arctic PRIZE)", + "grant-reference": "NE/P006078/1", + "notes": "" + }, + { + "parent-id": 49, + "id": 52, + "title": "Arctic PRoductivity in the seasonal Ice ZonE (Arctic PRIZE)", + "grant-reference": "NE/P00573X/1", + "notes": "" + }, + { + "parent-id": 49, + "id": 53, + "title": "Arctic PRoductivity in the seasonal Ice ZonE (Arctic PRIZE)", + "grant-reference": "NE/P005721/1", + "notes": "" + }, + { + "parent-id": 49, + "id": 54, + "title": "Arctic PRoductivity in the seasonal Ice ZonE (Arctic PRIZE)", + "grant-reference": "NE/P006507/1", + "notes": "" + }, + { + "parent-id": null, + "id": 55, + "title": "Can we detect changes in Arctic ecosystems?", + "grant-reference": "NE/P006035/1", + "notes": "" + }, + { + "parent-id": 55, + "id": 56, + "title": "Can we detect changes in Arctic ecosystems?", + "grant-reference": " NE/P006000/1", + "notes": "" + }, + { + "parent-id": 55, + "id": 57, + "title": "Can we detect changes in Arctic ecosystems?", + "grant-reference": " NE/P006221/1", + "notes": "" + }, + { + "parent-id": 55, + "id": 58, + "title": "Can we detect changes in Arctic ecosystems?", + "grant-reference": "NE/P006310/1", + "notes": "" + }, + { + "parent-id": 55, + "id": 59, + "title": "Can we detect changes in Arctic ecosystems?", + "grant-reference": "NE/P005896/1", + "notes": "" + }, + { + "parent-id": 55, + "id": 60, + "title": "Can we detect changes in Arctic ecosystems?", + "grant-reference": "NE/P00623X/1", + "notes": "" + }, + { + "parent-id": null, + "id": 61, + "title": "Changing Arctic carbon cycle in the cOastal Ocean Near-shore", + "grant-reference": "NE/R012806/1", + "notes": "" + }, + { + "parent-id": 61, + "id": 62, + "title": "Changing Arctic carbon cycle in the cOastal Ocean Near-shore", + "grant-reference": "NE/R012814/1", + "notes": "" + }, + { + "parent-id": null, + "id": 63, + "title": "Chronobiology of changing Arctic Sea Ecosystems", + "grant-reference": "NE/R012733/1", + "notes": "" + }, + { + "parent-id": 63, + "id": 64, + "title": "Chronobiology of changing Arctic Sea Ecosystems", + "grant-reference": "NE/R012687/1", + "notes": "" + }, + { + "parent-id": null, + "id": 65, + "title": "Coldfish: potential benefits and risks of borealisation for fish stocks and ecosystems in a changing Arctic Ocean", + "grant-reference": "NE/R012520/1", + "notes": "" + }, + { + "parent-id": 65, + "id": 66, + "title": "Coldfish: potential benefits and risks of borealisation for fish stocks and ecosystems in a changing Arctic Ocean", + "grant-reference": "NE/R012563/1", + "notes": "" + }, + { + "parent-id": null, + "id": 67, + "title": "Diatom Autecological Responses with Changes To Ice Cover (Diatom-ARCTIC)", + "grant-reference": "NE/R012849/1", + "notes": "" + }, + { + "parent-id": null, + "id": 68, + "title": "Ecosystem functions controlled by sea ice and light in a changing Arctic (Eco-Light) ", + "grant-reference": "NE/R012725/1", + "notes": "" + }, + { + "parent-id": null, + "id": 69, + "title": "Effects of ice-associated stressors and pollutants on the Arctic marine cryosphere", + "grant-reference": "NE/R012857/1", + "notes": "" + }, + { + "parent-id": null, + "id": 70, + "title": "Mechanistic understanding of the role of diatoms in the success of the Arctic Calanus complex and implications for a warmer Arctic", + "grant-reference": "NE/P006280/2", + "notes": "" + }, + { + "parent-id": 70, + "id": 71, + "title": "Mechanistic understanding of the role of diatoms in the success of the Arctic Calanus complex and implications for a warmer Arctic", + "grant-reference": "NE/P006353/1", + "notes": "" + }, + { + "parent-id": 70, + "id": 72, + "title": "Mechanistic understanding of the role of diatoms in the success of the Arctic Calanus complex and implications for a warmer Arctic", + "grant-reference": " NE/P006183/1", + "notes": "" + }, + { + "parent-id": 70, + "id": 73, + "title": "Mechanistic understanding of the role of diatoms in the success of the Arctic Calanus complex and implications for a warmer Arctic", + "grant-reference": " NE/P00590X/1", + "notes": "" + }, + { + "parent-id": 70, + "id": 74, + "title": "Mechanistic understanding of the role of diatoms in the success of the Arctic Calanus complex and implications for a warmer Arctic", + "grant-reference": "NE/P005985/1", + "notes": "" + }, + { + "parent-id": 70, + "id": 75, + "title": "Mechanistic understanding of the role of diatoms in the success of the Arctic Calanus complex and implications for a warmer Arctic", + "grant-reference": "NE/P006213/1", + "notes": "" + }, + { + "parent-id": null, + "id": 76, + "title": "Microbes to Megafauna Modelling of Arctic Seas (MiMeMo)", + "grant-reference": "NE/R012571/1", + "notes": "" + }, + { + "parent-id": 76, + "id": 77, + "title": "Microbes to Megafauna Modelling of Arctic Seas (MiMeMo)", + "grant-reference": "NE/R012679/1", + "notes": "" + }, + { + "parent-id": null, + "id": 78, + "title": "Pathways and Emissions of climate-relevant Trace gases in a changing Arctic Ocean", + "grant-reference": "NE/R012830/1", + "notes": "" + }, + { + "parent-id": null, + "id": 79, + "title": "Primary productivity driven by escalating nutrient fluxes?", + "grant-reference": "NE/R01275X/1", + "notes": "" + }, + { + "parent-id": 79, + "id": 80, + "title": "Primary productivity driven by escalating nutrient fluxes?", + "grant-reference": "NE/R012547/1", + "notes": "" + }, + { + "parent-id": 79, + "id": 81, + "title": "Primary productivity driven by escalating nutrient fluxes?", + "grant-reference": "NE/R012636/1", + "notes": "" + }, + { + "parent-id": null, + "id": 82, + "title": "Project LOMVIA: Linking Oceanography and Multi-specific, spatially-Variable Interactions of seabirds and their prey in the Arctic", + "grant-reference": "NE/R012660/1", + "notes": "" + }, + { + "parent-id": null, + "id": 83, + "title": "The Changing Arctic Ocean Seafloor (ChAOS) - how changing sea ice conditions impact biological communities, biogeochemical processes and ecosystems ", + "grant-reference": "NE/P006493/1", + "notes": "" + }, + { + "parent-id": 83, + "id": 84, + "title": "The Changing Arctic Ocean Seafloor (ChAOS) - how changing sea ice conditions impact biological communities, biogeochemical processes and ecosystems ", + "grant-reference": "NE/P006108/1", + "notes": "" + }, + { + "parent-id": 83, + "id": 85, + "title": "The Changing Arctic Ocean Seafloor (ChAOS) - how changing sea ice conditions impact biological communities, biogeochemical processes and ecosystems ", + "grant-reference": "NE/P006434/1", + "notes": "" + }, + { + "parent-id": 83, + "id": 86, + "title": "The Changing Arctic Ocean Seafloor (ChAOS) - how changing sea ice conditions impact biological communities, biogeochemical processes and ecosystems ", + "grant-reference": "NE/P005942/1", + "notes": "" + }, + { + "parent-id": 83, + "id": 87, + "title": "The Changing Arctic Ocean Seafloor (ChAOS) - how changing sea ice conditions impact biological communities, biogeochemical processes and ecosystems ", + "grant-reference": " NE/P00637X/1", + "notes": "" + }, + { + "parent-id": 83, + "id": 88, + "title": "The Changing Arctic Ocean Seafloor (ChAOS) - how changing sea ice conditions impact biological communities, biogeochemical processes and ecosystems ", + "grant-reference": "NE/P006426/1", + "notes": "" + }, + { + "parent-id": null, + "id": 89, + "title": "Understanding the links between pelagic microbial ecosystems and organic matter cycling in the changing Arctic (Micro-ARC)", + "grant-reference": "NE/R012644/1", + "notes": "" + }, + { + "parent-id": 89, + "id": 90, + "title": "Understanding the links between pelagic microbial ecosystems and organic matter cycling in the changing Arctic", + "grant-reference": "NE/R012822/1", + "notes": "" + }, + { + "parent-id": null, + "id": 91, + "title": "MOSAiC Boundary Layer", + "grant-reference": "NE/S002472/1", + "notes": "" + }, + { + "parent-id": null, + "id": 92, + "title": "MOSAiC: Floe-scale observation and quantification of Arctic sea ice breakup and floe size during the autumn-to-summer transition (MOSAiCFSD) ", + "grant-reference": " NE/S002545/1", + "notes": "" + }, + { + "parent-id": null, + "id": 93, + "title": "Quantifying the contribution of sympagic versus pelagic diatoms to Arctic food webs and biogeochemical fluxes (SYM-PEL) ", + "grant-reference": "NE/S002502/1", + "notes": "" + }, + { + "parent-id": 93, + "id": 94, + "title": "Quantifying the contribution of sympagic versus pelagic diatoms to Arctic food webs and biogeochemical fluxes (SYM-PEL) ", + "grant-reference": "NE/S002480/1", + "notes": "" + }, + { + "parent-id": null, + "id": 95, + "title": "SIMbRICS: Sea Ice Microbiology and the Role In Cycling of Sulfur (DMS, DMSP, DMSO, MT)", + "grant-reference": "NE/S002596/1", + "notes": "" + }, + { + "parent-id": null, + "id": 96, + "title": "Sea Salt Aerosol above Arctic Sea Ice - sources, processes and climate impacts (SSAASI-CLIM)", + "grant-reference": "NE/S00257X/1", + "notes": "" + }, + { + "parent-id": null, + "id": 97, + "title": "Seasonal evolution of Ku- and Ka-band backscattering horizon over snow on first-year and multiyear sea ice ", + "grant-reference": " NE/S002510/1", + "notes": "" + }, + { + "parent-id": 97, + "id": 98, + "title": "Seasonal evolution of Ku- and Ka-band backscattering horizon over snow on first-year and multiyear sea ice ", + "grant-reference": " NE/S002499/1", + "notes": "" + }, + { + "parent-id": null, + "id": 99, + "title": "Support personnel UK station Ny-Ålesund", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 100, + "title": "Palaeoecology of the late Permian mass extinction event (SvaLPE)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 101, + "title": "Arctic Live 2017", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 102, + "title": "Arctic Live 2016", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 103, + "title": "AM fungi on Svalbard (AMFOS)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 104, + "title": "Fertilisation and carbon sequestration on high Arctic tundra heath", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 105, + "title": "Mesospheric ozone radiometer (MOSAIC)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 106, + "title": "Functional Diversity of High Arctic Microbiomes (FunArctic)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 107, + "title": "AM fungi on Svalbard (AMFOS)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 108, + "title": "Biogeochemical drivers of nutrient generation in subglacial systems: a novel stable isotope approach. (ICE-OTOPE)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 109, + "title": "Early colonisation of high Arctic substrates exposed by glacier retreat (CHASE)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 110, + "title": "Safe and effective fieldwork in the polar regions (NERC ATSC Svalbard)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 111, + "title": "SeaDrone Engineering Tests (SET)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 112, + "title": "Bedmap Himalayas Field Test (BMH-FT)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 113, + "title": "Changes to winter conditions effect carbon fluxes in the arctic tundra", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 114, + "title": "Bryophyte-associated fungi on Svalbard (BAFoS)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 115, + "title": "The origins of tropical vegetation", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 116, + "title": "Effects of freeze-thaw and dry-wet events on microbial activity in soils", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 117, + "title": "Trace gas fluxes in the cyrosphere", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 118, + "title": "Liverwort-fungal associations: novel symbioses in polar regions? (Liverwort-fungal associations in polar regions)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 119, + "title": "Meteorite Recovery", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 120, + "title": "Responses of microbes in upper soil horizons to environmental manipulations (REMUS)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 121, + "title": "Neoglacial moraine dynamics in a warming climate at Austre Lovenbreen, Svalbard", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 122, + "title": "The morphological dynamics of 'cut-and-closure' channels in Arctic glaciers", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 123, + "title": "Arctic Live 2015", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 124, + "title": "The lost meteorites of Antarctica (The lost meteorites of Antarctica)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 125, + "title": "Arctic Live 2018", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 126, + "title": "Ice-penetrating radar studies on Midtre Lovenbreen", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 127, + "title": "Monitoring crevasse field and calving evolution at a tidewater glacier margin with unmanned airborne systems (UAS) for improving glacier and ice sheet models", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 128, + "title": "Photosynthetic activity of ice surface communities on Longyearbreen", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 129, + "title": "Geochemical Investigation of Warm Springs (GIS)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 130, + "title": "More than methane: quantifying melt-driven biogas production and nutrient export from Eurasian Arctic lowland permafrost (LowPerm)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 131, + "title": "The enzymic 'latch' and effects of phenolic compounds on soil biogeochemical cycles in Arctic permafrost peatlands (ELAPSE: Enzymic Latch in Arctic Peat Sensitivity Experiment)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 132, + "title": "Natural Analogues of an Arctic in Rapid Transition (AnalogueART)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 133, + "title": "Paleomagnetic and rock-magnetic investigations of the Western Spitsbergen area (Hornsund, Bellsund) (HornBell)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 134, + "title": "Impact of Snow Coverage and Snow Melt on Development of Soil and Ice Communities (SNOW.WAKE)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 135, + "title": "Thermal imaging of calving glaciers and associated plumes", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 136, + "title": "Antarctic-Arctic Radiation-belt (Dynamic) Deposition - VLF Atmospheric Research Konsortia (AARDDVARK)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 137, + "title": "Methane emissions from the Arctic OCean to the Atmosphere: Present and Future Climate Effects (MOCA)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 138, + "title": "Integration of palaeomagnetic, isotopic and structural data to understand Svalbard Caledonian Terranes assemblage (PALMAG)", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 142, + "title": "Ice, Climate, and Economics - Arctic Research on Change", + "grant-reference": "", + "notes": "" + }, + { + "parent-id": null, + "id": 144, + "title": "A coupled climate-vegetation-mammal-human model for simulating Late Quaternary megafaunal extinctions", + "grant-reference": "NE/P002536/1", + "notes": "" + }, + { + "parent-id": null, + "id": 145, + "title": "A novel approach to constraining ice sheet models with glacial geomorphology", + "grant-reference": "NE/R014574/1", + "notes": "" + }, + { + "parent-id": null, + "id": 146, + "title": "An integrated data-model study of interactions between tropical monsoons and extra-tropical climate variability and extremes (INTEGRATE)", + "grant-reference": "NE/P006809/1", + "notes": "" + }, + { + "parent-id": null, + "id": 147, + "title": "Arctic Emissivity of Snow for Operational Prediction (AESOP) of Weather", + "grant-reference": "NE/S009280/1", + "notes": "" + }, + { + "parent-id": null, + "id": 148, + "title": "Atmosphere to ocean momentum transfer by sea ice", + "grant-reference": "NE/M015025/1", + "notes": "" + }, + { + "parent-id": 148, + "id": 149, + "title": "Atmosphere to ocean momentum transfer by sea ice", + "grant-reference": "NE/M015238/1", + "notes": "" + }, + { + "parent-id": null, + "id": 150, + "title": "Atmospheric Forcing of the Iceland Sea", + "grant-reference": "NE/N009754/1", + "notes": "" + }, + { + "parent-id": 150, + "id": 151, + "title": "Atmospheric Forcing of the Iceland Sea (AFIS)", + "grant-reference": "NE/N009924/1", + "notes": "" + }, + { + "parent-id": null, + "id": 152, + "title": "Automation of Marine Growth Analysis for Decommissioning Offshore Installations", + "grant-reference": "NE/N019865/1", + "notes": "" + }, + { + "parent-id": null, + "id": 153, + "title": "Better understanding of Interregional Teleconnections for prediction in the Monsoon and Poles", + "grant-reference": "NE/P006795/1", + "notes": "" + }, + { + "parent-id": null, + "id": 154, + "title": "BLACK and BLOOM: variations in the albedo of the Greenland Ice Sheet as a result of interactions between microbes and particulates.", + "grant-reference": "NE/M021025/1", + "notes": "" + }, + { + "parent-id": 154, + "id": 155, + "title": "BLACK and BLOOM: variations in the albedo of the Greenland Ice Sheet as a result of interactions between microbes and particulates.", + "grant-reference": "NE/M020991/1", + "notes": "" + }, + { + "parent-id": 154, + "id": 156, + "title": "BLACK and BLOOM: variations in the albedo of the Greenland Ice Sheet as a result of interactions between microbes and particulates.", + "grant-reference": "NE/M020770/1", + "notes": "" + }, + { + "parent-id": 154, + "id": 157, + "title": "BLACK and BLOOM: variations in the albedo of the Greenland Ice Sheet as a result of interactions between microbes and particulates.", + "grant-reference": "NE/M021084/1", + "notes": "" + }, + { + "parent-id": null, + "id": 158, + "title": "Calving Laws for Ice Sheet Models CALISMO", + "grant-reference": "NE/P011365/1", + "notes": "" + }, + { + "parent-id": null, + "id": 159, + "title": "Can metabolic traits limit species invasions under climate change?", + "grant-reference": "NE/M004740/1", + "notes": "" + }, + { + "parent-id": 159, + "id": 160, + "title": "Can metabolic traits limit species invasions under climate change?", + "grant-reference": "NE/M003205/1", + "notes": "" + }, + { + "parent-id": null, + "id": 161, + "title": "Can the formation of new soil organic matter offset decomposition losses from thawed permafrost soils?", + "grant-reference": "NE/S010122/1", + "notes": "" + }, + { + "parent-id": null, + "id": 162, + "title": "Characterising and Interpreting FLuxes Over Sea-ice (CANDIFLOS)", + "grant-reference": "NE/S000690/1", + "notes": "" + }, + { + "parent-id": 162, + "id": 163, + "title": "Characterising and Interpreting FLuxes Over Sea-ice (CANDIFLOS)", + "grant-reference": "NE/S000453/1", + "notes": "" + }, + { + "parent-id": null, + "id": 164, + "title": "Characterising the Ice Shelf/Ocean Boundary Layer", + "grant-reference": "NE/N009746/1", + "notes": "" + }, + { + "parent-id": 164, + "id": 165, + "title": "Characterising the Ice Shelf/Ocean Boundary Layer", + "grant-reference": "NE/N010027/1", + "notes": "" + }, + { + "parent-id": null, + "id": 166, + "title": "Characterization of major overburden leakage pathways above sub-seafloor CO2 storage reservoirs in the North Sea (CHIMNEY)", + "grant-reference": "NE/N016130/1", + "notes": "" + }, + { + "parent-id": 166, + "id": 167, + "title": "Characterization of major overburden leakage pathways above sub-seafloor CO2 storage reservoirs in the North Sea (CHIMNEY)", + "grant-reference": "NE/N015762/1", + "notes": "" + }, + { + "parent-id": 166, + "id": 168, + "title": "Characterization of major overburden leakage pathways above sub-seafloor CO2 storage reservoirs in the North Sea (CHIMNEY)", + "grant-reference": "NE/N016041/1", + "notes": "" + }, + { + "parent-id": null, + "id": 169, + "title": "Climate as a driver of shrub expansion and tundra greening", + "grant-reference": "NE/M016323/1", + "notes": "" + }, + { + "parent-id": null, + "id": 170, + "title": "Climate feedbacks from wetlands and permafrost thaw in a warming world (CLIFFTOP)", + "grant-reference": "NE/P015050/1", + "notes": "" + }, + { + "parent-id": null, + "id": 171, + "title": "Climate impact on the carbon emission and export from Siberian inland waters (SIWA)", + "grant-reference": "NE/M019896/1", + "notes": "" + }, + { + "parent-id": null, + "id": 172, + "title": "Climate of the LAst Millennium (CLAM): An Integrated Data-Model Approach to Reconstruct and Interpret Annual Variability in North Atlantic Circulation", + "grant-reference": "NE/N001176/1", + "notes": "" + }, + { + "parent-id": 172, + "id": 173, + "title": "Climate of the LAst Millennium (CLAM): An Integrated Data-Model Approach to Reconstruct and Interpret Annual Variability in North Atlantic Circulation", + "grant-reference": "NE/N002733/1", + "notes": "" + }, + { + "parent-id": 172, + "id": 174, + "title": "Climate of the LAst Millennium (CLAM): An Integrated Data-Model Approach to Reconstruct and Interpret Annual Variability in North Atlantic Circulation", + "grant-reference": "NE/N001435/1", + "notes": "" + }, + { + "parent-id": 172, + "id": 175, + "title": "Climate of the LAst Millennium (CLAM): An Integrated Data-Model Approach to Reconstruct and Interpret Annual Variability in North Atlantic Circulation", + "grant-reference": "NE/N002733/2", + "notes": "" + }, + { + "parent-id": null, + "id": 176, + "title": "Constraining Arctic Carbon-Cycle Feedbacks", + "grant-reference": "NE/R015791/1", + "notes": "" + }, + { + "parent-id": null, + "id": 177, + "title": "COUP: Constraining uncertainties in the permafrost-climate feedback", + "grant-reference": "NE/M01990X/1", + "notes": "" + }, + { + "parent-id": null, + "id": 178, + "title": "Development of an international research group in hyperspectral thermal remote sensing of volcanic processes and terrains", + "grant-reference": "NE/R004935/1", + "notes": "" + }, + { + "parent-id": null, + "id": 179, + "title": "Ecological effects of glacial dust deposition on remote Arctic lakes", + "grant-reference": "NE/P011578/1", + "notes": "" + }, + { + "parent-id": 179, + "id": 180, + "title": "Ecological effects of glacial dust deposition on remote Arctic lakes", + "grant-reference": "NE/P012019/1", + "notes": "" + }, + { + "parent-id": null, + "id": 181, + "title": "Environmental and demographic drivers of migratory strategies in birds", + "grant-reference": "NE/M012549/1", + "notes": "" + }, + { + "parent-id": null, + "id": 182, + "title": "Exploring the role of sea ice physics in Arctic climate variability and predictability", + "grant-reference": "NE/P001645/1", + "notes": "" + }, + { + "parent-id": null, + "id": 183, + "title": "Fresh WAys of Targeting and Employing Robotic Systems (FreshWATERS)", + "grant-reference": "NE/P003176/1", + "notes": "" + }, + { + "parent-id": null, + "id": 184, + "title": "Greenland in a warmer climate: What controls the advance & retreat of the NE Greenland Ice Stream", + "grant-reference": "NE/N011228/1", + "notes": "" + }, + { + "parent-id": null, + "id": 185, + "title": "High Impact Weather Events in Eurasia: Selected, Simulated and Storified", + "grant-reference": "NE/P006760/1", + "notes": "" + }, + { + "parent-id": null, + "id": 186, + "title": "How did primordial and recycled geochemical signatures come to coexist in the Earth's deep mantle?", + "grant-reference": "NE/P002331/1", + "notes": "" + }, + { + "parent-id": null, + "id": 187, + "title": "How will glacial meltwater microbes come in from the cold in this "Peak Melt" century?", + "grant-reference": "NE/S001034/1", + "notes": "" + }, + { + "parent-id": null, + "id": 188, + "title": "ICAAP: Increasing Carbon Accumulation in Arctic Peatlands", + "grant-reference": "NE/S001166/1", + "notes": "" + }, + { + "parent-id": null, + "id": 189, + "title": "ICE-IMPACT: International Consortium for the Exploitation of Infrared Measurements of PolAr ClimaTe", + "grant-reference": "NE/N01376X/1", + "notes": "" + }, + { + "parent-id": 189, + "id": 190, + "title": "ICE-IMPACT: International Consortium for the Exploitation of Infrared Measurements of PolAr ClimaTe", + "grant-reference": "NE/N013786/1", + "notes": "" + }, + { + "parent-id": null, + "id": 191, + "title": "Impacts of global warming in sentinel systems: from genes to ecosystems", + "grant-reference": "NE/M020843/1", + "notes": "" + }, + { + "parent-id": 191, + "id": 192, + "title": "Impacts of global warming in sentinel systems: from genes to ecosystems", + "grant-reference": "NE/M02086X/1", + "notes": "" + }, + { + "parent-id": 191, + "id": 193, + "title": "Impacts of global warming in sentinel systems: from genes to ecosystems", + "grant-reference": "NE/M020886/1", + "notes": "" + }, + { + "parent-id": null, + "id": 194, + "title": "Impacts of habitat fragmentation in a warming world", + "grant-reference": "NE/L011840/2", + "notes": "" + }, + { + "parent-id": null, + "id": 195, + "title": "Improved understanding of accidental releases from oil and gas industries offshore.", + "grant-reference": "NE/M007146/1", + "notes": "" + }, + { + "parent-id": null, + "id": 196, + "title": "Limits to Evolutionary Adaptation of Phytoplankton in the Arctic Ocean", + "grant-reference": "NE/R000883/1", + "notes": "" + }, + { + "parent-id": null, + "id": 197, + "title": "Market study for device to improve non-destructive testing of material samples.", + "grant-reference": "NE/N009355/1", + "notes": "" + }, + { + "parent-id": null, + "id": 198, + "title": "Meltwater Ice-sheet Interactions and the changing climate of Greenland (MII-Greenland)", + "grant-reference": "NE/S011390/1", + "notes": "" + }, + { + "parent-id": null, + "id": 199, + "title": "Meteoric Influences on Stratospheric Aerosol and Clouds (MeteorStrat)", + "grant-reference": "NE/R011222/1", + "notes": "" + }, + { + "parent-id": null, + "id": 200, + "title": "Methane Production in the Arctic: Under-recognized Cold Season and Upland Tundra - Arctic Methane Sources-UAMS", + "grant-reference": "NE/P003028/1", + "notes": "" + }, + { + "parent-id": 200, + "id": 201, + "title": "Methane Production in the Arctic: Under-recognized Cold Season and Upland Tundra - Arctic Methane Sources-UAMS", + "grant-reference": "NE/P002552/1", + "notes": "" + }, + { + "parent-id": null, + "id": 202, + "title": "MOCCHA Analysis of Dynamic, Cloud, and Aerosol Processes", + "grant-reference": "NE/R009686/1", + "notes": "" + }, + { + "parent-id": null, + "id": 203, + "title": "More than methane: quantifying melt-driven biogas production and nutrient export from Eurasian Arctic lowland permafrost (LowPerm)", + "grant-reference": "NE/M019829/1", + "notes": "" + }, + { + "parent-id": null, + "id": 204, + "title": "NCEO NC ODA Full", + "grant-reference": "NE/R000115/1", + "notes": "" + }, + { + "parent-id": null, + "id": 205, + "title": "NERC KE ERIIP Fellowship - Environmental risks to infrastructure: Identifying and filling the gaps", + "grant-reference": "NE/P005780/1", + "notes": "" + }, + { + "parent-id": null, + "id": 206, + "title": "NERC LRI Commissioning: UK Arctic Research Station", + "grant-reference": "NE/R017042/1", + "notes": "" + }, + { + "parent-id": null, + "id": 207, + "title": "NI: Benthos of the Arctic as a Storage reservoir for sea-Ice Carbon", + "grant-reference": "NE/S007245/1", + "notes": "" + }, + { + "parent-id": null, + "id": 208, + "title": "NI: Developing Innovative Multi-proxy Analysis for Long-term environmental change in Siberia and the Russian Far East", + "grant-reference": "NE/S008276/1", + "notes": "" + }, + { + "parent-id": null, + "id": 209, + "title": "NSFGEO-NERC Advancing Predictability of Sea Ice: Phase 2 of the Sea Ice Prediction Network (SIPN2)", + "grant-reference": "NE/R017123/1", + "notes": "" + }, + { + "parent-id": null, + "id": 210, + "title": "NSFGEO-NERC: The Integrated Characterization of Energy, Clouds, Atmospheric state, and Precipitation at Summit,Aerosol-Cloud Experiment", + "grant-reference": "NE/S00906X/1", + "notes": "" + }, + { + "parent-id": null, + "id": 211, + "title": "NSFGEO-NERC: WOOD-BASED CARBON DISCHARGE TO THE ARCTIC OCEAN", + "grant-reference": "NE/R017530/1", + "notes": "" + }, + { + "parent-id": null, + "id": 212, + "title": "Obesogens in a naturally obese animal: An experimental approach to assess the impact of marine pollutants on fat tissue function in seals", + "grant-reference": "NE/M013723/1", + "notes": "" + }, + { + "parent-id": 212, + "id": 213, + "title": "Obesogens in a naturally obese animal: An experimental approach to assess the impact of marine pollutants on fat tissue function in seals", + "grant-reference": "NE/M01357X/1", + "notes": "" + }, + { + "parent-id": null, + "id": 214, + "title": "Ocean-ice Interaction in the Ross Sea during Past Warm Periods", + "grant-reference": "NE/R018219/1", + "notes": "" + }, + { + "parent-id": null, + "id": 215, + "title": "Physiology and stable isotope ecology of moss growth for modeling spatial and temporal climatic signals", + "grant-reference": "NE/M001946/1", + "notes": "" + }, + { + "parent-id": 215, + "id": 216, + "title": "Physiology and stable isotope ecology of moss growth for modelling spatial and temporal climatic signals", + "grant-reference": "NE/M00113X/1", + "notes": "" + }, + { + "parent-id": null, + "id": 217, + "title": "Plant nutrition as Earth System Science: understanding the links between plant nutrient gain and soil carbon storage.", + "grant-reference": "NE/N015460/1", + "notes": "" + }, + { + "parent-id": null, + "id": 218, + "title": "Polar Amplification Model Intercomparison Project", + "grant-reference": "NE/R005125/1", + "notes": "" + }, + { + "parent-id": null, + "id": 219, + "title": "Primary productivity driven by escalating nutrient fluxes?", + "grant-reference": "NE/R01275X/1", + "notes": "" + }, + { + "parent-id": 219, + "id": 220, + "title": "Primary productivity driven by escalating nutrient fluxes?", + "grant-reference": "NE/R012636/1", + "notes": "" + }, + { + "parent-id": 219, + "id": 221, + "title": "Primary productivity driven by escalating nutrient fluxes?", + "grant-reference": "NE/R012547/1", + "notes": "" + }, + { + "parent-id": null, + "id": 222, + "title": "Radium in Changing Environments: A Novel Tracer of Iron Fluxes at Ocean Margins", + "grant-reference": "NE/P017630/1", + "notes": "" + }, + { + "parent-id": null, + "id": 223, + "title": "RECONSTRUCTING LATITUDINAL TERRESTRIAL TEMPERATURE GRADIENTS AT THE CRETACEOUS-PALAEOGENE BOUNDARY: TESTING THE "EQUABLE EARTH" HYPOTHESIS", + "grant-reference": "NE/S002324/1", + "notes": "" + }, + { + "parent-id": null, + "id": 224, + "title": "Reducing the economic impact of volcanic activity to aviation (OPEN)", + "grant-reference": "NE/P006744/1", + "notes": "" + }, + { + "parent-id": null, + "id": 225, + "title": "Resilience of floodplain productivity to Environmental Change", + "grant-reference": "NE/M017710/1", + "notes": "" + }, + { + "parent-id": null, + "id": 226, + "title": "Resolving Enthalpy Budget to Understand Surging (REBUS)", + "grant-reference": "NE/R018243/1", + "notes": "" + }, + { + "parent-id": null, + "id": 227, + "title": "Retreat of Southern Hemisphere Sea Ice, 130 000 to 116 000 years BP", + "grant-reference": "NE/P013279/1", + "notes": "" + }, + { + "parent-id": null, + "id": 228, + "title": "ScotIce - How fast could ice caps collapse?", + "grant-reference": "NE/S01120X/1", + "notes": "" + }, + { + "parent-id": null, + "id": 229, + "title": "SEANA -Shipping Emissions in the Arctic and North Atlantic atmosphere", + "grant-reference": "NE/S00579X/1", + "notes": "" + }, + { + "parent-id": 229, + "id": 230, + "title": "SEANA -Shipping Emissions in the Arctic and North Atlantic atmosphere", + "grant-reference": "NE/S005587/1", + "notes": "" + }, + { + "parent-id": null, + "id": 231, + "title": "Subglacial Bedrock Sampler", + "grant-reference": "NE/P003761/1", + "notes": "" + }, + { + "parent-id": null, + "id": 232, + "title": "Tellus How - An exemplar approach for end-user innovation and follow up of major NERC environmental survey projects", + "grant-reference": "NE/M021777/1", + "notes": "" + }, + { + "parent-id": null, + "id": 233, + "title": "The colonisation of hydrothermal vents by complex life: a natural experiment in macroevolution", + "grant-reference": "NE/R000670/1", + "notes": "" + }, + { + "parent-id": null, + "id": 234, + "title": "The Distribution of Oxygen in Earth's mantle", + "grant-reference": "NE/N009886/1", + "notes": "" + }, + { + "parent-id": 234, + "id": 235, + "title": "The Distribution of Oxygen in Earth's Mantle", + "grant-reference": "NE/N009568/2", + "notes": "" + }, + { + "parent-id": 234, + "id": 236, + "title": "The Distribution of Oxygen in Earth's Mantle", + "grant-reference": "NE/N009568/1", + "notes": "" + }, + { + "parent-id": null, + "id": 237, + "title": "THE GEOLOGICAL RECORD OF THE EARTHQUAKE CYCLE IN THE LOWER CRUST", + "grant-reference": "NE/P001548/1", + "notes": "" + }, + { + "parent-id": null, + "id": 238, + "title": "The Global Methane Budget", + "grant-reference": "NE/N016211/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 239, + "title": "The Global Methane Budget", + "grant-reference": "NE/N015657/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 240, + "title": "The Global Methane Budget", + "grant-reference": "NE/N015630/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 241, + "title": "The Global Methane Budget", + "grant-reference": "NE/N015835/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 242, + "title": "The Global Methane Budget", + "grant-reference": "NE/N015932/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 243, + "title": "The Global Methane Budget", + "grant-reference": "NE/N016238/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 244, + "title": "The Global Methane Budget", + "grant-reference": "NE/N015584/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 245, + "title": "The Global Methane Budget", + "grant-reference": "NE/N015681/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 246, + "title": "The Global Methane Budget", + "grant-reference": "NE/N015916/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 247, + "title": "The Global Methane Budget", + "grant-reference": "NE/N015606/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 248, + "title": "The Global Methane Budget", + "grant-reference": "NE/N016548/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 249, + "title": "The Global Methane Budget", + "grant-reference": "NE/N016092/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 250, + "title": "The Global Methane Budget", + "grant-reference": "NE/N015746/1", + "notes": "" + }, + { + "parent-id": 238, + "id": 251, + "title": "The Global Methane Budget", + "grant-reference": "NE/N016122/1", + "notes": "" + }, + { + "parent-id": null, + "id": 252, + "title": "The North Atlantic Climate System Integrated Study", + "grant-reference": "NE/N018044/1", + "notes": "" + }, + { + "parent-id": 252, + "id": 253, + "title": "The North Atlantic Climate System Integrated Study", + "grant-reference": "NE/N018052/1", + "notes": "" + }, + { + "parent-id": 252, + "id": 254, + "title": "The North Atlantic Climate System Integrated Study", + "grant-reference": "NE/N018028/1", + "notes": "" + }, + { + "parent-id": 252, + "id": 255, + "title": "The North Atlantic Climate System Integrated Study", + "grant-reference": "NE/N018001/1", + "notes": "" + }, + { + "parent-id": null, + "id": 256, + "title": "The potential of seasonal-to-decadal-scale inter-regional linkages to advance climate predictions (InterDec)", + "grant-reference": "NE/P006787/1", + "notes": "" + }, + { + "parent-id": null, + "id": 257, + "title": "The predictability and limits of evolution in response to increased temperature: insights from a natural 'experiment'", + "grant-reference": "NE/N016734/1", + "notes": "" + }, + { + "parent-id": null, + "id": 258, + "title": "The response of the Agulhas Leakage system to Pliocene-Pleistocene climate evolution", + "grant-reference": "NE/P009573/1", + "notes": "" + }, + { + "parent-id": null, + "id": 259, + "title": "The role of Arctic sea ice in climatic and ecological processes", + "grant-reference": "NE/L011859/1", + "notes": "" + }, + { + "parent-id": null, + "id": 260, + "title": "Thresholds for the future of the Greenland ice-sheet", + "grant-reference": "NE/P014976/1", + "notes": "" + }, + { + "parent-id": null, + "id": 261, + "title": "Towards a marginal Arctic sea ice cover", + "grant-reference": "NE/R000654/1", + "notes": "" + }, + { + "parent-id": 261, + "id": 262, + "title": "Towards a marginal Arctic sea ice cover", + "grant-reference": "NE/R000085/1", + "notes": "" + }, + { + "parent-id": 261, + "id": 263, + "title": "Towards a marginal Arctic sea ice cover", + "grant-reference": "NE/R000263/1", + "notes": "" + }, + { + "parent-id": null, + "id": 264, + "title": "Towards improved forecasting of volcanic explosivity: Investigating the role of magma mixing", + "grant-reference": "NE/N014286/1", + "notes": "" + }, + { + "parent-id": null, + "id": 265, + "title": "Tracking Marine sources of a Cholera outbreak using high throughput molecular methods on archival samples", + "grant-reference": "NE/S013431/1", + "notes": "" + }, + { + "parent-id": null, + "id": 266, + "title": "Understanding and Attributing Composition-Climate Feedbacks in the Earth System", + "grant-reference": "NE/M018199/1", + "notes": "" + }, + { + "parent-id": null, + "id": 267, + "title": "Variability of neutral temperature in the high-latitude upper atmosphere", + "grant-reference": "NE/N004051/1", + "notes": "" + }, + { + "parent-id": null, + "id": 268, + "title": "Volcanic balloon-borne laboratory", + "grant-reference": "NE/P003362/1", + "notes": "" + }, + { + "parent-id": null, + "id": 269, + "title": "Volcanic plume understanding and forecasting: Integrating remote-sensing, in-situ observations and models (V-PLUS)", + "grant-reference": "NE/S00436X/1", + "notes": "" + }, + { + "parent-id": 269, + "id": 270, + "title": "Volcanic plume understanding and forecasting: Integrating remote-sensing, in-situ observations and models (V-PLUS)", + "grant-reference": "NE/S004106/1", + "notes": "" + }, + { + "parent-id": 269, + "id": 271, + "title": "Volcanic plume understanding and forecasting: Integrating remote-sensing, in-situ observations and models (V-PLUS)", + "grant-reference": "NE/S004025/1", + "notes": "" + }, + { + "parent-id": null, + "id": 272, + "title": "Will more productive Arctic ecosystems sequester less soil carbon? A key role for priming in the rhizosphere ('PRIME-TIME')", + "grant-reference": "NE/P002722/1", + "notes": "" + }, + { + "parent-id": null, + "id": 273, + "title": "Will more productive Arctic ecosystems sequester less soil carbon? A key role for priming in the rhizosphere ('PRIME-TIME')", + "grant-reference": "NE/P002722/2", + "notes": "" + }, + { + "parent-id": null, + "id": 274, + "title": "Narrative Objects: The Sakha Summer Festival and Cultural Revitalization", + "grant-reference": "AH/M000265/1", + "notes": "" + }, + { + "parent-id": null, + "id": 275, + "title": "Science Based Regulation of Arctic Energy Installations (SciBAr Installations)", + "grant-reference": "AH/R003203/1", + "notes": "" + }, + { + "parent-id": null, + "id": 276, + "title": "Soviet climate science and its intellectual legacies", + "grant-reference": "AH/P004431/1", + "notes": "" + }, + { + "parent-id": null, + "id": 278, + "title": "Cryoegg: a novel wireless instrument for exploring deep ice", + "grant-reference": "EP/R03530X/1", + "notes": "" + }, + { + "parent-id": null, + "id": 279, + "title": "Svalbard Futures: Value and Adaptations in the Anthropocene", + "grant-reference": "ES/S01084X/1", + "notes": "" + }, + { + "parent-id": null, + "id": 280, + "title": "Robots Under Ice: Gathering Ice Hazard Data from Below", + "grant-reference": "104060", + "notes": "check grant reference" + }, + { + "parent-id": null, + "id": 281, + "title": "The Global Methane Budget", + "grant-reference": "NE/N016092/2" + }, + { + "parent-id": null, + "id": 282, + "title": "ICAAP: Increasing Carbon Accumulation in Arctic Peatlands", + "grant-reference": "NE/S001166/1" + }, + { + "parent-id": null, + "id": 283, + "title": "ScotIce - How fast could ice caps collapse?", + "grant-reference": "NE/S01120X/1" + }, + { + "parent-id": null, + "id": 284, + "title": "Tundra shrub growth in response to micro-site conditions across multiple spatial scales", + "grant-reference": "2284254" + }, + { + "parent-id": null, + "id": 285, + "title": "Consequences of the response of Arctic biodiversity to climate change for benthic ecosystem functioning", + "grant-reference": "2293664" + }, + { + "parent-id": null, + "id": 286, + "title": "An experimental and macroecological investigation of precipitation effects on Arctic plant root traits", + "grant-reference": "2277271" + }, + { + "parent-id": null, + "id": 287, + "title": "Arctic carbon under threat from climate extremes: Impacts of extreme climatic events on soil carbon and microbial communities", + "grant-reference": "2277950" + }, + { + "parent-id": null, + "id": 288, + "title": "How do Arctic seabirds coordinate parental care in changing climate?", + "grant-reference": "2275002" + }, + { + "parent-id": null, + "id": 289, + "title": "Internal Solitary Waves in Ice-Covered Waters", + "grant-reference": "2287120" + }, + { + "parent-id": null, + "id": 290, + "title": "Laser induced fluorescence instrument for the detection of trace levels of atmospheric sulfur dioxide (SO2)", + "grant-reference": "NE/T008555/1" + }, + { + "parent-id": null, + "id": 291, + "title": "Past, present and future of permafrost peatlands", + "grant-reference": "2287884" + }, + { + "parent-id": null, + "id": 292, + "title": "Proton-Transfer-Reaction Time-of-Flight Mass Spectrometer (PTR-ToF-MS) for aircraft and ground-based applications", + "grant-reference": "NE/T009020/1" + }, + { + "parent-id": null, + "id": 293, + "title": "Quantifying the role of oceanic storminess in determining the survival and recruitment of long-distance, oversea, migratory birds", + "grant-reference": "2280705" + }, + { + "parent-id": null, + "id": 294, + "title": "Rapid in-situ phytoplankton monitoring to support marine aquaculture and long term climate science", + "grant-reference": "NE/T008571/1" + }, + { + "parent-id": null, + "id": 295, + "title": "Sources, transfer and fate of microplastics in the Arctic marine environment", + "grant-reference": "2295414" + }, + { + "parent-id": null, + "id": 296, + "title": "Where's my dinner? Do Arctic benthic communities show preferential food uptake?", + "grant-reference": "2269779" + }, + { + "parent-id": null, + "id": 297, + "title": "ScotIce - How fast could ice caps collapse?", + "grant-reference": "NE/S01120X/1" + }, + { + "parent-id": null, + "id": 298, + "title": "Advective pathways of nutrients and key ecological substances in the Arctic (APEAR)", + "grant-reference": "NE/R012865/2" + }, + { + "parent-id": null, + "id": 299, + "title": "Arctic PRoductivity in the seasonal Ice ZonE (Arctic PrIZE)", + "grant-reference": "NE/P006078/2" + }, + { + "parent-id": null, + "id": 300, + "title": "Can we detect changes in Arctic Ecosystems?", + "grant-reference": "NE/P006000/2" + }, + { + "parent-id": null, + "id": 301, + "title": "Mechanistic understanding of the role of diatoms in the success of the Arctic Calanus complex and implications for a warmer Arctic", + "grant-reference": "NE/P006353/2" + }, + { + "parent-id": null, + "id": 302, + "title": "Primary productivity driven by escalating nutrient fluxes?", + "grant-reference": "NE/R012547/2" + }, + { + "parent-id": null, + "id": 303, + "title": "The UK Overturning in the Subpolar North Atlantic Program (UK-OSNAP)", + "grant-reference": "NE/K010875/2" + }, + { + "parent-id": null, + "id": 304, + "title": "Towards a marginal Arctic sea ice cover", + "grant-reference": "NE/R000085/2" + }, + { + "parent-id": null, + "id": 305, + "title": "PRE-MELT: Preconditioning the trigger for rapid Arctic ice melt", + "grant-reference": "NE/T000260/1" + }, + { + "parent-id": 305, + "id": 306, + "title": "PRE-MELT: Preconditioning the trigger for rapid Arctic ice melt", + "grant-reference": "NE/T001399/1" + }, + { + "parent-id": 305, + "id": 307, + "title": "PRE-MELT: Preconditioning the trigger for rapid Arctic ice melt", + "grant-reference": "NE/T000546/1" + }, + { + "parent-id": null, + "id": 308, + "title": "Arctic Summer-time Cyclones: Dynamics and Sea-ice Interaction", + "grant-reference": "NE/T006811/1" + }, + { + "parent-id": 308, + "id": 309, + "title": "Arctic Summer-time Cyclones: Dynamics and Sea-Ice Interaction", + "grant-reference": "NE/T00682X/1" + }, + { + "parent-id": 308, + "id": 310, + "title": "Arctic Summer-time Cyclones: Dynamics and Sea-ice Interaction", + "grant-reference": "NE/T006773/1" + }, + { + "parent-id": null, + "id": 311, + "title": "Arctic Community Resilience to Boreal Environmental change: Assessing Risks from fire and disease (ACRoBEAR)", + "grant-reference": "NE/T013672/1" + }, + { + "parent-id": null, + "id": 312, + "title": "SitS NSF-UKRI: Collaborative Research: Sensors UNder snow Seasonal Processes in the Evolution of ARctic Soils (SUN SPEARS)", + "grant-reference": "NE/T010967/1" + }, + { + "parent-id": 312, + "id": 313, + "title": "SitS NSF-UKRI: Collaborative Research: Sensors UNder snow Seasonal Processes in the Evolution of ARctic Soils (SUN SPEARS)", + "grant-reference": "NE/T010568/1" + }, + { + "parent-id": null, + "id": 314, + "title": "Quantifying the contribution of sympagic versus pelagic diatoms to Arctic food webs and biogeochemical fluxes (SYM-PEL)", + "grant-reference": "NE/S002502/1" + }, + { + "parent-id": null, + "id": 315, + "title": "The Future of Extreme European Winter Weather", + "grant-reference": "NE/S014713/1" + }, + { + "parent-id": null, + "id": 316, + "title": "SNAP-DRAGON: Subpolar North Atlantic Processes - Dynamics and pRedictability of vAriability in Gyre and OverturNing", + "grant-reference": "NE/T013400/1" + }, + { + "parent-id": 316, + "id": 317, + "title": "SNAP-DRAGON: Subpolar North Atlantic Processes - Dynamics and pRedictability of vAriability in Gyre and OverturNing", + "grant-reference": "NE/T013494/1" + }, + { + "parent-id": null, + "id": 318, + "title": "An investigation into open-system pingos in Canada as an analogue to drift-filled hollows in London", + "grant-reference": "NE/T013605/1" + }, + { + "parent-id": null, + "id": 319, + "title": "Biodegradable cellulose microbeads for high-volume applications", + "grant-reference": "41329" + }, + { + "parent-id": null, + "id": 320, + "title": "Wider impacts of Subpolar North Atlantic decadal variability on the ocean and atmosphere (WISHBONE)", + "grant-reference": "NE/T013478/1" + }, + { + "parent-id": 320, + "id": 321, + "title": "Wider Impacts of Subpolar nortH atlantic decadal variaBility on the OceaN and atmospherE' (WISHBONE)", + "grant-reference": "NE/T013540/1" + }, + { + "parent-id": 320, + "id": 323, + "title": "Wider Impacts of Subpolar nortH atlantic decadal variaBility on the OceaN and atmospherE (WISHBONE)", + "grant-reference": "NE/T013451/1" + }, + { + "parent-id": 320, + "id": 324, + "title": "Wider impacts of Subpolar North Atlantic decadal variability on the ocean and atmosphere (WISHBONE)", + "grant-reference": "NE/T013516/1" + }, + { + "parent-id": null, + "id": 325, + "title": "Explaining and Predicting the Migration and Phenology of Europe-African Migratory Birds", + "grant-reference": "NE/T001038/1" + }, + { + "parent-id": null, + "id": 326, + "title": "Controls upon dissolved organic matter export from glaciers", + "grant-reference": "NE/T014563/1" + }, + { + "parent-id": null, + "id": 327, + "title": "Explaining and Predicting the Migration and Phenology of Europe-African Migratory Birds", + "grant-reference": "NE/T001070/1" + }, + { + "parent-id": null, + "id": 328, + "title": "Resolving climate sensitivity associated with shallow mixed phase cloud in the oceanic mid- to high-latitudes (M-Phase)", + "grant-reference": "NE/T00648X/1" + }, + { + "parent-id": 328, + "id": 329, + "title": "Resolving climate sensitivity associated with shallow mixed phase cloud in the oceanic mid- to high-latitudes (M-Phase)", + "grant-reference": "NE/T006463/1" + }, + { + "parent-id": null, + "id": 330, + "grant-reference": "NE/V000748/1", + "title": "A multi-instrument exploration of the cusp ionosphere" + }, + { + "parent-id": null, + "id": 331, + "grant-reference": "2390205", + "title": "A shifting jet stream in a changing climate. Exploring the response of the polar jet stream in the Northern Hemisphere to various climate futures." + }, + { + "parent-id": null, + "id": 332, + "grant-reference": "NE/T013605/1", + "title": "An investigation into open-system pingos in Canada as an analogue to drift-filled hollows in London" + }, + { + "parent-id": null, + "id": 333, + "grant-reference": "2438842", + "title": "Arctic Greening Across Scales" + }, + { + "parent-id": null, + "id": 334, + "grant-reference": "NE/T006773/1", + "title": "Arctic Summer-time Cyclones: Dynamics and Sea-ice Interaction" + }, + { + "parent-id": 334, + "id": 335, + "grant-reference": "NE/T006811/1", + "title": "Arctic Summer-time Cyclones: Dynamics and Sea-ice Interaction" + }, + { + "parent-id": 334, + "id": 336, + "grant-reference": "NE/T00682X/1", + "title": "Arctic Summer-time Cyclones: Dynamics and Sea-Ice Interaction" + }, + { + "parent-id": null, + "id": 337, + "grant-reference": "2445781", + "title": "ArcticBuzz: bumblebee community responses to climate change in Lapland" + }, + { + "parent-id": null, + "id": 338, + "grant-reference": "NE/V012991/1", + "title": "Are There Perennial and Light-Independent Microbial Processes on Supraglacial Ecosystems?#" + }, + { + "parent-id": null, + "id": 339, + "grant-reference": "91129", + "title": "AutoNaut for Extreme Environments - extension" + }, + { + "parent-id": null, + "id": 340, + "grant-reference": "2415542", + "title": "Benefit of high resolution models for climate predictions." + }, + { + "parent-id": null, + "id": 341, + "grant-reference": "NE/W003686/1", + "title": "Carbon Emissions under Arctic Snow (CEAS)" + }, + { + "parent-id": null, + "id": 342, + "grant-reference": "2438969", + "title": "Changing Arctic: Estimation of freshwater changes over the full Arctic basin including land and ocean from satellite observations" + }, + { + "parent-id": null, + "id": 343, + "grant-reference": "NE/V01417X/1", + "title": "Climate change impacts on global wildfire ignitions by lightning and the safe management of landscape fuels" + }, + { + "parent-id": 345, + "id": 344, + "grant-reference": "NE/V004875/1", + "title": "Consequences of Arctic Warming for European Climate and Extreme Weather" + }, + { + "parent-id": null, + "id": 345, + "grant-reference": "NE/V005855/1", + "title": "Consequences of Arctic Warming for European Climate and Extreme Weather" + }, + { + "parent-id": null, + "id": 346, + "grant-reference": "NE/T014563/1", + "title": "Controls upon dissolved organic matter export from glaciers" + }, + { + "parent-id": null, + "id": 347, + "grant-reference": "2390206", + "title": "Data assimilation of satellite snow thickness products in the Arctic Ocean" + }, + { + "parent-id": null, + "id": 348, + "grant-reference": "EP/V030515/1", + "title": "Decentralised water technologies" + }, + { + "parent-id": null, + "id": 349, + "grant-reference": "2435953", + "title": "Devonian Tropical Plant Assemblages from Arctic Svalbard" + }, + { + "parent-id": null, + "id": 350, + "grant-reference": "NE/V000780/1", + "title": "Discovering reasons for global atmospheric methane growth using deuterium isotopes" + }, + { + "parent-id": 350, + "id": 351, + "grant-reference": "NE/V00090X/1", + "title": "Discovering reasons for global atmospheric methane growth using deuterium isotopes" + }, + { + "parent-id": null, + "id": 352, + "grant-reference": "2446079", + "title": "Diversity and ecological function of fungi and protists in Antarctic and Arctic freshwater ecosystems" + }, + { + "parent-id": null, + "id": 353, + "grant-reference": "NE/T001070/1", + "title": "Explaining and Predicting the Migration and Phenology of Europe-African Migratory Birds" + }, + { + "parent-id": null, + "id": 354, + "grant-reference": "2399893", + "title": "Fingerprinting bioactive trace elements in a changing Arctic Ocean" + }, + { + "parent-id": null, + "id": 355, + "grant-reference": "2435642", + "title": "Fundamental Mechanisms of Arctic Summer-time Cyclone Growth and Sea-ice Interaction" + }, + { + "parent-id": null, + "id": 356, + "grant-reference": "2420730", + "title": "Gender and histories of Arctic field science, 1900-1950" + }, + { + "parent-id": null, + "id": 357, + "grant-reference": "NE/V009982/1", + "title": "Geochemical habitability potential of magmatic vs impact induced heat hydrothermal environment on early Earth and Mars." + }, + { + "parent-id": null, + "id": 358, + "grant-reference": "BB/V012584/1", + "title": "HOMEs under the microscope: Citizen-led characterisation Of airborne micropLAstic sources (HOME Co-LAb)" + }, + { + "parent-id": null, + "id": 359, + "grant-reference": "2446405", + "title": "How do redox and temperature fluctuations influence mineral protection of organic matter during permafrost thaw?" + }, + { + "parent-id": null, + "id": 360, + "grant-reference": "2438686", + "title": "Ice-ocean-atmosphere interactions in the Arctic" + }, + { + "parent-id": null, + "id": 361, + "grant-reference": "2438667", + "title": "Image processing and machine learning applied to Earth Observation of the cryosphere" + }, + { + "parent-id": null, + "id": 362, + "grant-reference": "2443087", + "title": "Improved understanding of Arctic atmospheric composition and climate through exploitation of satellite observations" + }, + { + "parent-id": null, + "id": 363, + "grant-reference": "NE/V001620/1", + "title": "Intra-interglacial variability: are warmer periods climatically more unstable?" + }, + { + "parent-id": null, + "id": 364, + "grant-reference": "2436234", + "title": "Is macroalgal carbon sequestration the 'elephant in the Blue Carbon room' ?" + }, + { + "parent-id": null, + "id": 365, + "grant-reference": "NE/V010336/1", + "title": "Mapping above- and belowground vegetation traits in the Canadian Rockies and surrounding regions at multiple spatial and temporal scales" + }, + { + "parent-id": null, + "id": 366, + "grant-reference": "2449019", + "title": "Melt Ponds on Sea Ice" + }, + { + "parent-id": null, + "id": 367, + "grant-reference": "2434523", + "title": "Monitoring & modelling ice rich permafrost coastal responses to in-situ and dynamic drivers in a changing climate along the Beaufort Sea coast, Canada" + }, + { + "parent-id": null, + "id": 368, + "grant-reference": "2393952", + "title": "Muddying the waters: cation exchange processes as a major control on weathering fluxes." + }, + { + "parent-id": null, + "id": 369, + "grant-reference": "NE/V009001/1", + "title": "NI: CONFLUENCE - Disentangling the role of rivers as greenhouse gas conduits" + }, + { + "parent-id": 371, + "id": 370, + "grant-reference": "NE/T000570/1", + "title": "Nitrogen fixation in the Arctic Ocean" + }, + { + "parent-id": null, + "id": 371, + "grant-reference": "NE/T001240/1", + "title": "Nitrogen fixation in the Arctic Ocean" + }, + { + "parent-id": null, + "id": 372, + "grant-reference": "2442758", + "title": "Palaeo Constraints on the 1.5C World: What does the Pliocene tell us about the long-terms effects of atmospheric CO2 at ~400 ppmv" + }, + { + "parent-id": null, + "id": 373, + "grant-reference": "2435883", + "title": "Quantifying carbon accumulation and loss in Russian Arctic peatlands" + }, + { + "parent-id": null, + "id": 374, + "grant-reference": "2442788", + "title": "Remote sensing of recent changes in northern peatlands" + }, + { + "parent-id": 376, + "id": 375, + "grant-reference": "NE/T013400/1", + "title": "SNAP-DRAGON: Subpolar North Atlantic Processes - Dynamics and pRedictability of vAriability in Gyre and OverturNing" + }, + { + "parent-id": null, + "id": 376, + "grant-reference": "NE/T013494/1", + "title": "SNAP-DRAGON: Subpolar North Atlantic Processes - Dynamics and pRedictability of vAriability in Gyre and OverturNing" + }, + { + "parent-id": null, + "id": 377, + "grant-reference": "NE/V013769/1", + "title": "Tackling the Arctic Cloud Problem" + }, + { + "parent-id": null, + "id": 378, + "grant-reference": "2435044", + "title": "The case-study of Iceland and artic surfing is unique and contribute to health geographies understanding wellbeing in dark winter months." + }, + { + "parent-id": null, + "id": 379, + "grant-reference": "2440396", + "title": "Towards a better understanding of the lifecycle of Pesticides in the Atmosphere" + }, + { + "parent-id": null, + "id": 380, + "grant-reference": "NE/V021397/1", + "title": "Treeline advances in a changing climate: understanding how climate affects reproduction and early life stages in Black spruce" + }, + { + "parent-id": null, + "id": 381, + "grant-reference": "2449030", + "title": "Understanding Arctic greening across scales" + }, + { + "parent-id": null, + "id": 382, + "grant-reference": "2432302", + "title": "Understanding the impact of trace level sulphur dioxide on air pollution and climate" + }, + { + "parent-id": null, + "id": 383, + "grant-reference": "BB/V001647/1", + "title": "Understanding the resilience of wild birds to climate change: seasonal genomics of the annual migratory breeding cycle" + }, + { + "parent-id": 386, + "id": 384, + "grant-reference": "NE/T013451/1", + "title": "Wider Impacts of Subpolar nortH atlantic decadal variaBility on the OceaN and atmospherE (WISHBONE)" + }, + { + "parent-id": 386, + "id": 385, + "grant-reference": "NE/T013478/1", + "title": "Wider impacts of Subpolar North Atlantic decadal variability on the ocean and atmosphere (WISHBONE)" + }, + { + "parent-id": null, + "id": 386, + "grant-reference": "NE/T013516/1", + "title": "Wider impacts of Subpolar North Atlantic decadal variability on the ocean and atmosphere (WISHBONE)" + }, + { + "parent-id": 386, + "id": 387, + "grant-reference": "NE/T013540/1", + "title": "Wider Impacts of Subpolar nortH atlantic decadal variaBility on the OceaN and atmospherE' (WISHBONE)" + }, + { + "parent-id": null, + "id": 388, + "grant-reference": "NE/W002310/1", + "title": "Wireline tap on the construction of the North Atlantic Deep water - IODP Exp. 395 "Reykjanes Mantle Convection and Climate"" + } + ] +} From ac31fa0c2a18f547e36a04b6b64b7a354ce6cdab Mon Sep 17 00:00:00 2001 From: Luke McDonald Date: Fri, 29 Oct 2021 15:12:07 +0100 Subject: [PATCH 5/6] Adapting bulk import script to accept more refs --- arctic_office_projects_api/bulk_importer/import_grants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arctic_office_projects_api/bulk_importer/import_grants.py b/arctic_office_projects_api/bulk_importer/import_grants.py index 67edc98..732fde7 100644 --- a/arctic_office_projects_api/bulk_importer/import_grants.py +++ b/arctic_office_projects_api/bulk_importer/import_grants.py @@ -15,7 +15,7 @@ def json_valid(filename): def grant_reference_valid(grant_reference): patterns = { 'gtr': r'^[A-Z]{2}\/[A-Z0-9]{7}\/\d{1}$', - 'other': r'\d{7}' + 'other': r'\d{5,7}' } for key, pattern in patterns.items(): if re.match(pattern, grant_reference): @@ -32,6 +32,6 @@ def import_grants(file): project['grant-reference']], shell=False) -json_filename = '/usr/src/app/arctic_office_projects_api/bulk_importer/json/projects-2020-08-13.json' +json_filename = '/usr/src/app/arctic_office_projects_api/bulk_importer/json/projects-2021-10-18.json' if json_valid(json_filename): import_grants(json_filename) From 80e7759f1ebaf052a32099528177c1aae2b18f20 Mon Sep 17 00:00:00 2001 From: Luke McDonald Date: Fri, 29 Oct 2021 15:13:55 +0100 Subject: [PATCH 6/6] Fixing errors with flask cmds and requests Mirroring pip freeze from staging instance --- requirements.txt | 50 +++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 41 insertions(+), 9 deletions(-) diff --git a/requirements.txt b/requirements.txt index f8011c2..3b46e2f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,26 +1,58 @@ -authlib==0.11 -bandit==1.6.2 +alembic==1.1.0 +asn1crypto==0.24.0 +attrs==19.1.0 +Authlib==0.11 +bandit==1.6.0 +blinker==1.4 +certifi==2019.6.16 +cffi==1.12.3 +chardet==3.0.4 +Click==7.0 +cryptography==2.7 +entrypoints==0.3 Faker==1.0.7 flake8==3.7.7 Flask==1.0.3 flask-azure-oauth==0.3.0 -flask-migrate==2.5.2 +Flask-Migrate==2.5.2 flask-request-id-header==0.1.1 flask-reverse-proxy-fix==0.2.1 -flask-sqlalchemy==2.4.0 +Flask-SQLAlchemy==2.4.0 +gitdb2==2.0.5 +GitPython==3.0.2 +idna==2.8 iso3166==1.0 +itsdangerous==1.1.0 +Jinja2==2.10.1 jsonschema==3.0.1 +Mako==1.1.0 +MarkupSafe==1.1.1 +marshmallow==3.0.3 marshmallow-jsonapi==0.21.1 +mccabe==0.6.1 +pbr==5.4.3 psycopg2-binary==2.8.2 +pycodestyle==2.5.0 +pycparser==2.19 +pyflakes==2.1.1 +pyrsistent==0.15.4 +python-dateutil==2.8.0 python-dotenv==0.10.2 -requests==2.24.0 +python-editor==1.0.4 +PyYAML==5.1.2 +requests==2.22.0 rfc3987==1.3.8 -sentry-sdk[flask]==0.8.0 +sentry-sdk==0.8.0 simplejson==3.16.0 +six==1.12.0 +smmap2==2.0.5 +SQLAlchemy==1.3.8 SQLAlchemy-Utils==0.34.0 +stevedore==1.31.0 str2bool==1.1 -waitress==1.4.4 +text-unidecode==1.2 ulid-py==0.0.9 unittest-xml-reporting==2.5.1 -urllib3==1.25.10 -Werkzeug==0.16.1 +urllib3==1.25.3 +waitress==1.3.0 +Werkzeug==0.15.6